@charset "UTF-8";
html {
  color: #333;
  font-family: "Shippori Mincho", serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  word-wrap: break-word;
}
@media print, screen and (min-width: 768px) and (max-width: 1500px) {
  html {
    font-size: 0.6666666667vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 1.3020833333vw;
  }
}
html * {
  font-weight: inherit;
  box-sizing: border-box;
}

body {
  font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 2.8rem;
  }
}

header, main, section, aside, footer {
  width: 100%;
}

a {
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
a:hover {
  opacity: 0.7;
}

figure img {
  width: 100%;
  height: auto;
}
figure img[src$=".svg"] {
  max-width: 100%;
}

th {
  font-weight: normal;
}

#wrapper {
  overflow: hidden;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tal {
  text-align: left;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.noFind {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
@media only screen and (max-width: 767px) {
  .noFind {
    margin-top: 2rem;
  }
}

.scrollbar {
  overflow: hidden scroll;
  padding-right: 1rem;
}
.scrollbar::-webkit-scrollbar {
  width: 1rem;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: #E6E6E6;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: #B3B3B3;
}

.flowLink {
  position: relative;
  padding-bottom: 0.4rem;
}
@media print, screen and (min-width: 768px) {
  .flowLink::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #518193;
    height: 2px;
    width: 100%;
    transform: scale(0);
    transform-origin: left center;
    transition: all ease 0.3s;
  }
}
.flowLink:hover::after {
  transform: scale(1);
}

.maker {
  display: inline;
  background: linear-gradient(transparent 70%, #fdd8d8 0%);
  padding: 0 0.4rem;
}

.scrollAnim {
  position: absolute;
  text-align: center;
  right: 5rem;
  bottom: 0;
  margin: auto;
  font-weight: bold;
  font-size: 1.2rem;
}
.scrollAnim a {
  position: relative;
  display: inline-block;
  padding-bottom: 9rem;
  writing-mode: vertical-rl;
}
.scrollAnim a::before, .scrollAnim a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  width: 0.1rem;
}
.scrollAnim a::before {
  height: 8rem;
  background-color: #333;
  bottom: 0;
}
.scrollAnim a::after {
  height: 0rem;
  background-color: #fff;
  bottom: 8rem;
  -webkit-animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
          animation: scroll_anim 1.6s ease-in-out 0s infinite normal forwards;
}

#wrapper {
  opacity: 0;
  transition: all 1.2s;
}

#wrapper.preload {
  opacity: 1;
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
  #wrapper:not(.preload) * {
    transition: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@-webkit-keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@keyframes scroll_anim {
  0% {
    height: 0;
    bottom: 8rem;
  }
  70% {
    height: 5rem;
  }
  80% {
    bottom: 0;
  }
  100% {
    height: 0;
    bottom: 0;
  }
}
@-webkit-keyframes zoomDown {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomDown {
  from {
    transform: scale(1.2);
  }
  to {
    transform: scale(1);
  }
}
.scrollItem, .scrollListItem {
  opacity: 0;
  transition: all ease-in-out 0.6s;
}
.scrollItem.scrollActive, .scrollListItem.scrollActive {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

.fadein {
  opacity: 0;
}
.fadein.scrollActive {
  opacity: 1;
}

.fadeTop {
  transform: translateY(5rem);
}
.fadeTop.scrollActive {
  transform: translate(0);
}

.fadeRight {
  transform: translateX(5rem);
}
.fadeRight.scrollActive {
  transform: translate(0);
}

.fadeBottom {
  transform: translateY(-5rem);
}
.fadeBottom.scrollActive {
  transform: translate(0);
}

.fadeLeft {
  transform: translateX(-5rem);
}
.fadeLeft.scrollActive {
  transform: translate(0);
}

.fadeInLeft, .fadeInRight {
  position: relative;
}
.fadeInLeft::after, .fadeInRight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: all ease-in-out 0.6s;
  transform-origin: center right;
}
.fadeInLeft.scrollActive::after, .fadeInRight.scrollActive::after {
  transform: scaleX(0);
}

.fadeInRight::after {
  transform-origin: center left;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  width: 100%;
  z-index: 99;
}
@media print, screen and (min-width: 768px) {
  .header {
    padding: 1.5rem 0;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    height: 12rem;
  }
}
.header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  max-width: 1180px;
}
@media only screen and (max-width: 767px) {
  .header__wrapper {
    width: 100%;
    padding-left: 3.5rem;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
  }
}
.header__logo {
  width: 17.8rem;
}
@media only screen and (max-width: 767px) {
  .header__logo {
    position: relative;
    z-index: 2;
    width: 26.8rem;
  }
}
@media print, screen and (min-width: 768px) {
  .header__contact {
    margin: 0 -9rem 0 6rem;
    position: relative;
    top: 0;
    transition: all 0.3s;
  }
}
.header__contact .circle.circle-type01 {
  width: 8rem;
  background-color: #518193;
  border: 1px solid #518193;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .header__contact .circle.circle-type01 {
    padding-top: 4.3rem;
  }
}
@media only screen and (max-width: 767px) {
  .header__contact .circle.circle-type01 {
    width: 12rem;
    border-radius: 0;
  }
}
.header__contact .circle.circle-type01 .circle_num {
  font-size: 1.3rem;
  color: #fff;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .header__contact .circle.circle-type01 .circle_num {
    font-size: 2.8rem;
  }
}
.header__contact .circle.circle-type01::before {
  content: "";
  background: url(../img/common/icon_mail_w.svg) no-repeat center center/100%;
  width: 2.1rem;
  aspect-ratio: 21/15;
  position: absolute;
  top: 29%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .header__contact .circle.circle-type01::before {
    width: 3.8rem;
  }
}
@media print, screen and (min-width: 768px) {
  .header__contact .circle.circle-type01:hover {
    opacity: 1;
    background-color: #fff;
  }
}
@media print, screen and (min-width: 768px) {
  .header__contact .circle.circle-type01:hover .circle_num {
    color: #518193;
  }
}
@media print, screen and (min-width: 768px) {
  .header__contact .circle.circle-type01:hover::before {
    background-image: url(../img/common/icon_mail_b.svg);
  }
}
@media print, screen and (min-width: 768px) {
  .header .gnav {
    margin-left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100vw;
    background-color: #518193;
    padding: 19rem 8rem 6rem;
    overflow: hidden scroll;
    transition: all ease-in-out 0.6s;
    transform: translateX(100%);
    z-index: -1;
  }
  .header .gnav.active {
    transform: translateX(0);
  }
}
@media print, screen and (min-width: 768px) {
  .header .gnav__list {
    display: flex;
    align-items: center;
    gap: 0 3.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__list {
    margin-top: 4.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__title {
    font-size: 7.8rem;
    font-family: "Abel", serif;
    letter-spacing: 0.1em;
    color: #fff;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__item {
    border-bottom: 1px solid #fff;
  }
}
.header .gnav__item a {
  display: block;
  position: relative;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item a {
    font-size: 3.4rem;
    letter-spacing: 0.1em;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 4.2rem 0;
    position: relative;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__item a::before {
    content: "";
    width: 3.9rem;
    height: 2.6rem;
    background: url(../img/common/arrow_w.svg) no-repeat center center/100%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.header .gnav__item .en {
  display: block;
  font-size: 1.4rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item .en {
    margin-right: 2.6rem;
    font-size: 4.4rem;
  }
}
.header .gnav__item .ja {
  display: block;
  font-size: 1.2rem;
  margin-top: 1.2rem;
}
@media only screen and (max-width: 767px) {
  .header .gnav__item .ja {
    font-size: 2.2rem;
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .header .gnav__item:first-child {
    border-top: 1px solid #fff;
  }
}
.header__btn {
  width: 12rem;
  aspect-ratio: 1/1;
  padding-top: 1.5rem;
  background-color: #d4e2e5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.header__btn.active .bar:first-of-type {
  transform: translateY(1.5rem) rotate(30deg);
}
.header__btn.active .bar:nth-child(2) {
  transform: translateY(-50%);
  opacity: 0;
}
.header__btn.active .bar:last-of-type {
  transform: translateY(-1.5rem) rotate(-30deg);
  width: 100%;
}
.header__btn.active .menu {
  display: none;
}
.header__btn.active .close {
  display: block;
}
.header__btn .mark {
  position: relative;
  cursor: pointer;
  height: 3.5rem;
  width: 7rem;
  transition: all 0.6s ease-in-out;
}
.header__btn .bar {
  position: absolute;
  left: 0;
  background-color: #518193;
  height: 0.3rem;
  width: 100%;
  transition: all 0.6s ease-in-out;
}
.header__btn .bar:first-of-type {
  top: 0;
}
.header__btn .bar:nth-child(2) {
  top: 1.6rem;
}
.header__btn .bar:last-of-type {
  bottom: 0;
}
.header__btn .menu, .header__btn .close {
  font-family: "Abel", serif;
  color: #518193;
  font-weight: bold;
  display: inline-block;
  margin-top: 1.25rem;
}
.header__btn .menu {
  display: block;
}
.header__btn .close {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header .btn_wrap {
    display: flex;
  }
}
@media print, screen and (min-width: 768px) {
  .header.is-scroll {
    top: -12rem;
  }
}
@media only screen and (max-width: 767px) {
  .header.is-scroll .header__wrapper {
    background-color: rgba(255, 255, 255, 0.7);
  }
}
@media print, screen and (min-width: 768px) {
  .header.is-show .header__contact {
    top: 12rem;
  }
}

.main {
  line-height: 1.6;
}
@media only screen and (max-width: 767px) {
  .main {
    margin-top: 12rem;
  }
}

.wrapper {
  max-width: 1100px;
  margin: auto;
  width: 90%;
}
@media print, screen and (min-width: 768px) {
  .wrapper .wrapper_pc_small {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  .wrapper .wrapper_sp_inner {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.title-type01 .en {
  font-size: 6rem;
  font-family: "Abel", serif;
  color: #518193;
  letter-spacing: 0.1em;
  display: inline-block;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .title-type01 .en {
    font-size: 7.8rem;
  }
}
.title-type01 .en::after {
  display: inline-block;
  content: "";
  width: 6rem;
  height: 1px;
  background-color: #518193;
}
.title-type01 .ja {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  display: block;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .title-type01 .ja {
    font-size: 2.34rem;
  }
}
.title-type01.white .en, .title-type01.white .ja {
  color: #fff;
}
.title-type01.white .en::after {
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .title-type01.rl {
    margin: 0 0 -8.5rem -7rem;
    position: relative;
  }
  .title-type01.rl .en {
    position: absolute;
    top: 0;
    left: 7rem;
  }
  .title-type01.rl .ja {
    writing-mode: vertical-rl;
  }
}

.list-type01 li {
  padding-left: 1.5em;
  position: relative;
}
.list-type01 li::before {
  content: "●";
  color: #518193;
  display: inline-block;
  margin-right: 0.5rem;
  position: absolute;
  left: 0;
}

.btn-type01 {
  color: #fff;
  display: block;
  background-color: #518193;
  border: 1px solid #518193;
  border-radius: 100px;
  padding: 1rem 2rem 1rem 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .btn-type01 {
    padding-right: 4rem;
  }
}
.btn-type01::after {
  content: "";
  width: 3rem;
  height: 0.9rem;
  background: url(../img/common/arrow_short_w.svg) no-repeat center bottom/100%;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
@media print, screen and (min-width: 768px) {
  .btn-type01:hover {
    background-color: #fff;
    color: #518193;
  }
}
@media print, screen and (min-width: 768px) {
  .btn-type01:hover::after {
    background-image: url(../img/common/arrow_short_blue.svg);
    right: 1rem;
  }
}

.text-indent {
  text-indent: -1em;
  padding-left: 1em;
}

.bg01 {
  background-color: #518193;
}

.bg02 {
  background-color: #f7f5f4;
}

.bg03 {
  background-color: #e6e6e6;
}

.link-arrow {
  position: relative;
  padding-right: 5rem;
}
.link-arrow::after {
  content: "";
  width: 3rem;
  height: 0.9rem;
  background: url(../img/common/arrow_w.svg) no-repeat center center/100%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
@media print, screen and (min-width: 768px) {
  .link-arrow:hover::after {
    right: -5%;
  }
}

.circle {
  background-color: #e0d9c7;
  width: 8.5rem;
  aspect-ratio: 1/1;
  display: block;
  border-radius: 100%;
  position: relative;
  text-align: center;
  padding-top: 1.3rem;
}
@media only screen and (max-width: 767px) {
  .circle {
    width: 11.2rem;
    padding-top: 2rem;
  }
}
.circle .circle_num {
  font-family: "Abel", serif;
  font-size: 2.2rem;
  letter-spacing: 0.07em;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .circle .circle_num {
    font-size: 2.64rem;
  }
}
.circle .circle_img {
  width: 100%;
  position: absolute;
  top: 50%;
}
.circle .circle_img img {
  margin: auto;
}
.circle .circle_img_icon {
  position: unset;
  margin: auto;
}
.circle.circle-type01 {
  padding-top: 4rem;
}
@media only screen and (max-width: 767px) {
  .circle.circle-type01 {
    padding-top: 7.5rem;
  }
}
.circle.circle-type01 .circle_img {
  top: 15%;
}

@media print, screen and (min-width: 768px) {
  .sp-call {
    pointer-events: none;
  }
}

@media only screen and (max-width: 767px) {
  .anchor-target {
    padding-top: 17rem;
    margin-top: -17rem;
  }
}
@media only screen and (max-width: 767px) {
  .anchor-target.scrollActive {
    padding-top: 12rem;
    margin-top: -12rem;
  }
}

.mv__wrapper {
  position: relative;
}
.mv__wrapper .mv_bg_deco {
  position: absolute;
  width: 4.1333333333%;
  max-width: 6.2rem;
  top: 0;
  left: 0;
  z-index: 1;
}

#contact {
  padding: 5rem 0;
}
@media only screen and (max-width: 767px) {
  #contact {
    padding: 7rem 0;
  }
}
#contact .title-type01 {
  text-align: center;
}
#contact .title-type01 .en {
  position: relative;
  line-height: 1;
}
#contact .title-type01 .en::after {
  width: 102%;
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
  #contact .wrapper {
    width: 90%;
  }
}
#contact .item_tel .circle {
  padding-top: 1.5rem;
}
#contact .item_tel .circle .circle_img {
  top: 59%;
}
@media only screen and (max-width: 767px) {
  #contact .item_tel .circle .circle_img {
    top: 51%;
  }
}
#contact .item_tel .circle .circle_img img {
  width: 4.3rem;
}
@media only screen and (max-width: 767px) {
  #contact .item_tel .circle .circle_img img {
    width: 5.6rem;
  }
}
#contact .item_tel .circle .circle_img_icon {
  width: 1.6rem;
  aspect-ratio: 16/27;
}
@media only screen and (max-width: 767px) {
  #contact .item_tel .circle .circle_img_icon {
    width: 2.1rem;
  }
}
#contact .item_tel .text_area .link {
  font-size: 4rem;
  font-family: "Abel", serif;
  color: #000;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  #contact .item_tel .text_area .link {
    font-size: 6rem;
  }
}
#contact .item_mail .circle {
  padding-top: 2rem;
}
#contact .item_mail .circle .circle_img img {
  width: 7rem;
}
@media only screen and (max-width: 767px) {
  #contact .item_mail .circle .circle_img img {
    width: 9.1rem;
  }
}
#contact .item_mail .circle .circle_img_icon {
  width: 2.2rem;
  aspect-ratio: 25/18;
}
@media only screen and (max-width: 767px) {
  #contact .item_mail .circle .circle_img_icon {
    width: 3.2rem;
  }
}
#contact .item_mail .link {
  letter-spacing: 0.1em;
  text-align: center;
  width: 26.5rem;
}
@media only screen and (max-width: 767px) {
  #contact .item_mail .link {
    font-size: 2.6rem;
    width: 37.1rem;
  }
}
#contact .contact__box {
  margin-top: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 2px -2px 12px 0px rgba(0, 0, 0, 0.15);
}
@media print, screen and (min-width: 768px) {
  #contact .contact__box {
    display: flex;
  }
}
@media only screen and (max-width: 767px) {
  #contact .contact__box {
    margin-top: 4rem;
  }
}
#contact .contact__item {
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 4rem;
}
@media print, screen and (min-width: 768px) {
  #contact .contact__item {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  #contact .contact__item {
    padding: 5rem 0;
  }
}
@media print, screen and (min-width: 768px) {
  #contact .contact__item:not(:first-of-type) {
    border-left: 1px solid #a8c0c9;
  }
}
@media only screen and (max-width: 767px) {
  #contact .contact__item:not(:first-of-type) {
    border-top: 1px solid #a8c0c9;
  }
}
#contact .contact__item .circle {
  background-color: #eed26e;
  width: 8.5rem;
}
@media only screen and (max-width: 767px) {
  #contact .contact__item .circle {
    width: 11.5rem;
  }
}
#contact .contact__item .text_area p {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  #contact .contact__item .text_area p {
    font-size: 3rem;
  }
}
#contact .contact__item .text_area .link {
  margin: 0.5rem 0;
}
@media only screen and (max-width: 767px) {
  #contact .contact__item .text_area .link {
    margin: 1rem 0;
  }
}
#contact .contact__item .text_area .time {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  color: #4d4d4d;
}
@media only screen and (max-width: 767px) {
  #contact .contact__item .text_area .time {
    font-size: 2.4rem;
  }
}

.footer {
  background-color: #d4e2e5;
  padding: 6rem 0;
}
.footer p {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 767px) {
  .footer p {
    font-size: 2.4rem;
    line-height: 1.9833333333;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__logo {
  width: 19.1rem;
}
@media only screen and (max-width: 767px) {
  .footer__logo {
    width: 28.7rem;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__info {
    width: 61rem;
    padding-left: 6rem;
  }
}
@media only screen and (max-width: 767px) {
  .footer__info {
    margin-top: 5rem;
  }
}
@media print, screen and (min-width: 768px) {
  .footer__copy {
    margin-top: auto;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 767px) {
  .footer__copy {
    font-size: 2rem !important;
    text-align: center;
    margin-top: 8rem;
  }
}

#page-top {
  width: 8rem;
  aspect-ratio: 1/1;
  display: block;
  background: url(../img/common/page-top.svg) no-repeat center center/100%;
  position: fixed;
  right: 3rem;
  bottom: 3.5rem;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  #page-top {
    width: 11.7rem;
  }
}
#page-top:hover {
  opacity: 1;
}
@media print, screen and (min-width: 768px) {
  #page-top:hover {
    bottom: 4rem;
    background-image: url(../img/common/page-top_w.svg);
  }
}
#page-top:not(.is-show) {
  bottom: -9.5rem;
}
@media only screen and (max-width: 767px) {
  #page-top:not(.is-show) {
    bottom: -13rem;
  }
}
@media only screen and (max-width: 767px) {
  #page-top.is-fixed {
    bottom: 19rem;
  }
}