@charset "utf-8";

/* reset
----------------------------------------------------------*/
*, *:before, *:after { box-sizing:border-box; }

html, body, h1, h2, h3, h4, h5, h6,
ul, ol, li, dl, dt, dd,
figure, figcaption, form, textarea,
blockquote, fieldset, legend {
  margin: 0;
  padding: 0;
  border: none;
}

h1, h2, h3, h4, h5, h6 { font-size:100%; font-weight:normal; }

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section, summary { display: block; }

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

img { max-width:100%; height:auto; font-size:0; line-height:0; vertical-align:bottom; border-width:0; }

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

input , button , textarea , select { font:inherit; }
button { margin:0; padding:0; border:none; border-radius:0; background:none; -webkit-appearance:none; cursor:pointer; }
button:focus { outline:none; }

input[type="submit"],
input[type="button"],
input[type="reset"] {
  cursor: pointer;
}

/* base
----------------------------------------------------------*/
html, body { min-height: 100vh; }

html {
  font-family:
  'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic",
  "メイリオ", "Meiryo","ヒラギノ角ゴ Pro W3",
  "Hiragino Kaku Gothic Pro", Osaka, sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .08em;
  color: #000000;
  line-height: 1.7;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-font-variant-ligatures: none;
  font-variant-ligatures: none;
}

.font-en { font-family: 'Raleway', sans-serif; }

.font-serif {
  font-family: "游明朝", "Yu Mincho", YuMincho,
  "ヒラギノ明朝 ProN W6", "HiraMinProN-W6",
  "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

a { color: #000; text-decoration:none; }
a:not([class]) { text-decoration:underline; }
a:not(.fade), .anime { -webkit-transition:all .5s; transition:all .5s; }
a:not([class]):hover, a:not([class]):focus { text-decoration:none; }

.clearfix:after { content:""; display:block; clear:both; }

.fl-l { float:left; }
.fl-r { float:right; }

.txt-l { text-align:left; }
.txt-c { text-align:center; }
.txt-r { text-align:right; }
.txt-j { text-align:justify; }

.va-top  { vertical-align:top; }
.va-mid  { vertical-align:middle; }
.va-btm  { vertical-align:bottom; }
.va-base { vertical-align:baseline; }

.fw-mid { font-weight:500; }
.fw-b   { font-weight:bold; }

.fz-small { font-size:.85em; }
.fz-big { font-size:1.2em; }

.fs-italic { font-style:italic; }
.ws-nowrap { white-space: nowrap; }
.marker { background:linear-gradient(transparent 45%, #fcf5bb 0%); }
.indent { padding-left:1em; text-indent:-1em; }

.wide   { width: 100%; }

.pos-r { position:relative; }

.iblock { display:inline-block; }
.block  { display:block; }
.hide   { display:none; }

.li-disc, .li-decimal { padding-left:1.5em; }
.li-disc { list-style:disc; }
.li-decimal { list-style:decimal; }

.flex         { display:-webkit-flex; display:flex; -webkit-flex-wrap:wrap; flex-wrap:wrap; }
.flex-between { -webkit-justify-content:space-between;  justify-content:space-between;  }
.flex-center  { -webkit-justify-content:center; justify-content:center; }
.flex-align-center { -webkit-box-align:center; -webkit-align-items:center; align-items:center; }

.shadow { box-shadow:0 0 3px rgba(0,0,0,0.3); }

.bg-blu { background:#a1dae1; }
.bg-wht { background:#fff; }
.color-blu { color:#64bac5; }
.color-pnk { color:#ea5792; }
.txt-underline { text-decoration:underline; }
.link-txt { font-weight:bold; text-decoration:underline; }
.link-txt:hover { text-decoration: none; }

.is-fixed { position:fixed; top:0; right:0; bottom:0; left:0; }

.link-disabled { cursor:default; pointer-events:none; opacity:0.6; }

/* 1025px 以上  */
@media screen and (min-width: 1025px) {
  /* hover scale */
  a .hv-scale { -webkit-transition:all .5s ease-out; transition:all .5s ease-out; }
  a:hover .hv-scale  { -webkit-transform: scale(1.05); transform: scale(1.05); }
}
/* 600px 以上  */
@media screen and (min-width: 768px) {
  .txt-v {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}


/* layout ------ */
#wrapper { position:relative; overflow:hidden; min-height:100%; }
.inner { max-width:1000px; width:100%; margin:0 auto; }
.narrow-inner { max-width:810px; width:100%; margin:0 auto; }

#main { display:block; }

/* 960px 以上 (PC・タブレット横) */
@media screen and (min-width: 960px) {
  .pc-none { display: none; }

}
/* 600px 以上 (PC・タブレット) */
@media screen and (min-width: 600px) {
.sp-only { display: none; }
}

/* 1024px 以下 (タブレット横以下) */
@media screen and (max-width: 1024px) {
  .inner { margin:0 40px; width:auto; }
  .inner .narrow-inner { margin:0; }
}

/* 959px 以下 (タブレット縦以下) */
@media screen and (max-width: 959px) {
  .pc-only { display:none; }
  .narrow-inner { width:auto; margin:0 40px; }

}

/* 599px 以下 (スマホ)  */
@media screen and (max-width: 599px) {
  html { font-size:13px; }
  .inner, .narrow-inner { margin:0 20px; }
  .inner .narrow-inner { margin:0; }

  .sp-none { display:none; }
  .sp-only { display:block; }
}

/* 340px 以下 (スマホ)  */
@media screen and (max-width: 340px) {
  .inner, .narrow-inner { margin:0 15px; }
  .inner .narrow-inner { margin:0; }
}

/* common
----------------------------------------------------------*/
/* contact-btn */
.g-contact-btn {
  position: relative;
  display: inline-block;
  padding: .5em 2.7em .45em 1.5em;
  text-align: center;
  text-decoration: none;
  font-size: 1.2857rem;
  font-weight: bold;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 0 18px rgba(123, 162, 167, .3);
}
.g-contact-btn:before {
  content: "";
  display: inline-block;
  width: 1.333em;
  height: 1.333em;
  margin-right: .889em;
  vertical-align: -.3em;
  background: url(../img/common/icon-mail.svg) no-repeat center / 100%;
}
.g-contact-btn:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1.278em;
  width: 1em;
  height: 1em;
  margin: auto 0;
  background: url(../img/common/icon-arrow-blu.svg) no-repeat center / 100%;
  -webkit-transition:all .3s ease-out; transition:all .3s ease-out;
}
.g-contact-btn:hover:after {
  right: .9em;
}

/* tel */
.g-tel {
  text-align: center;
  font-weight: bold;
  font-size: .8571rem;
  letter-spacing: .05em;
  line-height: 1.4;
}
.g-tel .time {
  font-family: 'Raleway', sans-serif;
  font-size: 1.333em;
}
.g-tel .note {
  font-size: .917em;
}
.g-tel-num {
  font-size: 1.4286rem;
  font-weight: bold;
  font-family: 'Raleway', sans-serif;
  letter-spacing: .08em;
}


/* header
----------------------------------------------------------*/
.g-header {
  position: relative;
  z-index: 2;
  padding:17px 0 38px;
  background: #a1dae1;
}
.g-header-contact {
  padding-top:6px;
  -webkit-box-align: start;
  align-items: flex-start;
}
.g-header-contact dt {
  margin-right: .875em;
  padding: 1.1em 3.3em .7em 1.2em;
  font-size: 1.1429rem;
  font-weight: bold;
  line-height: 1.4;
  border: 2px solid #ffffff;
  border-radius: 14px;
  background: url(../img/common/illust-girl.svg) no-repeat right 5px bottom;
}
.g-header-contact .charge {
  display: block;
  margin-top: .7em;
  font-size: .75em;
  letter-spacing: .05em;
}
.g-header-contact .charge span {
  font-size: .917em;
}
.g-header-contact .tel {
  margin: 4px 0 0;
}

.menu-btn {
  display: none;
}

/* gnav */
.g-nav {
  font-size: 1.2857rem;
  font-weight: bold;
  line-height: 1.4;
}
.g-nav .g-header-contact {
  display: none;
}
.g-nav-list a {
  display: block;
  text-decoration: none;
}


/* footer
----------------------------------------------------------*/
.g-footer {
  background: #a1dae1;
}
.g-footer-wrap {
  position: relative;
  padding: 45px 0 34px;
}

.g-footer-logo {
  position: absolute;
  right: 0;
  bottom: -39px;
}

.g-footer-box {
  width: 255px;
}

.g-footer-contact {
  margin-bottom: 1em;
  text-align: center;
}
.g-footer-contact dt {
  margin-bottom: .4em;
  font-size: 1.2857rem;
  font-weight: bold;
  line-height: 1.4;
}
.g-footer-contact dt span {
  display: block;
  color: #ea5792;
  font-size: .778em;
}
.g-footer-contact .g-tel {
  margin: 5px 0 3px;
  white-space: nowrap;
}
.g-footer-contact .charge {
  margin: 0;
  font-size: .9143rem;
  font-weight: bold;
  line-height: 1.5;
}
.g-footer-contact .charge span {
  font-size: .938em;
}

.g-footer-info {
  text-align: center;
}
.g-footer-info .hours {
  margin: 0;
  color: #ea5792;
  font-size: 1.0714rem;
  font-weight: bold;
  letter-spacing: .05em;
  white-space: nowrap;
}
.g-footer-info .hours span {
  font-size: 1.267em;
}
.g-footer-info .address {
  margin: 0 0 .5em;
  font-weight: bold;
  font-size: .9286rem;
  letter-spacing: .01em;
  white-space: nowrap;
}
.g-footer-info .btn-gmap a {
  display: block;
  box-shadow: 0 0 18px rgb(123 162 167 / 30%);
}

.g-footer-nav {
  width: 60%;
}
.g-footer-nav > li + li {
  margin-left: 1.5em;
}
.g-footer-nav ul li {
  margin-bottom: .9em;
}
.g-footer-nav a {
  display: block;
  font-weight: bold;
  text-decoration: none;
}
.g-footer-nav a:hover {
  text-decoration: none;
  color: #ea5792;
}

.g-copyright {
  padding: 4.5em 0 .8em;
  text-align: right;
  font-size: 10px;
  line-height: 1.4;
  background-size: auto auto;
  background-color: rgba(255, 255, 255, 0);
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 7px, rgba(239, 235, 197, 1) 7px, rgba(239, 235, 197, 1) 12px );
}
#pagetop {
  position: absolute;
  top: -48px;
  right: 0;
}
#pagetop a {
  display: block;
}
#pagetop a:hover {
  transform: translateY(-5px);
}

/* レスポンシブ
----------------------------------------------------------*/
/* 960px 以上 */
@media screen and (min-width: 960px) {
  .sitename {
    max-width: 463px;
    -webkit-box-flex: 1;
    flex: 1;
    margin-right: 20px;
  }
  .g-header:after {
    content: "";
    position: absolute;
    top: 99%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10.57vw 100vw 0 0;
    border-color: #a1dae1 transparent transparent transparent;
  }

  /* header ----- */
  .g-nav {
    position: absolute;
    top:100%;
    left: 0;
    right: 0;
    z-index: 2;
    margin-top: -20px;
  }
  .g-nav-wrap {
    padding: 1em 1.5em;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 0 18px rgba(123, 162, 167, .3);
  }
  .g-nav:after {
    content: "";
    position: absolute;
    top: 40px;
    bottom: -18px;
    left: -16px;
    right: -16px;
    z-index: -1;
    border-radius: 0 0 9px 9px;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 0);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 7px, rgba(239, 235, 197, 1) 7px, rgba(239, 235, 197, 1) 12px );
  }
  .g-nav-list {
    justify-content: space-around;
  }
  .g-nav-list a {
    padding: .251em 1em;
  }
  .g-nav-list a:hover {
    color: #ea5792;
    text-decoration: none;
  }

}

/* 959px 以下 (タブレット縦以下) */
@media screen and (max-width: 959px) {
  /* header ----- */
  .g-header {
    padding: 0;
  }
  .g-header > .inner.flex {
    margin: 0;
    -webkit-box-align: center;
    align-items: center;
  }
  .sitename {
    width: 230px;
    margin-left: 16px;
  }
  .g-header-contact {
    display: none;
  }
  .g-header:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: -1;
    height: 15px;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 0);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(243, 236, 196, 1) 4px, rgba(243, 236, 196, 1) 7px );
  }

  /* gnav */
  .g-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 85px 15px 15px;
    background: #a1dae1;
  }
  .g-nav:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: .2;
    background: url(../img/common/logo-en.svg) repeat left 60% top -10% / 120%;
  }
  .g-nav-wrap {
    height: 100%;
    overflow-y: auto;
  }
  .g-nav-list {
    display: block;
  }
  .g-nav-list li {
    margin-bottom: 1em;
  }
  .g-nav-list a {
    display: block;
    padding: .5em 0;
    text-align: center;
  }

  /* contact */
  .g-nav .g-header-contact {
    display: block;
  }
  .g-header-contact {
    max-width:330px;
    margin: 0 auto;
  }
  .g-header-contact dt {
    max-width: 330px;
    margin: 0 auto 1em;
    padding-top: 1.4em;
    padding-bottom: 1.2em;
  }
  .g-header-contact dd {
    text-align: center;
  }
  .g-header-contact .tel {
    margin-top: 10px;
  }
  .g-header-contact .contact a {
    display: block;
  }

  /* fadein */
  .g-nav-list li,
  .g-nav .g-header-contact {
    opacity: 0;
    -webkit-transition: all .5s ease-out;
    transition: all .5s ease-out;
    -webkit-transform: translateY(-1.2em);
    transform: translateY(-1.2em);
  }

  .g-nav.is-open li,
  .g-nav.is-open .g-header-contact {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  .g-nav-list li:nth-child(1) { -webkit-transition-delay:.1s; transition-delay:.1s; }
  .g-nav-list li:nth-child(2) { -webkit-transition-delay:.2s; transition-delay:.2s; }
  .g-nav-list li:nth-child(3) { -webkit-transition-delay:.3s; transition-delay:.3s; }
  .g-nav-list li:nth-child(4) { -webkit-transition-delay:.4s; transition-delay:.4s; }
  .g-nav-list li:nth-child(5) { -webkit-transition-delay:.5s; transition-delay:.5s; }
  .g-nav.is-open .g-header-contact { -webkit-transition-delay:.6s; transition-delay:.6s;}


  /* .menu-btn */
  .menu-btn {
    float: right;
    position: relative;
    z-index: 9999;
    width: 72px;
    height: 72px;
    padding: 18px 10px 10px;
    text-align: center;
    cursor: pointer;
    background:#fff;
  }
  .menu-btn:focus {
    background:#fff;
  }
  .menu-btn,
  .menu-btn span {
    display: block;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }

  .menu-bar {
    position: relative;
    width: 36px;
    height: 20px;
    margin: 0 auto;
  }
  .menu-bar:before,
  .menu-bar:after,
  .menu-bar > span {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    content: "";
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    background: #000;
  }

  .menu-bar:before {
    top: 0;
  }
  .menu-bar > span {
    top: 9px;
  }
  .menu-bar:after {
    bottom: 0;
  }

  .menu-btn.is-open .menu-bar:before {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-35deg);
  }
  .menu-btn.is-open .menu-bar > span {
    opacity: 0;
  }
  .menu-btn.is-open .menu-bar:after {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(35deg);
  }
  .menu-btn .label {
    width: auto;
    height: auto;
    margin: 12px 0 0;
    color: #000;
    font-size: 10px;
    line-height: 1;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-family: 'Raleway', sans-serif;
  }

  /* footer */
  .g-footer-wrap {
    padding-bottom: 0;
  }
  .g-footer-logo {
    width: 100%;
    margin: 40px 0 -40px;
    position: static;
    text-align: center;
  }

  .g-footer-nav {
    overflow: hidden;
    display: block;
    -webkit-box-flex: 1;
    flex: 1;
    margin-left: 10%;
  }

  .g-footer-nav ul li {
    float: left;
    width: 48%;
  }
  .g-footer-nav > li + li {
    margin-left: 0;
  }
  .g-copyright {
    text-align: center;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(243, 236, 196, 1) 4px, rgba(243, 236, 196, 1) 7px );
  }
}

/* 599x 以下 (スマホ)  */
@media screen and (max-width: 599px) {

  /* header ----- */
  .g-header-contact {
    max-width: 290px;
  }

  /* footer ------------ */
  .g-footer-wrap {
    display: block;
  }
  .g-footer-box {
    width: 100%;
    margin-bottom: 30px;
  }
  .g-footer-nav {
    position: relative;
    width: 100%;
    padding: 2em 0 1.5em;
    margin-left: 0;
  }
  .g-footer-nav:before,
  .g-footer-nav:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 10px;
    border-radius: 5px;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 0);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 4px, rgba(243, 236, 196, 1) 4px, rgba(243, 236, 196, 1) 7px );
  }
  .g-footer-nav:before {
    top: 0;
  }
  .g-footer-nav:after {
    bottom: 0;
  }
}

/* 340px 以下 (スマホ)  */
@media screen and (max-width: 340px) {
  .sitename {
    width: 200px;
  }
}
