@charset "UTF-8";
/*---------------------------------------------
00. reset
01. common
02. layout
---------------------------------------------*/

:root {
  --color-yellow: #ffe500;
  --color-green: #00aa48;
  --color-blue: #005fc0;
}

/*---------------------------------------------
00. reset
---------------------------------------------*/
/*! destyle.css v1.0.13 | MIT License | https://github.com/nicolas-cusan/destyle.css */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

address,
blockquote,
dl,
figure,
form,
iframe,
ol,
p,
pre,
table,
ul {
  margin: 0;
}

ol,
ul {
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: 0;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
iframe,
object {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

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

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled],
button[disabled] {
  cursor: default;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset,
option {
  padding: 0;
}

fieldset {
  margin: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

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

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

[hidden],
template {
  display: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

picture {
  display: block;
}

em {
  font-style: normal;
}

button {
  font-family: inherit;
}

/*---------------------------------------------
01. common
---------------------------------------------*/

img {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

@media (min-width: 768px) {
  .display_pc {
    display: block !important;
  }
  .display_sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .display_pc {
    display: none !important;
  }
  .display_sp {
    display: block !important;
  }
}

a:hover {
  color: currentColor;
  text-decoration: none;
}
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none !important;
  }
}

.ffs {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.color-white {
  color: #fff;
}
.color-black {
  color: #000;
}

.object-fit {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.object-fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.object-fit-contain img {
  object-fit: contain;
}

.bg-color {
  padding: 2px;
  background: linear-gradient(transparent 0%, rgba(153, 123, 137, 0.4) 0%);
}

/* フォント */
.font-bold {
  font-weight: 700;
}

/* 共通パーツ */
.com_pd {
  padding: 0 50px;
}
@media (max-width: 767px) {
  .com_pd {
    padding: 0 30px;
  }
}
.com_wrap {
  max-width: 670px;
  margin: 0 auto;
}
.com_inner {
  margin-inline: auto;
}
@media (max-width: 767px) {
  .com_inner {
    padding: 0 calc(46 / 750 * 100vw);
  }
}
@media (min-width: 768px) {
  .com_inner {
    width: calc(1160 / 1366 * 100%);
  }
}

/*---------------------------------------------
02. layout
---------------------------------------------*/
html {
  min-height: 100vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  overflow: hidden;
  font-family: "Shippori Antique B1", serif;
  font-weight: 400;
  font-style: normal;
  color: #231815;
}

.loading {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100dvh;
  height: 100vh;
  background-color: var(--color-yellow);
  transition: opacity 1s ease-out;
  transition-delay: 2s;
}
.loading img {
  max-width: 900px;
  max-height: calc(100vh - 100px);
  width: 80%;
  height: 100%;
  object-fit: contain;
}
body {
  overflow: auto;
}
body.is-loaded .loading {
  opacity: 0;
}

/* kv */
.kv {
  overflow: hidden;
  position: relative;
  z-index: 1;
  background-color: var(--color-green);
}
.kv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  aspect-ratio: 750/930;
  background: url(../images/kv_bg-sp.jpg) no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .kv::before {
    aspect-ratio: 1366/590;
    background: url(../images/kv_bg.jpg) no-repeat;
  }
}

.kv__logo {
  position: absolute;
  top: calc(25 / 750 * 100%);
  left: calc(28 / 750 * 100%);
  width: calc(215 / 750 * 100%);
}
@media (min-width: 768px) {
  .kv__logo {
    position: absolute;
    top: 30px;
    left: 35px;
    width: 198px;
  }
}
.kv__img {
  display: block;
  width: 100%;
}
.kv__catch {
  position: relative;
  z-index: 1;
  width: calc(655 / 750 * 100vw);
  margin: calc(-20 / 750 * 100vw) auto 0;
}
@media (min-width: 768px) {
  .kv__catch {
    width: calc(980 / 1366 * 100vw);
    margin: calc(-205 / 1366 * 100vw) auto 0;
  }
}

/* movie */
.movie {
  position: relative;
  z-index: 1;
  padding-top: calc(65 / 750 * 100vw);
  background-color: var(--color-yellow);
}
@media (min-width: 768px) {
  .movie {
    padding-top: 75px;
  }
}
.movie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: calc(230 / 750 * 100vw);
  background-color: var(--color-green);
}
@media (min-width: 768px) {
  .movie::before {
    height: 350px;
  }
}

.movie__inner {
  max-width: 1120px;
  margin-inline: auto;
  padding: 0 calc(46 / 750 * 100vw);
}
@media (min-width: 768px) {
  .movie__inner {
    max-width: 1120px;
    margin-inline: auto;
    padding: 0 50px;
  }
}

.movie__title {
  font-size: 19px;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .movie__title {
    font-size: 44px;
  }
}

.movie__img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 560/315;
  margin-top: calc(20 / 750 * 100vw);
  border-radius: 15px;
  border: 5px solid #fff;
}
.movie__img iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .movie__img {
    margin-top: 15px;
    border-radius: 50px;
    border: 8px solid #fff;
  }
  .movie__img img {
    width: calc(100% + 16px);
    margin: -8px;
  }
}

/* intro */
.intro {
  overflow: hidden;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(50 / 750 * 100vw) 0 0;
  background-color: var(--color-yellow);
}
@media (min-width: 768px) {
  .intro {
    padding: 80px 0 0;
  }
}

.intro__inner {
  margin-inline: auto;
  padding: 0 calc(46 / 750 * 100vw);
}
@media (min-width: 768px) {
  .intro__inner {
    padding: 0 calc(320 / 1366 * 100%);
  }
}

.intro__title {
  position: relative;
  z-index: 1;
  width: calc(770 / 750 * 100vw);
  margin-inline: calc(-10 / 750 * 100vw);
}
@media (min-width: 768px) {
  .intro__title {
    max-width: 880px;
    width: calc(880 / 1366 * 100vw);
    margin-inline: auto;
  }
}

.intro__catch {
  position: relative;
  z-index: 3;
  margin-top: calc(70 / 750 * 100vw);
  font-size: 28px;
  text-align: center;
}
@media (min-width: 768px) {
  .intro__catch {
    margin-top: 70px;
    font-size: 40px;
  }
}

.intro__text {
  position: relative;
  z-index: 5;
  margin-top: calc(40 / 750 * 100vw);
  font-size: 15px;
  letter-spacing: -0.05em;
  line-height: calc(59 / 31);
  text-align: justify;
}
@media (min-width: 768px) {
  .intro__text {
    margin-top: 50px;
    font-size: 26px;
    letter-spacing: -0.05em;
    line-height: calc(53 / 26);
  }
}

.intro__img {
  pointer-events: none;
  overflow: hidden;
  position: absolute;
  z-index: 2;
  width: 100%;
}
.intro__img01 {
  top: calc(554 / 750 * 100vw);
  left: calc(-30 / 750 * 100vw);
  width: calc(245 / 750 * 100vw);
}
@media (min-width: 768px) {
  .intro__img01 {
    top: 52px;
    left: -50px;
    max-width: 432px;
    width: calc(432 / 1366 * 100vw);
  }
}

.intro__img02 {
  top: calc(1248 / 750 * 100vw);
  left: calc(-48 / 750 * 100vw);
  width: calc(363 / 750 * 100vw);
}
@media (min-width: 768px) {
  .intro__img02 {
    top: 490px;
    left: -180px;
    max-width: 523px;
    width: calc(523 / 1366 * 100vw);
  }
}

.intro__img03 {
  top: calc(470 / 750 * 100vw);
  right: calc(-26 / 750 * 100vw);
  width: calc(210 / 750 * 100vw);
}
@media (min-width: 768px) {
  .intro__img03 {
    top: 104px;
    right: -47px;
    max-width: 387px;
    width: calc(387 / 1366 * 100vw);
  }
}

.intro__img04 {
  width: 100%;
  margin-top: calc(-160 / 750 * 100vw);
}
@media (max-width: 767px) {
  .intro__img04 {
    position: relative;
    z-index: 3;
  }
}
@media (min-width: 768px) {
  .intro__img04 {
    margin-top: -40%;
  }
}

/* plan */
.plan__titlearea {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .plan__titlearea {
    gap: 20px;
    margin-top: 80px;
  }
}

.plan__titlearea__catch {
  font-size: 16px;
  letter-spacing: 0.05em;
}
@media (min-width: 768px) {
  .plan__titlearea__catch {
    font-size: 32px;
  }
}
.plan__titlearea__title {
  display: flex;
  gap: 7px;
}
@media (min-width: 768px) {
  .plan__titlearea__title {
    gap: 14px;
  }
}
.plan__titlearea__title span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background-color: var(--color-blue);
  border-radius: 50%;
  font-size: 28px;
  color: #fff;
}
@media (min-width: 768px) {
  .plan__titlearea__title span {
    width: 86px;
    height: 86px;
    font-size: 59px;
  }
}

.plan__intro {
  margin-top: 30px;
  font-size: 12px;
  line-height: calc(39 / 24);
  text-align: justify;
}
@media (min-width: 768px) {
  .plan__intro {
    margin-top: 30px;
    font-size: 20px;
    text-align: center;
  }
}

.plan__naviList {
  margin-top: 25px;
}
@media (max-width: 767px) {
  .plan__naviList {
    overflow-x: auto;
    margin-right: calc(-46 / 750 * 100vw);
    padding-bottom: 3px;
  }
}
@media (min-width: 768px) {
  .plan__naviList {
    margin-top: 80px;
  }
}

.plan__naviList__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 1px;
  width: fit-content;
  border-bottom: 3px solid var(--color-blue);
}
@media (min-width: 768px) {
  .plan__naviList__list {
    width: 100%;
    border-bottom: 4px solid var(--color-blue);
  }
}
.plan__naviList__list > li {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  height: 32px;
  background-color: #ebecec;
  padding: 0.5em;
  border-radius: 7px 7px 0 0;
  font-size: 10px;
  letter-spacing: -0.08em;
  text-align: center;
}
@media (max-width: 767px) {
  .plan__naviList__list > li {
    flex-wrap: nowrap;
    min-width: 100px;
  }
}
@media (min-width: 768px) and (max-width: 964px) {
  .plan__naviList__list > li {
    font-size: 11px;
  }
}
@media (min-width: 965px) {
  .plan__naviList__list > li {
    flex: 1;
    height: 50px;
    padding: 0.2em;
    border-radius: 10px 10px 0 0;
    font-size: 16px;
  }
}

.plan__naviList__list > li.is-current {
  background-color: var(--color-blue);
  color: #fff;
}

.plan__list {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .plan__list {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .plan__list {
    flex-wrap: wrap;
    gap: 60px calc(60 / 1168 * 100%);
  }
}

.plan__item {
  display: grid;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
@media (max-width: 767px) {
  .plan__item {
    grid-template-columns: calc(224 / 330 * 100%) auto;
    grid-template-rows: repeat(8, auto);
  }
}
@media (min-width: 768px) {
  .plan__item {
    width: calc(554 / 1168 * 100%);
    grid-template-columns: 1fr auto calc(140 / 550 * 100%);
    grid-template-rows: auto auto min-content 1fr auto;
    grid-column-gap: calc(20 / 1168 * 100%);
    grid-row-gap: 1em;
    align-content: start;
    grid-auto-flow: dense;
  }
}

.plan__item__thum {
  position: relative;
  grid-area: 1 / 1 / 2 / 3;
}
@media (min-width: 768px) {
  .plan__item__thum {
    grid-area: 1 / 1 / 2 / 4;
  }
}

.plan__item__thum img {
  border-radius: 12px;
}
@media (min-width: 768px) {
  .plan__item__thum img {
    border-radius: 20px;
  }
}

.plan__item__thum__text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 1;
  font-size: 20px;
  line-height: calc(56 / 40);
  letter-spacing: 0.04em;
  color: #fff;
}
@media (min-width: 768px) {
  .plan__item__thum__text {
    bottom: 20px;
    left: 20px;
    font-size: 30px;
  }
}

.plan__item__place {
  grid-area: 2 / 1 / 3 / 3;
  align-self: flex-end;
  font-size: 12px;
  color: var(--color-blue);
}
@media (min-width: 768px) {
  .plan__item__place {
    grid-area: 2 / 1 / 3 / 2;
    font-size: 20px;
  }
}

.plan__item__title {
  grid-area: 3 / 1 / 4 / 3;
  font-size: 15px;
  line-height: calc(40 / 29);
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .plan__item__title {
    grid-area: 3 / 1 / 4 / 3;
    font-size: 24px;
  }
}

.plan__item__text {
  grid-area: 4 / 1 / 6 / 2;
  font-size: 12px;
  line-height: calc(38 / 24);
  letter-spacing: 0.04em;
  text-align: justify;
}
@media (min-width: 768px) {
  .plan__item__text {
    grid-area: 4 / 1 / 5 / 3;
    font-size: 15px;
  }
}

.plan__item__icon {
  grid-area: 4 / 2 / 5 / 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px;
}
@media (min-width: 768px) {
  .plan__item__icon {
    grid-area: 2 / 2 / 3 / 4;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
  }
}

.plan__item__icon img {
  width: 25px;
}
@media (min-width: 768px) {
  .plan__item__icon img {
    width: 42px;
  }
}

.plan__item__person {
  grid-area: 5 / 2 / 8 / 3;
}
@media (min-width: 768px) {
  .plan__item__person {
    grid-area: 3 / 3 / 5 / 4;
    justify-self: end;
  }
}
/* .plan__item__person img {
  width: 90px;
}
@media (min-width: 768px) {
  .plan__item__person img {
    width: 140px;
  }
}
.plan__item__person07 img {
  width: 95px;
}
.plan__item__person12 img {
  width: 100px;
}
.plan__item__person15 img {
  width: 95px;
}
@media (min-width: 768px) {
  .plan__item__person07 img {
    width: 155px;
  }
  .plan__item__person12 img {
    width: 165px;
  }
  .plan__item__person15 img {
    width: 160px;
  }
} */

.plan__item__name {
  grid-area: 6 / 1 / 8 / 2;
  font-size: 10px;
  line-height: calc(25 / 20);
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .plan__item__name {
    grid-area: 5 / 2 / 6 / 4;
    font-size: 13px;
    text-align: right;
  }
}

.plan__item__btn {
  grid-area: 8 / 1 / 9 / 3;
}
@media (max-width: 767px) {
  .plan__item__btn {
    display: flex;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .plan__item__btn {
    grid-area: 5 / 1 / 6 / 2;
  }
}

.plan__item__btn a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 223px;
  height: 64px;
  margin-top: 5px;
  padding: 25px;
  background-color: var(--color-green);
  border-radius: 40px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.09em;
}
@media (min-width: 768px) {
  .plan__item__btn a {
    font-size: 17px;
  }
}

.plan__item__btn a::after {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background: url(../images/icon_arrow.svg);
  background-size: contain;
}
@media (min-width: 768px) {
  .plan__item__btn a::after {
    width: 24px;
    height: 24px;
  }
}

.plan__bnr {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .plan__bnr {
    margin: 100px 100px 0;
  }
}

.plan__map {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .plan__map {
    margin-top: 100px;
  }
}

/* footer */
.footer {
  background-color: var(--color-yellow);
  margin-top: 50px;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .footer {
    margin-top: 150px;
    padding: 50px 0;
  }
}

.footer__inner {
  display: flex;
  gap: 25px;
}
@media (min-width: 768px) {
  .footer__inner {
    align-items: flex-end;
    gap: 60px;
  }
}

.footer__logo {
  width: 100px;
}
@media (min-width: 768px) {
  .footer__logo {
    width: 198px;
  }
}

.footer__body {
  flex: 1;
}

.footer__name {
  font-size: 12px;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .footer__name {
    font-size: 24px;
  }
}

.footer__text {
  font-size: 9px;
  line-height: calc(31 / 18);
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .footer__text {
    margin-top: 1em;
    font-size: 14px;
  }
}
