@charset "UTF-8";
/***
    The new CSS reset - version 1.8.4 (last updated 14.2.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
 */
*: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;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/* 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;
  appearance: revert;
}

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

/* reset default text opacity of input placeholder */
::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;
}

/* add original reset style */
html {
  /* iPhone safariで文字サイズが大きくなるバグを回避 */
  -webkit-text-size-adjust: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", Meiryo, メイリオ, Osaka, sans-serif;
  color: #333;
  font-size: clamp(12px, 3.2vw, 16px);
  overflow-x: hidden;
}
body.fixed {
  overflow: hidden;
}

a {
  text-decoration: none;
}

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

.relative {
  position: relative;
}

_::-webkit-full-page-media, _:future, :root * {
  mask-image: none !important;
}

input[name=tab-item] {
  display: none;
}

area {
  cursor: pointer;
}

.c-title {
  text-align: center;
  font-size: clamp(24px, 3.125vw, 32px);
  font-family: Garamond, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-weight: bold;
  line-height: 1.5;
}
.c-title.-underline span {
  display: inline-block;
  border-bottom: 1px solid #333;
  padding-bottom: 0.5em;
}
.c-title.-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.5;
  font-size: clamp(16px, 2.0833333333vw, 32px);
}
.c-title.-circle::before, .c-title.-circle::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.c-title.-circle::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.c-title.-circle::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
@media screen and (max-width: 768px) {
  .c-title.-circle {
    flex-direction: column;
  }
}
.c-title.-circle img {
  width: 3.16em;
  margin-right: 0.75em;
}
@media screen and (max-width: 768px) {
  .c-title.-circle img {
    width: 4.5em;
    margin-right: 0;
    margin-bottom: 0.75em;
  }
}
.c-title.-num img {
  height: 1.44em;
  width: auto;
  margin-right: 0.44em;
  vertical-align: text-bottom;
}
@media screen and (max-width: 768px) {
  .c-title.-num img {
    height: 1.35em;
  }
}

.c-inner {
  max-width: 1274px;
  padding: 0 37px;
  margin: 0 auto;
}

.c-column-2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1043px;
  margin: 0 auto;
}
.c-column-2 > * {
  width: 48.4%;
}
@media screen and (max-width: 768px) {
  .c-column-2 > * {
    width: 100%;
  }
}

.l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  padding-top: clamp(20px, 2.6041666667vw, 43px);
}
.l-header__inner {
  padding-left: clamp(15px, 1.953125vw, 38px);
}
.l-header__logo {
  display: inline-block;
}
.l-header__logo img {
  width: clamp(222px, 28.90625vw, 318px);
}

.l-footer__copyright {
  text-align: center;
  font-size: 16px;
  padding: 1.38em;
}

.l-gnav {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  padding-bottom: 28px;
  opacity: 0;
  visibility: hidden;
  transition: 0.15s ease-in-out;
}
.l-gnav.-show {
  opacity: 1;
  visibility: visible;
}
.l-gnav__logo {
  width: clamp(222px, 28.90625vw, 318px);
  margin-top: 17px;
  margin-left: 25px;
  margin-top: clamp(20px, 2.6041666667vw, 17px);
  margin-left: clamp(15px, 1.953125vw, 25px);
}
.l-gnav__inner {
  max-width: 1246px;
  padding: 0 37px;
  margin: 0 auto;
}
.l-gnav-list {
  font-weight: bold;
  margin-top: clamp(50px, 6.5104166667vw, 92px);
}
.l-gnav-list__item {
  font-family: Garamond, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  font-size: 24px;
  font-size: clamp(20px, 2.6041666667vw, 24px);
  margin-top: 2.3em;
  line-height: 1.4;
}
.l-gnav-list__item::before, .l-gnav-list__item::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.l-gnav-list__item::before {
  margin-top: calc((1 - 1.4) * 0.5em);
}
.l-gnav-list__item::after {
  margin-bottom: calc((1 - 1.4) * 0.5em);
}
.l-gnav-list__item > a {
  display: inline-block;
  border-bottom: 1px solid #333;
  padding-bottom: 0.58em;
}
.l-gnav-sublist__item {
  font-size: clamp(16px, 2.0833333333vw, 20px);
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
  margin-top: 0.6em;
}
.l-gnav__copyright {
  font-size: 16px;
  margin-top: 5.75em;
}

.l-hamburger {
  width: clamp(50px, 6.5104166667vw, 72px);
  height: clamp(50px, 6.5104166667vw, 72px);
  transition: 0.15s ease-in-out;
  position: fixed;
  top: clamp(9px, 1.171875vw, 35px);
  right: clamp(8px, 1.0416666667vw, 61px);
  z-index: 101;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid #333;
}
.l-hamburger:hover {
  opacity: 0.8;
}
.l-hamburger__top, .l-hamburger__middle, .l-hamburger__bottom {
  display: inline-block;
  width: clamp(24px, 3.125vw, 30px);
  height: 3px;
  background-color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.15s ease-in-out;
  transform: translate(-50%, -50%);
}
.l-hamburger__top {
  top: calc(50% - clamp(8px, 1.04vw, 10px));
}
.l-hamburger__middle {
  transform: translate(-50%, -50%);
}
.l-hamburger__bottom {
  top: calc(50% + clamp(8px, 1.04vw, 10px));
}
.l-hamburger:hover {
  cursor: pointer;
}
.l-hamburger.-active .l-hamburger__top {
  transform-origin: left top;
  top: 50%;
  transform: rotate(35deg) translate(-50%, -50%);
  width: clamp(32px, 4.1666666667vw, 38px);
}
.l-hamburger.-active .l-hamburger__middle {
  opacity: 0;
}
.l-hamburger.-active .l-hamburger__bottom {
  transform-origin: left top;
  top: 50%;
  transform: rotate(-35deg) translate(-50%, -50%);
  width: clamp(32px, 4.1666666667vw, 38px);
}

.p-top-slide {
  position: relative;
}
.p-top-slide__item {
  padding-top: 56.16%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .p-top-slide__item {
    padding-top: 727px;
  }
}
.p-top-slide__item.-slide01 {
  background-image: url(../images/slide_01.jpg);
}
.p-top-slide__item.-slide02 {
  background-image: url(../images/slide_02.jpg);
}
.p-top-slide__item.-slide03 {
  background-image: url(../images/slide_03.jpg);
}
.p-top-slide__item.-slide04 {
  background-image: url(../images/slide_04.jpg);
}
.p-top-slide__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 27.4%;
  max-width: 374px;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .p-top-slide__logo {
    width: 74%;
    max-width: 291px;
  }
}
.p-top-slide .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #FFFFFF;
  opacity: 0.8;
  margin: 0 9px !important;
}
.p-top-slide .swiper-pagination-bullet-active {
  background-color: #9D9D9D;
}
.p-top-message {
  padding-top: clamp(48px, 6.25vw, 80px);
  padding-bottom: clamp(60px, 7.8125vw, 190px);
}
.p-top-message__unit {
  margin-top: clamp(37px, 4.8177083333vw, 100px);
}
.p-top-message__unit.-reverse .p-top-message-catch {
  margin-left: 0;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-top-message__unit.-reverse .p-top-message-catch {
    margin-left: calc(50% - 50vw);
  }
}
.p-top-message__unit.-reverse .p-top-message-catch__image {
  order: 2;
}
.p-top-message__unit.-reverse .p-top-message-catch__text {
  order: 1;
}
.p-top-message__unit.-reverse .p-top-message-body__image {
  order: 2;
}
.p-top-message__unit.-reverse .p-top-message-body__text {
  order: 1;
}
.p-top-message-catch {
  display: flex;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-top-message-catch {
    flex-direction: column;
    margin-right: calc(50% - 50vw);
  }
}
.p-top-message-catch__image {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .p-top-message-catch__image {
    width: 100%;
    order: 2;
    margin-top: 25px;
  }
}
.p-top-message-catch__text {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-message-catch__text {
    width: 100%;
    order: 1;
  }
}
.p-top-message-catch__text img {
  width: 26%;
  max-width: 103px;
}
@media screen and (max-width: 768px) {
  .p-top-message-catch__text img {
    display: none;
  }
}
.p-top-message-catch__text p {
  display: none;
  font-size: 18px;
  line-height: 1.5;
  font-weight: bold;
  font-family: "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", sans-serif;
}
.p-top-message-catch__text p::before, .p-top-message-catch__text p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.p-top-message-catch__text p::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}
.p-top-message-catch__text p::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}
@media screen and (max-width: 768px) {
  .p-top-message-catch__text p {
    display: block;
  }
}
.p-top-message-body {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .p-top-message-body {
    flex-direction: column;
  }
}
.p-top-message-body__image {
  width: 25%;
}
@media screen and (max-width: 768px) {
  .p-top-message-body__image {
    width: 100%;
    order: 2;
    margin-top: 30px;
  }
}
.p-top-message-body__image figcaption {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .p-top-message-body__image figcaption {
    text-align: center;
  }
}
.p-top-message-body__image figcaption span {
  font-size: 1.25em;
}
.p-top-message-body__text {
  width: 68%;
}
@media screen and (max-width: 768px) {
  .p-top-message-body__text {
    width: 100%;
    order: 1;
  }
}
.p-top-message-body__text p {
  line-height: 2;
  font-size: 16px;
  text-indent: 1em;
}
.p-top-message-2col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .p-top-message-2col {
    flex-direction: column;
    margin-top: 60px;
  }
}
.p-top-message-2col__unit {
  width: 46.6%;
  margin-top: clamp(80px, 10.4166666667vw, 120px);
}
@media screen and (max-width: 768px) {
  .p-top-message-2col__unit {
    width: 100%;
  }
}
.p-top-message-2col__image figcaption {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .p-top-message-2col__image figcaption {
    text-align: center;
    margin-top: 2em;
  }
}
.p-top-message-2col__image figcaption span {
  font-size: 1.25em;
}
.p-top-message-2col__text {
  line-height: 2;
  font-size: 16px;
  text-indent: 1em;
  margin-top: 1em;
}
.p-top-plan {
  background-color: #f5f2e9;
  padding-top: clamp(36px, 4.6875vw, 60px);
  padding-bottom: clamp(60px, 7.8125vw, 130px);
}
.p-top-plan__figure {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-top-plan__figure {
    margin-top: 60px;
  }
}
.p-top-plan-future {
  margin-top: clamp(23px, 2.9947916667vw, 62px);
}
.p-top-plan-list {
  display: flex;
  flex-wrap: wrap;
  background-color: #e0eab7;
  border: 1px solid #333;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-top-plan-list {
    margin-top: 60px;
  }
}
.p-top-plan-list__item {
  width: 50%;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .p-top-plan-list__item {
    width: 100%;
    padding: 7.3%;
  }
}
.p-top-plan-list__item:nth-of-type(even) {
  border-left: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .p-top-plan-list__item:nth-of-type(even) {
    border-left: 0;
  }
}
.p-top-plan-list__item:nth-of-type(n + 3) {
  border-top: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .p-top-plan-list__item:nth-of-type(2) {
    border-top: 1px solid #333;
  }
}
.p-top-plan-list__item .c-title {
  text-align: left;
}
.p-top-plan-list__flex {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media screen and (max-width: 960px) {
  .p-top-plan-list__flex {
    flex-direction: column;
  }
}
.p-top-plan-list__text {
  width: 51.8%;
}
@media screen and (max-width: 960px) {
  .p-top-plan-list__text {
    width: 100%;
  }
}
.p-top-plan-list__text p {
  line-height: 1.5;
  font-size: 16px;
  text-indent: 1em;
}
.p-top-plan-list__image {
  width: 42.6%;
}
@media screen and (max-width: 960px) {
  .p-top-plan-list__image {
    width: 100%;
    margin-top: 22px;
  }
}
.p-top-plan-list__button {
  display: inline-block;
  background-color: #fff;
  border-radius: 500px;
  border: 1px solid #333;
  font-size: 14px;
  padding: 0.42em 1.5em;
  margin-top: 1em;
}
.p-top-plan-unit {
  margin-top: clamp(95px, 12.3697916667vw, 100px);
}
.p-top-plan-unit:nth-of-type(2) {
  margin-top: clamp(55px, 7.1614583333vw, 60px);
}
.p-top-plan-unit .c-title {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-plan-unit .c-title {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .p-top-plan-unit .c-column-2 {
    margin-top: -30px;
  }
}
.p-top-plan-unit__item {
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-top-plan-unit__item {
    margin-top: 70px;
  }
}
.p-top-plan-unit__item:hover > .p-top-plan-unit__text {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 500px) {
  .p-top-plan-unit__image {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
.p-top-plan-unit__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  visibility: visible;
  transition: 0.15s ease-in-out;
  padding: 0 5%;
}
@media screen and (max-width: 768px) {
  .p-top-plan-unit__text {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    opacity: 1;
    color: #333;
    visibility: visible;
    margin-top: 40px;
    padding: 0;
  }
}
.p-top-plan-unit__text h4 {
  font-size: clamp(18px, 2.34vw, 24px);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}
.p-top-plan-unit__text h4::before, .p-top-plan-unit__text h4::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.p-top-plan-unit__text h4::before {
  margin-top: calc((1 - 1.45) * 0.5em);
}
.p-top-plan-unit__text h4::after {
  margin-bottom: calc((1 - 1.45) * 0.5em);
}
@media screen and (max-width: 768px) {
  .p-top-plan-unit__text h4 {
    font-size: 20px;
  }
}
.p-top-plan-unit__text p {
  font-size: clamp(11px, 1.43vw, 14px);
  line-height: 1.43em;
  margin-top: 2.4em;
  text-indent: 1em;
  max-width: 350px;
}
@media screen and (max-width: 768px) {
  .p-top-plan-unit__text p {
    font-size: 14px;
    max-width: initial;
  }
}
.p-top-spot {
  padding-top: clamp(60px, 7.8125vw, 110px);
  padding-bottom: clamp(54px, 7.03125vw, 165px);
}
.p-top-spot__figure {
  margin-top: clamp(68px, 8.8541666667vw, 100px);
}
@media screen and (max-width: 768px) {
  .p-top-spot__figure {
    overflow-x: scroll;
  }
}
@media screen and (max-width: 500px) {
  .p-top-spot__figure {
    margin-left: calc(50% - 45vw);
    margin-right: calc(50% - 45vw);
  }
}
.p-top-spot__figure > div {
  min-width: 623px;
}
.p-top-spot__button {
  text-align: center;
  margin-top: clamp(50px, 6.5104166667vw, 120px);
}
.p-top-spot__button a {
  display: inline-block;
  background-color: #e0eab7;
  padding: 0.87em 2.8em;
  border-radius: 500px;
  border: 1px solid #333;
  font-size: clamp(16px, 2.0833333333vw, 20px);
}
@media screen and (max-width: 768px) {
  .p-top-spot__button a {
    padding: 0.65em 1.5em;
  }
}
@media screen and (max-width: 768px) {
  .p-top-spot .c-column-2 {
    margin-top: -10px;
  }
}
.p-top-spot__item {
  position: relative;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-top-spot__item {
    margin-top: 50px;
  }
}
.p-top-spot__item:hover > .p-top-spot__text {
  opacity: 1;
  visibility: visible;
}
.p-top-spot__text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 14%;
  opacity: 0;
  visibility: hidden;
  transition: 0.15s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-top-spot__text {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    opacity: 1;
    color: #333;
    visibility: visible;
    margin-top: 40px;
    padding: 0;
    margin-top: 1.2em;
  }
}
.p-top-spot__text h4 {
  font-size: clamp(15px, 1.953125vw, 24px);
  font-weight: 500;
  line-height: 1.45;
}
.p-top-spot__text h4::before, .p-top-spot__text h4::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.p-top-spot__text h4::before {
  margin-top: calc((1 - 1.45) * 0.5em);
}
.p-top-spot__text h4::after {
  margin-bottom: calc((1 - 1.45) * 0.5em);
}
.p-top-spot__text p {
  font-size: clamp(11px, 1.43vw, 14px);
  line-height: 1.43em;
  margin-top: 2em;
  text-indent: 1em;
}
@media screen and (max-width: 768px) {
  .p-top-spot__text p {
    font-size: 14px;
    margin-top: 1.43em;
  }
}

.u-none {
  display: none;
}
.u-block {
  display: block;
}
.u-inline-block {
  display: inline-block;
}
.u-flex {
  display: flex;
}
.u-inline {
  display: inline;
}

@media screen and (max-width: 500px) {
  .u-sp-none {
    display: none;
  }
  .u-sp-block {
    display: block;
  }
  .u-sp-inline-block {
    display: inline-block;
  }
  .u-sp-flex {
    display: flex;
  }
  .u-sp-inline {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .u-tb-none {
    display: none;
  }
  .u-tb-block {
    display: block;
  }
  .u-tb-inline-block {
    display: inline-block;
  }
  .u-tb-flex {
    display: flex;
  }
  .u-tb-inline {
    display: inline;
  }
}
@media screen and (max-width: 960px) {
  .u-pc-none {
    display: none;
  }
  .u-pc-block {
    display: block;
  }
  .u-pc-inline-block {
    display: inline-block;
  }
  .u-pc-flex {
    display: flex;
  }
  .u-pc-inline {
    display: inline;
  }
}
.u-mt-0 {
  margin-top: 0 !important;
}
.u-mt-1e {
  margin-top: 1em !important;
}
.u-mt-2e {
  margin-top: 2em !important;
}
.u-mt-3e {
  margin-top: 3em !important;
}