@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

@font-face {
  font-family: "Concept";
  src: url("Minion Condensed.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "zenoldmicho";
  src: url("ZenOldMincho-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  width: 100%;
  overflow-x: hidden;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 300;
  color: #333;
  position: relative;
}

.body.noscroll {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

.section_ttl {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  color: #0d5190;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
  font-size: 38px;
}
@media screen and (max-width: 600px) {
  .section_ttl {
    font-size: 28px;
    margin: 0 auto 48px;
  }
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

/*--------------- fv ---------------*/
.fv {
  width: 100%;
  height: 100vh;
  background-image: url(../img/fv.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 600px) {
  .fv {
    background-image: url(../img/fv_sp.webp);
  }
}

.fv_logo {
  width: 230px;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  top: 40px;
}
@media screen and (max-width: 1400px) {
  .fv_logo {
    width: 200px;
  }
}
@media screen and (max-width: 800px) {
  .fv_logo {
    width: 120px;
  }
}

.fv_btn {
  background-color: #fff;
  padding: 12px 60px 8px;
  border-radius: 100px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 40px;
  color: #0d5190;
  left: 80px;
  transition: all 0.4s;
  border: 1px solid #fff;
}
@media screen and (max-width: 1400px) {
  .fv_btn {
    left: 40px;
    padding: 12px 54px 8px;
  }
}
@media screen and (max-width: 800px) {
  .fv_btn {
    left: 16px;
    padding: 9px 32px 6px;
  }
}
@media screen and (max-width: 600px) {
  .fv_btn {
    display: none;
  }
}
.fv_btn:hover {
  background-color: #0d5190;
  color: #fff;
}

.fv_btn_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.fv_btn_inner span:nth-child(1) {
  font-family: "Concept", serif;
  font-size: 28px;
}
@media screen and (max-width: 1400px) {
  .fv_btn_inner span:nth-child(1) {
    font-size: 24px;
  }
}
@media screen and (max-width: 800px) {
  .fv_btn_inner span:nth-child(1) {
    font-size: 20px;
  }
}
.fv_btn_inner span:nth-child(2) {
  font-size: 14px;
  padding-bottom: 2px;
}
@media screen and (max-width: 1400px) {
  .fv_btn_inner span:nth-child(2) {
    font-size: 12px;
  }
}
@media screen and (max-width: 800px) {
  .fv_btn_inner span:nth-child(2) {
    font-size: 10px;
  }
}

/*--------------- cta ---------------*/
.cta_btn {
  display: none;
  background-color: #0d5190;
  padding: 12px 0 6px;
  border-radius: 100px;
  width: 90%;
  position: fixed;
  z-index: 100;
  bottom: 8px;
  color: #fff;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .cta_btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.cta_btn:hover {
  background-color: #0d5190;
  color: #fff;
}

.cta_btn_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.cta_btn_inner span:nth-child(1) {
  font-family: "Concept", sans-serif;
  font-size: 28px;
}
.cta_btn_inner span:nth-child(2) {
  font-size: 14px;
  padding-bottom: 4px;
}

/*--------------- concept ---------------*/
.concept {
  padding: 100px 0;
}

.concept_txt {
  font-size: 16px;
  line-height: 2.8;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .concept_txt {
    font-size: 14px;
  }
}

/*--------------- room ---------------*/
.room {
  background-image: url(../img/room_bg.webp);
  background-size: 100% 100%;
}

.room_bg {
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .room_bg {
    padding: 60px 0;
  }
}

.room_txt {
  font-size: 16px;
  line-height: 2.8;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 100px;
}
@media screen and (max-width: 600px) {
  .room_txt {
    font-size: 14px;
    margin: 0 auto 40px;
  }
}

.room_slider {
  padding-bottom: 40px;
  margin-bottom: 120px !important;
}
@media screen and (max-width: 600px) {
  .room_slider {
    padding-bottom: 16px;
    margin-bottom: 80px !important;
  }
}
.room_slider .slick-dots button:before {
  color: #0d5190;
  font-size: 20px;
}
@media screen and (max-width: 600px) {
  .room_slider .slick-dots button:before {
    font-size: 12px;
  }
}
.room_slider .slick-dots li.slick-active button:before {
  color: #0d5190;
  font-size: 20px;
}
@media screen and (max-width: 600px) {
  .room_slider .slick-dots li.slick-active button:before {
    font-size: 12px;
  }
}

.room_slider_item {
  padding: 0 60px;
}
@media screen and (max-width: 1400px) {
  .room_slider_item {
    padding: 0 40px;
  }
}
@media screen and (max-width: 600px) {
  .room_slider_item {
    padding: 0 20px;
  }
}

.room_slider_inner {
  background-image: url(../img/room_slider_bg.webp);
  background-size: 100% 100%;
  padding: 80px 80px 60px;
  border-radius: 40px;
  border: 1px solid #0d5190;
}
@media screen and (max-width: 1400px) {
  .room_slider_inner {
    padding: 60px 60px 40px;
  }
}
@media screen and (max-width: 800px) {
  .room_slider_inner {
    padding: 24px 12px 20px;
    border-radius: 10px;
  }
}

.room_slider_item img {
  aspect-ratio: 96/58;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 60px;
}
@media screen and (max-width: 1400px) {
  .room_slider_item img {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 800px) {
  .room_slider_item img {
    margin-bottom: 20px;
  }
}

.room_slider_item h3 {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  font-weight: 600;
  color: #0d5190;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 26px;
}
@media screen and (max-width: 800px) {
  .room_slider_item h3 {
    font-size: 20px;
  }
}

.room_slider .slick-prev {
  display: block;
  width: 80px;
  height: 80px;
  background-image: url(../img/prev_btn.webp);
  background-size: 100% 100%;
  left: 280px;
  z-index: 10;
}
@media screen and (max-width: 1400px) {
  .room_slider .slick-prev {
    left: 180px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .room_slider .slick-prev {
    left: 80px;
  }
}
@media screen and (max-width: 800px) {
  .room_slider .slick-prev {
    width: 40px;
    height: 40px;
    left: 8px;
  }
}
@media screen and (max-width: 600px) {
  .room_slider .slick-prev {
    width: 32px;
    height: 32px;
    left: 0;
  }
}
.room_slider .slick-prev::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-image: url(../img/prev_btn.webp);
  background-size: 100% 100%;
  left: 280px;
  z-index: 10;
}
@media screen and (max-width: 1400px) {
  .room_slider .slick-prev::before {
    left: 180px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .room_slider .slick-prev::before {
    left: 80px;
  }
}
@media screen and (max-width: 800px) {
  .room_slider .slick-prev::before {
    width: 40px;
    height: 40px;
    left: 8px;
  }
}
@media screen and (max-width: 600px) {
  .room_slider .slick-prev::before {
    width: 32px;
    height: 32px;
    left: 0;
  }
}
.room_slider .slick-prev:hover {
  opacity: 0.6;
}
.room_slider .slick-next {
  display: block;
  width: 80px;
  height: 80px;
  background-image: url(../img/next_btn.webp);
  background-size: 100% 100%;
  right: 280px;
  z-index: 10;
}
@media screen and (max-width: 1400px) {
  .room_slider .slick-next {
    right: 180px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .room_slider .slick-next {
    right: 80px;
  }
}
@media screen and (max-width: 800px) {
  .room_slider .slick-next {
    width: 40px;
    height: 40px;
    right: 8px;
  }
}
@media screen and (max-width: 600px) {
  .room_slider .slick-next {
    width: 32px;
    height: 32px;
    right: 0;
  }
}
.room_slider .slick-next::before {
  content: "";
  display: block;
  width: 80px;
  height: 80px;
  background-image: url(../img/next_btn.webp);
  background-size: 100% 100%;
  right: 280px;
  z-index: 10;
}
@media screen and (max-width: 1400px) {
  .room_slider .slick-next::before {
    right: 180px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .room_slider .slick-next::before {
    right: 80px;
  }
}
@media screen and (max-width: 800px) {
  .room_slider .slick-next::before {
    width: 40px;
    height: 40px;
    right: 8px;
  }
}
@media screen and (max-width: 600px) {
  .room_slider .slick-next::before {
    width: 32px;
    height: 32px;
    right: 0;
  }
}
.room_slider .slick-next:hover {
  opacity: 0.6;
}

.room_list {
  width: 86%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .room_list {
    width: 92%;
  }
}

.room_item {
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  .room_item {
    margin-bottom: 60px;
  }
}
.room_item:last-child {
  margin-bottom: 0;
}

.room_top .room_top_img {
  width: 140px;
  margin: 0 auto 54px;
}
@media screen and (max-width: 600px) {
  .room_top .room_top_img {
    width: 90px;
    transform: none;
    margin-left: 0;
    margin-bottom: 24px;
  }
}

.room_item:nth-child(even) .room_photo {
  order: -2;
}
@media screen and (max-width: 1200px) {
  .room_item:nth-child(even) .room_photo {
    order: 1;
  }
}
.room_item:nth-child(even) .room_inner {
  grid-template-columns: 54% 46%;
}
@media screen and (max-width: 1200px) {
  .room_item:nth-child(even) .room_inner {
    grid-template-columns: 100%;
  }
}
.room_item:nth-child(even) .room_des {
  padding-top: 120px;
  padding-left: 48px;
}
@media screen and (max-width: 1200px) {
  .room_item:nth-child(even) .room_des {
    padding-top: 0;
    padding-bottom: 40px;
    padding-right: 0;
    padding-left: 40px;
  }
}

.room_top {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .room_top {
    margin: 0 0 32px;
  }
}
.room_top img {
  width: 310px;
  margin: 0 auto 12px;
}
@media screen and (max-width: 600px) {
  .room_top img {
    width: 200px;
    margin-left: 0;
    transform: translateX(-10px);
  }
}
.room_top span {
  color: #0d5190;
  font-family: "zenoldmicho", serif;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 38px;
}
@media screen and (max-width: 600px) {
  .room_top span {
    font-size: 28px;
    margin-left: 0;
  }
}

.room_content {
  padding: 40px 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .room_content {
    padding: 20px 0;
  }
}

.room_line {
  height: 100%;
  width: 1px;
  border: 1px dashed #0d5190;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
@media screen and (max-width: 1200px) {
  .room_line {
    left: 12px;
    transform: none;
  }
}
.room_line::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #0d5190;
  border-radius: 100px;
  left: 50%;
  transform: translateX(-50%);
  top: -8px;
  position: absolute;
}
@media screen and (max-width: 600px) {
  .room_line::before {
    width: 10px;
    height: 10px;
    top: -5px;
  }
}
.room_line::after {
  content: "";
  width: 16px;
  height: 16px;
  background-color: #0d5190;
  border-radius: 100px;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  position: absolute;
}
@media screen and (max-width: 600px) {
  .room_line::after {
    width: 10px;
    height: 10px;
    bottom: -5px;
  }
}

.room_inner {
  display: grid;
  grid-template-columns: 46% 54%;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 1200px) {
  .room_inner {
    grid-template-columns: 100%;
  }
}

.room_des {
  padding-top: 120px;
  padding-right: 48px;
}
@media screen and (max-width: 1200px) {
  .room_des {
    padding-top: 0;
    padding-bottom: 40px;
    padding-right: 0;
    padding-left: 40px;
  }
}

.room_des h3 {
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  color: #0d5190;
  font-size: 28px;
  line-height: 1.8;
  margin-bottom: 32px;
}
@media screen and (max-width: 600px) {
  .room_des h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.room_des p {
  font-size: 16px;
  line-height: 2.8;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .room_des p {
    font-size: 14px;
  }
}

.room_photo img {
  aspect-ratio: 3/1.8;
  -o-object-fit: cover;
     object-fit: cover;
}

.room_photo_main {
  margin-bottom: 12px;
}
@media screen and (max-width: 600px) {
  .room_photo_main {
    margin-bottom: 4px;
  }
}

.room_photo_nav {
  margin: 0 -5px;
  /* スライド間の余白分を打ち消す */
}
@media screen and (max-width: 600px) {
  .room_photo_nav {
    margin: 0 -2px;
  }
}

.room_photo_nav .slick-slide {
  padding: 0 5px;
  box-sizing: border-box;
}
@media screen and (max-width: 600px) {
  .room_photo_nav .slick-slide {
    padding: 0 2px;
  }
}

.room_photo_main .slick-prev {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../img/prev_btn2.webp);
  background-size: 100% 100%;
  left: 8px;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .room_photo_main .slick-prev {
    width: 32px;
    height: 32px;
  }
}
.room_photo_main .slick-prev::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../img/prev_btn2.webp);
  background-size: 100% 100%;
  left: 8px;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .room_photo_main .slick-prev::before {
    width: 32px;
    height: 32px;
  }
}
.room_photo_main .slick-prev:hover {
  opacity: 0.6;
}
.room_photo_main .slick-next {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../img/next_btn2.webp);
  background-size: 100% 100%;
  right: 8px;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .room_photo_main .slick-next {
    width: 32px;
    height: 32px;
  }
}
.room_photo_main .slick-next::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../img/next_btn2.webp);
  background-size: 100% 100%;
  right: 8px;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  .room_photo_main .slick-next::before {
    width: 32px;
    height: 32px;
  }
}
.room_photo_main .slick-next:hover {
  opacity: 0.6;
}

.room_menu_btn {
  font-size: 26px;
  font-family: "zenoldmicho", serif;
  color: #0d5190;
  padding: 18px 120px 18px 80px;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border: 1px solid #0d5190;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .room_menu_btn {
    font-size: 18px;
    padding: 18px 90px 18px 72px;
  }
}
.room_menu_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  background-image: url(../img/plus_icon.webp);
  background-size: 100% 100%;
  display: block;
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 600px) {
  .room_menu_btn::after {
    width: 18px;
    height: 18px;
  }
}

.menu_bg {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.2);
  width: 100%;
  height: 100vh;
  z-index: -4;
  display: none;
}

.menu_bg.active {
  z-index: 200;
  display: block;
}

.menu_pop.active {
  display: block;
}

.menu_pop {
  width: 72%;
  height: 94%;
  background-color: #fff;
  padding: 40px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
@media screen and (max-width: 1200px) {
  .menu_pop {
    width: 90%;
  }
}
@media screen and (max-width: 600px) {
  .menu_pop {
    padding: 24px 12px;
    width: 94%;
  }
}

.menu_close {
  width: 60px;
  position: absolute;
  top: -12px;
  right: -24px;
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .menu_close {
    width: 42px;
    right: -8px;
    top: -8px;
  }
}

.menu_content {
  width: 100%;
  height: calc(100% - 84px);
  overflow-y: scroll;
  border: 1px solid #333;
  margin-bottom: 24px;
}
@media screen and (max-width: 800px) {
  .menu_content {
    height: calc(100% - 72px);
  }
}
@media screen and (max-width: 600px) {
  .menu_content {
    height: calc(100% - 64px);
  }
}

.menu_btn {
  font-size: 26px;
  font-family: "zenoldmicho", serif;
  color: #0d5190;
  border-top-left-radius: 16px;
  border-bottom-right-radius: 16px;
  border: 1px solid #0d5190;
  width: 320px;
  height: 60px;
  position: relative;
  cursor: pointer;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .menu_btn {
    font-size: 20px;
    width: 240px;
    height: 48px;
  }
}
@media screen and (max-width: 600px) {
  .menu_btn {
    font-size: 18px;
    width: 200px;
    height: 40px;
  }
}

/*--------------- info ---------------*/
.info {
  padding: 100px 0;
}
@media screen and (max-width: 600px) {
  .info {
    padding: 60px 0;
  }
}

.info_list {
  display: flex;
  flex-direction: row;
  gap: 80px;
  justify-content: center;
  margin: 0 auto 100px;
}
@media screen and (max-width: 1200px) {
  .info_list {
    gap: 40px;
  }
}
@media screen and (max-width: 1000px) {
  .info_list {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 60px;
  }
}

.info_item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: center;
}

.info_txt {
  line-height: 1.5;
}
.info_txt a {
  color: #0000ff;
}

.info_map {
  height: 780px;
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  .info_map {
    height: 540px;
    margin-bottom: 60px;
  }
}
.info_map iframe {
  width: 100%;
  height: 100%;
}

.info_link {
  background-image: url(../img/info_link_bg.webp);
  background-size: cover;
  display: block;
  width: 900px;
  margin: 0 auto;
  padding: 90px 40px;
  position: relative;
  transition: all 0.4s;
  max-width: 92%;
}
@media screen and (max-width: 600px) {
  .info_link {
    padding: 60px 20px;
  }
}
.info_link:hover {
  opacity: 0.6;
}

.info_link_arrow {
  width: 80px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
}
@media screen and (max-width: 600px) {
  .info_link_arrow {
    width: 60px;
    position: static;
    transform: none;
  }
}

.info_link_top {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .info_link_top {
    grid-template-columns: 60px 1fr;
  }
}
.info_link_top h3 {
  color: #fff;
  font-family: "zenoldmicho", serif;
  font-size: 42px;
}
@media screen and (max-width: 600px) {
  .info_link_top h3 {
    font-size: 32px;
  }
}

.info_link_txt {
  color: #fff;
  font-size: 15px;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .info_link_txt {
    margin-bottom: 40px;
    font-size: 14px;
  }
}

/*--------------- footer ---------------*/
.footer {
  padding: 60px 0 120px;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 40px 0 120px;
  }
}

.footer_logo {
  width: 200px;
  margin: 0 auto 36px;
}

.footer h2 {
  color: #0d5190;
  font-family: "zenoldmicho", serif;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  font-size: 20px;
}
@media screen and (max-width: 600px) {
  .footer h2 {
    font-size: 13px;
  }
}

.footer small {
  color: #0d5190;
  font-family: "zenoldmicho", serif;
  font-size: 13px;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
}

.footer_address {
  font-size: 13px;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  line-height: 1.5;
  color: #0d5190;
}

.footer_btn {
  display: block;
  padding: 10px 32px 13px;
  border-radius: 100px;
  border: 1px solid #0d5190;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  color: #0d5190;
  transition: all 0.4s;
}

.footer_btn:hover {
  background-color: #0d5190;
  color: #fff;
}

.footer_btn_inner {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
}

.footer_btn_inner span:nth-child(1) {
  font-family: "zenoldmicho", serif;
  font-size: 16px;
}
.footer_btn_inner span:nth-child(2) {
  font-size: 12px;
}

.footer_link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
@media screen and (max-width: 800px) {
  .footer_link {
    flex-direction: column;
    gap: 16px;
  }
}

.footer_link_a {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 4px;
}
.footer_link_a span {
  color: #0d5190;
  font-size: 13px;
  font-weight: 600;
}

.footer_link_policy {
  font-size: 13px;
  color: #0d5190;
  font-family: "zenoldmicho", serif;
  line-height: 1.5;
  border-bottom: 1px solid #0d5190;
}/*# sourceMappingURL=index.css.map */