@charset "UTF-8";
/*16*1.75/2*/
/*======*/
/* 共通 */
/*======*/
/* PC/SP出し分け
------------------------------ */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* レイアウト
-----------------------------------*/
body {
  height: 100%;
}

footer .contents,
section .contents {
  width: 86%;
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  footer .contents,
section .contents {
    width: 90%;
  }
}

/*============*/
/* 共通・汎用 */
/*============*/
/* ぶら下げインデント
-----------------------------------*/
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* カラム幅
-----------------------------------*/
.w1000 {
  width: 1000px;
}

/* リスト、アイコン
-----------------------------------*/
/* リスト（デフォルト） */
.list-df {
  margin-left: 23px;
  list-style: disc;
}

/* リスト（ドット） */
.list-dot li {
  padding-left: 1em;
}

.list-dot li:before {
  content: "・";
  margin-left: -1em;
}

/* リスト（数字） */
.list-num li {
  margin-left: 30px;
}

/* テーブル
-----------------------------------*/
/* 幅 */
col.colw05 {
  width: 5%;
}

col.colw10 {
  width: 10%;
}

col.colw15 {
  width: 15%;
}

col.colw20 {
  width: 20%;
}

col.colw25 {
  width: 25%;
}

col.colw30 {
  width: 30%;
}

col.colw35 {
  width: 35%;
}

col.colw40 {
  width: 40%;
}

col.colw45 {
  width: 45%;
}

col.colw50 {
  width: 50%;
}

/* テーブル */
.table {
  width: 100%;
  margin-bottom: 1em;
  border-collapse: collapse;
  border-spacing: 0;
}
.table th {
  padding: 16px;
  border: solid 1px #333;
  text-align: center;
}
@media (max-width: 767px) {
  .table th {
    padding: 8px 4px;
  }
}
.table td {
  padding: 16px;
  border: solid 1px #333;
}
@media (max-width: 767px) {
  .table td {
    padding: 8px 4px;
  }
}

/*==========*/
/* ヘッダー */
/*==========*/
header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}
@media (max-width: 767px) {
  header {
    position: static;
    background-color: #FFF;
  }
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .inner .h-logo {
  padding-left: 80px;
}
@media (max-width: 767px) {
  header .inner .h-logo {
    padding-left: 16px;
  }
  header .inner .h-logo img {
    width: 100px;
  }
}
header .inner .h-contact a {
  display: flex;
  align-items: center;
  gap: 0 24px;
  padding: 14px 30px;
  background-color: #282364;
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  text-decoration: none;
}
@media (min-width: 768px) {
  header .inner .h-contact a {
    pointer-events: none;
  }
}
@media (max-width: 767px) {
  header .inner .h-contact a {
    gap: 0 8px;
    padding: 8px;
  }
}
@media (max-width: 767px) {
  header .inner .h-contact .ico img {
    width: 24px;
  }
}
header .inner .h-contact .tel dl dt {
  font-weight: 700;
}
@media (max-width: 767px) {
  header .inner .h-contact .tel dl dt {
    font-size: 11px;
  }
}
header .inner .h-contact .tel dl dd .inner {
  display: flex;
  align-items: flex-end;
  gap: 0 12px;
}
header .inner .h-contact .tel dl dd .number {
  font-size: 32px;
  font-weight: 900;
}
@media (max-width: 767px) {
  header .inner .h-contact .tel dl dd .number {
    font-size: 18px;
  }
}
header .inner .h-contact .tel dl dd .time {
  font-size: 14px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  header .inner .h-contact .tel dl dd .time {
    font-size: 10px;
  }
}

/*==========*/
/* フッター */
/*==========*/
footer {
  position: relative;
  padding: 90px 0;
  background: url(/images/common/footer_bg01.webp) no-repeat center top;
  background-size: cover;
  color: #FFF;
}
@media (max-width: 767px) {
  footer {
    padding: 60px 0;
    background: url(/images/common/footer_bg01_sp.webp) no-repeat center top;
    background-size: cover;
  }
}
footer .copyright {
  font-size: 12px;
  text-align: center;
}
@media (max-width: 767px) {
  footer .copyright {
    font-size: 10px;
  }
}

/* ページトップへ戻る
-----------------------------------*/
.ptop {
  position: absolute;
  right: 72px;
  bottom: 0;
  z-index: 10;
  overflow: hidden;
}
@media (max-width: 767px) {
  .ptop {
    right: 16px;
  }
}

.ptop .s-txt {
  display: block;
  width: 1em;
  font-size: 14px;
  color: #FFF;
  letter-spacing: 0.1em;
  line-height: 1;
  writing-mode: vertical-rl;
}
@media (max-width: 767px) {
  .ptop .s-txt {
    font-size: 8px;
  }
}

.ptop .s-line {
  display: block;
  position: relative;
  width: 2px;
  height: 80px;
  margin-top: 16px;
  margin-left: 0.4em;
  background-color: #B4B5B5;
  overflow: hidden;
}
@media (max-width: 767px) {
  .ptop .s-line {
    width: 1px;
    height: 60px;
    margin-top: 8px;
    margin-left: 0.2em;
  }
}

.ptop .s-line2 {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #FFF;
  -webkit-animation: line-top 2s infinite;
          animation: line-top 2s infinite;
}
@media (max-width: 767px) {
  .ptop .s-line2 {
    width: 1px;
  }
}

@-webkit-keyframes line-top {
  0% {
    bottom: 0;
  }
  30% {
    bottom: 110%;
    opacity: 1;
  }
  31% {
    bottom: -110%;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    bottom: 0;
  }
}

@keyframes line-top {
  0% {
    bottom: 0;
  }
  30% {
    bottom: 110%;
    opacity: 1;
  }
  31% {
    bottom: -110%;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    bottom: 0;
  }
}
/*=======*/
/* index */
/*=======*/
/* main
-----------------------------------*/
.main {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.main iframe {
  width: 100% !important;
  height: 100% !important;
  margin-top: 0 !important;
  margin-left: 0 !important;
}
.main .thumb-wrap {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url(/images/index/index_mv01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  transition: 0.3s all;
}
.main .thumb-wrap.completed {
  visibility: hidden;
}

/* about
-----------------------------------*/
.about {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .about {
    margin-top: 60px;
  }
}
.about h2 {
  margin-bottom: 54px;
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .about h2 {
    margin-bottom: 32px;
    font-size: 20px;
  }
}
.about .about-wrap {
  position: relative;
  padding-top: 160px;
}
@media (max-width: 1023px) {
  .about .about-wrap {
    padding-top: 0;
  }
}
.about .about-wrap:not(:first-of-type) {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .about .about-wrap:not(:first-of-type) {
    margin-top: 60px;
  }
}
.about .about-wrap .img {
  position: absolute;
  top: 0;
  width: 904px;
  z-index: -1;
}
@media (max-width: 1599px) {
  .about .about-wrap .img {
    width: 66.47%;
    height: 640px;
  }
  .about .about-wrap .img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1023px) {
  .about .about-wrap .img {
    position: static;
    width: 100%;
    height: auto;
  }
  .about .about-wrap .img img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
.about .about-wrap .text {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 535px;
  aspect-ratio: 1/1;
  padding: 60px;
  color: #FFF;
}
@media (max-width: 1023px) {
  .about .about-wrap .text {
    width: 90%;
    aspect-ratio: auto;
    margin: -130px auto 0;
  }
}
@media (max-width: 767px) {
  .about .about-wrap .text {
    margin: -40px auto 0;
    padding: 60px 32px;
  }
}
.about .about-wrap .text h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 767px) {
  .about .about-wrap .text h3 {
    font-size: 24px;
  }
}
.about .about-wrap .text p {
  margin-top: 40px;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .about .about-wrap .text p {
    margin-top: 24px;
  }
}
.about .about-wrap.about01 .img {
  right: 0;
}
.about .about-wrap.about01 .text {
  background-color: rgba(66, 30, 135, 0.9);
}
.about .about-wrap.about02 .text {
  margin-left: auto;
  background-color: rgba(11, 82, 107, 0.9);
}
.about .about-wrap.about03 .img {
  right: 0;
}
.about .about-wrap.about03 .text {
  background-color: rgba(93, 96, 32, 0.9);
}
.about .btn {
  margin-top: 120px;
  text-align: center;
}
@media (max-width: 767px) {
  .about .btn {
    margin-top: 60px;
  }
}
.about .btn a {
  position: relative;
  display: inline-block;
  max-width: 320px;
  width: 100%;
  padding: 10px 24px 12px;
  background-color: #282364;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-decoration: none;
}
@media (max-width: 767px) {
  .about .btn a {
    font-size: 16px;
  }
}
.about .btn a::after {
  content: "";
  position: absolute;
  top: calc(50% - 5.5px);
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
}
.about .btn a:hover {
  opacity: 0.8;
  box-shadow: none;
}

/* plan
-----------------------------------*/
.plan {
  margin-top: 240px;
}
@media (max-width: 767px) {
  .plan {
    margin-top: 100px;
  }
}
.plan h2 {
  margin-bottom: 54px;
  font-family: "Zen Old Mincho", serif;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .plan h2 {
    margin-bottom: 32px;
    font-size: 20px;
  }
}
.plan .plan-wrap {
  position: relative;
  padding-top: 80px;
}
@media (max-width: 767px) {
  .plan .plan-wrap {
    padding-top: 0;
  }
}
.plan .plan-wrap:not(:first-of-type) {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .plan .plan-wrap:not(:first-of-type) {
    margin-top: 60px;
  }
}
.plan .plan-wrap .img {
  position: absolute;
  top: 0;
  width: 535px;
  z-index: 1;
}
@media (max-width: 1599px) {
  .plan .plan-wrap .img {
    width: 39.33%;
    height: 535px;
  }
  .plan .plan-wrap .img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1023px) {
  .plan .plan-wrap .img {
    position: static;
    max-width: 535px;
    height: auto;
    width: 71.33%;
    margin: 0 auto;
  }
  .plan .plan-wrap .img img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
}
.plan .plan-wrap .text {
  position: relative;
  width: 904px;
  padding: 80px 80px 80px 160px;
  background-color: #edf2f7;
}
@media (max-width: 1599px) {
  .plan .plan-wrap .text {
    width: 66.47%;
    padding: 80px 2.94% 80px 8.82%;
  }
}
@media (max-width: 1023px) {
  .plan .plan-wrap .text {
    width: 100%;
    margin-top: 24px;
    padding: 40px 5%;
  }
}
.plan .plan-wrap .text .text-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 8px;
}
@media (max-width: 1023px) {
  .plan .plan-wrap .text .text-header {
    flex-wrap: wrap;
    gap: 8px 0;
  }
}
.plan .plan-wrap .text .text-header h3 {
  color: #282364;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 1023px) {
  .plan .plan-wrap .text .text-header h3 {
    font-size: 24px;
  }
}
.plan .plan-wrap .text .text-header .type {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 9px;
}
@media (max-width: 1023px) {
  .plan .plan-wrap .text .text-header .type {
    justify-content: flex-start;
    margin-bottom: 0;
  }
}
.plan .plan-wrap .text .text-header .type li {
  padding: 4px 16px;
}
@media (max-width: 1023px) {
  .plan .plan-wrap .text .text-header .type li {
    padding: 4px 8px;
  }
}
.plan .plan-wrap .text .text-header .type .type01 {
  border: 1px solid #282364;
  color: #282364;
}
.plan .plan-wrap .text .text-header .type .type02 {
  border: 1px solid #282364;
  background-color: #282364;
  color: #FFF;
}
.plan .plan-wrap .text .text-body dl {
  display: flex;
  flex-wrap: wrap;
}
.plan .plan-wrap .text .text-body dl dt {
  width: 120px;
  padding: 24px 16px;
  border-bottom: 2px solid #282364;
}
@media (max-width: 1023px) {
  .plan .plan-wrap .text .text-body dl dt {
    width: 100px;
    padding: 16px 8px;
  }
}
.plan .plan-wrap .text .text-body dl dd {
  width: calc(100% - 120px);
  padding: 24px 16px;
  border-bottom: 2px solid #d3d3d3;
}
@media (max-width: 1023px) {
  .plan .plan-wrap .text .text-body dl dd {
    width: calc(100% - 100px);
    padding: 16px 8px;
  }
}
.plan .plan-wrap .text .text-body dl.col2 dd {
  width: calc(50% - 120px);
}
@media (max-width: 1023px) {
  .plan .plan-wrap .text .text-body dl.col2 dd {
    width: calc(100% - 100px);
  }
}
.plan .plan-wrap .text .text-body h4 {
  position: relative;
  margin-top: 40px;
  padding-left: 14px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media (max-width: 1023px) {
  .plan .plan-wrap .text .text-body h4 {
    padding-left: 12px;
    font-size: 18px;
  }
}
.plan .plan-wrap .text .text-body h4::before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
  width: 4px;
  height: 20px;
  background: url(/images/index/index_ic01.svg) no-repeat center center;
  background-size: 100% auto;
}
@media (max-width: 1023px) {
  .plan .plan-wrap .text .text-body h4::before {
    height: 18px;
    background-size: auto 100%;
  }
}
.plan .plan-wrap .text .text-body .note {
  margin: 24px 0 0 1.5em;
}
@media (max-width: 1023px) {
  .plan .plan-wrap .text .text-body .note {
    margin: 16px 0 0 1.5em;
  }
}
.plan .plan-wrap .text .text-body .note li {
  list-style: disc;
}
.plan .plan-wrap.plan01 .img, .plan .plan-wrap.plan03 .img {
  left: 0;
}
.plan .plan-wrap.plan01 .text, .plan .plan-wrap.plan03 .text {
  margin-left: auto;
}
.plan .plan-wrap.plan02 .img, .plan .plan-wrap.plan04 .img {
  right: 0;
}
.plan .plan-wrap.plan02 .text, .plan .plan-wrap.plan04 .text {
  margin-right: auto;
  padding: 80px 160px 80px 80px;
}
@media (max-width: 1599px) {
  .plan .plan-wrap.plan02 .text, .plan .plan-wrap.plan04 .text {
    padding: 80px 8.82% 80px 2.94%;
  }
}
@media (max-width: 1023px) {
  .plan .plan-wrap.plan02 .text, .plan .plan-wrap.plan04 .text {
    width: 100%;
    margin-top: 24px;
    padding: 40px 5%;
  }
}
.plan .plan-pet {
  margin-top: 90px;
}
@media (max-width: 767px) {
  .plan .plan-pet {
    margin-top: 60px;
  }
}
.plan .plan-pet .text {
  padding: 74px 24px;
  background-color: #edf2f7;
  text-align: center;
  color: #282364;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .plan .plan-pet .text {
    padding: 24px 16px;
    font-size: 24px;
  }
}

/* link
-----------------------------------*/
.link {
  margin-top: 90px;
}
@media (max-width: 767px) {
  .link {
    margin-top: 60px;
  }
}
.link ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px 40px;
}
@media (max-width: 767px) {
  .link ul {
    gap: 24px 0;
  }
}
.link ul li {
  max-width: 320px;
  width: 100%;
}
.link ul li a {
  position: relative;
  display: inline-block;
  max-width: 320px;
  width: 100%;
  padding: 10px 24px 12px;
  background-color: #282364;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
  color: #FFF;
  font-family: "Zen Old Mincho", serif;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 767px) {
  .link ul li a {
    font-size: 16px;
  }
}
.link ul li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 5.5px);
  right: 15px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
}
.link ul li a:hover {
  opacity: 0.8;
  box-shadow: none;
}

/* access
-----------------------------------*/
.access {
  margin-top: 200px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .access {
    margin-top: 100px;
    padding-bottom: 60px;
  }
}
.access .map {
  width: 100%;
  aspect-ratio: 1920/400;
}
@media (max-width: 767px) {
  .access .map {
    aspect-ratio: 3/2;
  }
}
.access .map iframe {
  width: 100%;
  height: 100%;
}
.access .contents {
  margin-top: 72px;
}
@media (max-width: 767px) {
  .access .contents {
    margin-top: 40px;
  }
}
.access .access-wrap {
  margin-top: 72px;
}
@media (max-width: 767px) {
  .access .access-wrap {
    margin-top: 60px;
  }
}
.access .access-wrap .row {
  display: flex;
  gap: 0 40px;
}
@media (max-width: 767px) {
  .access .access-wrap .row {
    flex-wrap: wrap;
    gap: 40px 0;
  }
}
.access .access-wrap .row .col {
  width: calc((100% - 40px) / 2);
}
@media (max-width: 767px) {
  .access .access-wrap .row .col {
    width: 100%;
  }
}
.access .access-wrap h2 {
  margin-bottom: 32px;
  color: #282364;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .access .access-wrap h2 {
    margin-bottom: 16px;
    font-size: 24px;
  }
}
.access .access-wrap dl {
  display: flex;
  flex-wrap: wrap;
}
.access .access-wrap dl dt {
  width: 240px;
  padding: 24px 16px;
  border-bottom: 2px solid #282364;
}
@media (max-width: 767px) {
  .access .access-wrap dl dt {
    width: 100px;
    padding: 16px 8px;
  }
}
.access .access-wrap dl dt:first-of-type {
  padding-top: 0;
}
.access .access-wrap dl dd {
  width: calc(100% - 240px);
  padding: 24px 16px;
  border-bottom: 2px solid #d3d3d3;
}
@media (max-width: 767px) {
  .access .access-wrap dl dd {
    width: calc(100% - 100px);
    padding: 16px 8px;
  }
}
.access .access-wrap dl dd:first-of-type {
  padding-top: 0;
}
/*# sourceMappingURL=contents.css.map */