@charset "UTF-8";
/*----------------------------------------------------------
 Reset
------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&family=Montserrat:ital,wght@0,600;0,700;1,400&family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
body, div, section, article, aside, nav,
h1, h2, h3, h4, h5, h6,
span, time, figure, figcaption,
p, blockquote, pre, address, code,
dl, dt, dd, ol, ul, li,
fieldset, form, legend, button,
table, tbody, thead, tfoot, tr, th, td {
  margin: 0;
  padding: 0;
  line-height: 1.5;
  word-break: break-all;
}

header, main, aside, footer, section {
  display: block;
}

h1, h2, h3, h4, h5, h6, th, td, small {
  font-size: 100%;
}

ul, ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

input,
select {
  vertical-align: middle;
}

em {
  font-style: normal;
}

button {
  background: none;
  border: none;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*----------------------------------------------------
	setting
----------------------------------------------------*/
/*
  mixin
*/
/*----------------------------------------------------
	basic
----------------------------------------------------*/
body {
  min-width: 1080px;
  color: #1d1d1d;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 250;
  font-family: 'Noto Sans JP', "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body {
    min-width: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 768px) {
  html, body {
    height: 100%;
  }
}

* {
  box-sizing: border-box;
}

a:link {
  color: #2f315b;
  text-decoration: none;
}
a:visited {
  color: #2f315b;
}
a:hover {
  color: #2f315b;
}
a:active {
  color: #0455b8;
}

br[data-show="sp"] {
  display: none;
}
@media screen and (max-width: 768px) {
  br[data-show="sp"] {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  br[data-show="pc"] {
    display: none;
  }
}

/*----------------------------------------------------
	layout
----------------------------------------------------*/
/*----------------------------------------------------
	header
----------------------------------------------------*/
.header {
  position: relative;
  z-index: 100;
}
.header__logo {
  position: absolute;
  top: -75px;
  left: -48px;
  width: 250px;
  height: 250px;
  background: #fff;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 34px;
  padding-right: 26px;
}
.header__logo img {
  width: 175px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    position: static;
    width: auto;
    height: auto;
    border-radius: 0;
    display: block;
    padding: 10px;
    text-align: center;
  }
  .header__logo img {
    width: 77px;
  }
}

/*----------------------------------------------------
	nav
----------------------------------------------------*/
.nav {
  position: relative;
  z-index: 1;
}
.nav-title {
  display: none;
}
.nav-list {
  display: flex;
  justify-content: space-between;
}
.nav-list li a {
  transition: .5s;
}
.nav-list li a:hover {
  opacity: .7;
}
@media screen and (max-width: 768px) {
  .nav-title {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 50px;
    height: 50px;
    background: #001564;
    font-size: 0;
  }
  .nav-title span {
    position: absolute;
    left: calc(50% - 48.84% / 2);
    display: block;
    width: 48.84%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: .3s;
  }
  .nav-title span:nth-of-type(1) {
    top: calc(29px / 2);
    top: 17px;
  }
  .nav-title span:nth-of-type(2) {
    top: calc(41px / 2);
    top: 24px;
  }
  .nav-title span:nth-of-type(3) {
    bottom: calc(29px / 2);
    bottom: 17px;
  }
  .nav-title.-active span:nth-of-type(1) {
    top: 28px;
    transform: rotate(45deg);
  }
  .nav-title.-active span:nth-of-type(2) {
    opacity: 0;
  }
  .nav-title.-active span:nth-of-type(3) {
    bottom: 20px;
    transform: rotate(-45deg);
  }
  .nav-list {
    flex-wrap: wrap;
  }
  .nav-list li {
    width: auto;
    margin-bottom: 7px;
    padding: 0;
  }
}

/*----------------------------------------------------
	main
----------------------------------------------------*/
.main {
  position: relative;
  z-index: 1;
}

/*----------------------------------------------------
	2column layout
----------------------------------------------------*/
.column-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 50px;
}
.column-wrap .main {
  width: 720px;
  margin-right: 45px;
  padding-top: 0;
}
.column-wrap .aside {
  width: 235px;
  padding-top: 13px;
}
.column-wrap .aside-title {
  margin-bottom: 35px;
  padding-left: 20px;
  border-left: 5px solid #000;
  font-size: 27px;
  font-size: 1.6875rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .column-wrap {
    /* ---------------------------SP */
    display: block;
    padding-top: 10px;
  }
  .column-wrap .main,
  .column-wrap .aside {
    width: auto;
  }
  .column-wrap .main {
    margin: 0 0 50px;
  }
  .column-wrap .aside {
    padding: 0;
  }
  .column-wrap .aside-title {
    margin-bottom: 20px;
    padding-left: 10px;
    border-left: 2px solid #000;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*----------------------------------------------------
	footer
----------------------------------------------------*/
.footer {
  padding-top: 100px;
  background: url(../img/share/bg_footer.png) center bottom no-repeat;
  background-size: 100% auto;
  text-align: center;
}
.footer .contents {
  position: relative;
  width: 600px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  background: #fff;
  border-radius: 100%;
}
.footer .contents:before, .footer .contents:after {
  position: absolute;
  bottom: 70px;
  content: "";
  display: block;
  width: 100px;
  height: 122px;
  background-repeat: no-repeat;
  background-size: contain;
}
.footer .contents:before {
  left: -60px;
  background-image: url(../img/share/shisa_l.svg);
}
.footer .contents:after {
  right: -60px;
  background-image: url(../img/share/shisa_r.svg);
}
.footer__logo {
  margin-bottom: 20px;
  font-family: 'Kiwi Maru', serif;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
}
.footer__address {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 2;
}
.footer .sns {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.footer .sns li {
  margin: 0 10px;
}
.footer .copyright {
  padding: 15px;
  background: #5dbaf6;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 50px;
    background: none;
  }
  .footer .contents {
    width: auto;
    margin-bottom: 0;
    padding-bottom: 40px;
    background: url(../img/share/bg_footer.png) center bottom no-repeat;
    background-size: 100% auto;
    border-radius: 0;
  }
  .footer .contents:before, .footer .contents:after {
    bottom: 0;
    width: 50px;
    height: 61px;
  }
  .footer .contents:before {
    left: 10px;
  }
  .footer .contents:after {
    right: 10px;
  }
  .footer__logo {
    margin-bottom: 10px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .footer__address {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .footer .sns li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 100%;
  }
  .footer .sns li img {
    width: 30px;
  }
}

/*----------------------------------------------------
	0.basic
----------------------------------------------------*/
.is-left {
  text-align: left;
}

.is-center {
  text-align: center;
}

.is-right {
  text-align: right;
}

.nav-list, .column-wrap {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .nav-list, .column-wrap {
    width: auto;
    margin: 0 10px;
  }
}

.contents {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}

/* リスト */
.list-ul {
  margin-bottom: 2em;
}
.list-ul li {
  padding-left: 1em;
}
.list-ul li:before {
  content: "・";
  margin-left: -1em;
}

.list-ol {
  margin-bottom: 2em;
}
.list-ol li {
  counter-increment: entry-ol;
  margin-bottom: 10px;
  padding-left: 1em;
}
.list-ol li:before {
  content: counter(entry-ol);
  margin-right: .2em;
  margin-left: -.8em;
}

.map {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (max-width: 768px) {
  .map-address {
    font-size: 18px;
    font-size: 1.125rem;
  }
  .map .googlemap {
    height: 300px;
  }
}

.section {
  padding: 100px 20px;
}
.section.-bg {
  background: #D0F5FF;
}
.section__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 40px;
  font-family: 'Kiwi Maru', serif;
  font-weight: 500;
  font-size: 46px;
  font-size: 2.875rem;
  text-align: center;
}
.section__title span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  font-size: 22px;
  font-size: 1.375rem;
}
.section__title span:before, .section__title span:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #000;
  border-radius: 2px;
  margin: 0 10px;
}
.section.-left {
  max-width: calc(100% - (50% - (1200px / 2)));
  width: calc(100% - 20px);
  margin-left: 0;
  margin-right: auto;
  padding-left: calc(50% - (1200px / 2) - 20px);
  border-left: solid transparent;
  border-left-width: calc(20px + 20px);
  background: #5dbaf6;
}
.section.-right {
  max-width: calc(100% - (50% - (1200px / 2)));
  width: calc(100% - 20px);
  margin-right: 0;
  margin-left: auto;
  padding-right: calc(50% - (1200px / 2) - 20px);
  border-right: solid transparent;
  border-right-width: calc(20px + 20px);
  background: #fff;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 50px 10px;
  }
  .section__title {
    margin-bottom: 40px;
    font-size: 24px;
    font-size: 1.5rem;
  }
  .section__title span {
    margin-top: 10px;
    font-size: 16px;
    font-size: 1rem;
  }
  .section__title span:before, .section__title span:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    margin: 0 10px;
  }
}

.column {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.column__text {
  width: 60%;
  padding-right: 30px;
}
.column__text p {
  margin-bottom: 1.5em;
  line-height: 2;
}
.column__img {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .column {
    display: block;
  }
  .column__text {
    width: auto;
    padding: 0;
  }
  .column__img {
    width: auto;
  }
}

.imgFrame {
  padding: 5px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.imgFrame span {
  display: block;
  padding: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  background: #fff;
  text-align: right;
}
.imgFrame.-rotate-6deg {
  transform: rotate(-6deg);
}
.imgFrame.-rotate10deg {
  transform: rotate(10deg);
}

/* img group */
.img-list.-imgSet2 {
  display: flex;
  justify-content: space-between;
}
.img-list.-imgSet2 li {
  width: calc(100% / 2 - 10px);
}
.img-list.-imgSet3 {
  display: flex;
  justify-content: space-between;
}
.img-list.-imgSet3 li {
  width: calc(100% / 3 - 10px);
}
.img-list.-imgSet5 {
  display: grid;
  grid-template-columns: 50% auto auto;
  grid-template-rows: auto auto;
  grid-gap: 8px;
}
.img-list.-imgSet5 li {
  width: auto;
}
.img-list.-imgSet5 li:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}
@media screen and (max-width: 768px) {
  .img-list.-imgSet2, .img-list.-imgSet3 {
    display: block;
  }
  .img-list.-imgSet2 li, .img-list.-imgSet3 li {
    width: auto;
    margin-bottom: 15px;
  }
  .img-list.-imgSet5 {
    grid-template-columns: auto auto;
    grid-template-rows: auto auto auto;
  }
  .img-list.-imgSet5 li:nth-of-type(1) {
    grid-column: 1 / 3;
    grid-row: 1;
  }
}

.box {
  margin-top: 50px;
  margin-bottom: 30px;
  padding: 0 50px 30px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}
.box__title {
  display: inline-block;
  transform: translateY(-50%);
  margin-left: -20px;
  padding: 10px 30px;
  background: #5dbaf6;
  font-family: 'Kiwi Maru', serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .box {
    padding: 0 30px 20px;
  }
  .box__title {
    margin-left: -15px;
    margin-bottom: -20px;
    padding: 10px 30px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}

.note {
  margin-bottom: 20px;
}
.note li {
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}

.sticker {
  position: relative;
  padding: 20px;
  background: #E6F4F1;
}
.sticker:before {
  position: absolute;
  bottom: 0;
  right: 7px;
  z-index: -1;
  transform: rotate(5deg);
  width: 70%;
  height: 20%;
  background-color: #d0d0d0;
  content: "";
  filter: blur(4px);
}
.sticker *:last-child {
  margin-bottom: 0;
}

.btn {
  text-align: center;
}
.btn a {
  display: block;
  max-width: 400px;
  margin: 0 auto;
  padding: 30px;
  background: #5dbaf6;
  border: 1px solid transparent;
  color: #fff;
  font-family: 'Kiwi Maru', serif;
  font-size: 24px;
  font-size: 1.5rem;
  transition: .3s;
}
.btn a:hover {
  color: #5dbaf6;
  border-color: #5dbaf6;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .btn a {
    padding: 20px;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

/*----------------------------------------------------
	top
----------------------------------------------------*/
.mainvisual {
  position: relative;
}
.mainvisual__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mainvisual__title {
    width: 300px;
  }
}

.top-catch {
  position: relative;
  padding: 200px 0 135px;
  text-align: center;
  background: url(../img/top/bg_catch2.png) no-repeat;
  background-size: cover;
  overflow: hidden;
}
.top-catch:after {
  position: absolute;
  right: -160px;
  bottom: 0;
  content: "";
  display: block;
  width: 400px;
  height: 165px;
  background: url(../img/top/rainbow2.svg) right bottom no-repeat;
  background-size: contain;
}
.top-catch__title {
  position: relative;
  display: inline-block;
  margin-bottom: 50px;
  font-family: 'Kiwi Maru', serif;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: 0.1em;
}
.top-catch__title:before {
  position: absolute;
  left: -40px;
  top: -30px;
  content: "";
  display: inline-block;
  width: 100px;
  height: 80px;
  background: url(../img/top/flower.svg) no-repeat;
  background-size: contain;
}
.top-catch p {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .top-catch {
    padding: 40px 0;
    background-size: cover;
  }
  .top-catch:after {
    right: -80px;
    width: 200px;
    height: 83px;
  }
  .top-catch__title {
    margin-bottom: 30px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  .top-catch__title:before {
    left: -20px;
    top: -15px;
    width: 50px;
    height: 40px;
  }
  .top-catch p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.room {
  margin-bottom: 50px;
}

.service {
  align-items: flex-start;
}
.service .column__img {
  width: 37%;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .service .column__img {
    width: 80%;
    margin: 30px auto 0;
  }
}

.price-section {
  display: flex;
}
.price-section__title {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  margin-right: -45px;
  background: #5dbaf6;
  font-family: 'Kiwi Maru', serif;
  font-size: 30px;
  font-size: 1.875rem;
  border-radius: 100%;
  text-align: center;
  font-weight: 500;
  color: #fff;
}
.price-section__title span {
  display: block;
}
.price-section:nth-of-type(2) .price-section__title {
  background: #03A6A6;
}
.price-section:nth-of-type(2) .priceList li .num {
  background: #03A6A6;
}
.price-section:nth-of-type(2) .priceList li .price:before {
  border-top-color: #03A6A6;
}
@media screen and (max-width: 768px) {
  .price-section {
    display: block;
    text-align: center;
  }
  .price-section__title {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: #5dbaf6;
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.priceList {
  position: relative;
  width: calc(100% - 200px);
  margin-top: 140px;
}
.priceList li {
  display: flex;
  align-items: center;
  margin: 0 auto 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #000;
  font-family: 'Kiwi Maru', serif;
}
.priceList li .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-right: 20px;
  background: #5dbaf6;
  color: #fff;
  border-radius: 100%;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 500;
  line-height: 1;
}
.priceList li .num div {
  line-height: 1;
}
.priceList li .num span {
  font-size: 20px;
  font-size: 1.25rem;
}
.priceList li .price {
  display: flex;
  align-items: center;
  width: calc(100% - 100px);
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
}
.priceList li .price span {
  flex-shrink: 0;
  margin-left: 20px;
}
.priceList li .price:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  border-top: 5px dotted #5dbaf6;
}
@media screen and (max-width: 768px) {
  .priceList {
    width: auto;
    margin-top: 30px;
  }
  .priceList li {
    margin: 0 auto 20px;
    padding: 20px;
  }
  .priceList li .num {
    width: 60px;
    height: 60px;
    margin-right: 20px;
    font-size: 32px;
    font-size: 2rem;
  }
  .priceList li .num span {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .priceList li .price {
    width: calc(100% - 60px);
    font-size: 24px;
    font-size: 1.5rem;
  }
  .priceList li .price span {
    flex-shrink: 0;
    margin-left: 20px;
  }
}

/*# sourceMappingURL=common.css.map */
