@charset "UTF-8";
/**************************************

main.scss

***************************************/
/* ---------------------------------------------------------
foundation
----------------------------------------------------------*/
/**************************************

reset.scss

***************************************/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
}

h1, h2, h3, h4, h5, h6, td, th, p, ul, li, dt, dd {
  font-size: 1em;
}

ul li {
  list-style: none;
}

ol li {
  list-style: none;
}

article, header, footer, aside, figure, figcaption, nav, section {
  display: block;
}

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

body {
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

img {
  vertical-align: bottom;
}

/**************************************

webfont.scss

***************************************/
/* ---------------------------------------------------------
webfont
----------------------------------------------------------*/
/*-- Balqis --*/
/**************************************

variables.scss

***************************************/
/* ---------------------------------------------------------
utility用
----------------------------------------------------------*/
/* ---------------------------------------------------------
break point
----------------------------------------------------------*/
/* ---------------------------------------------------------
color
----------------------------------------------------------*/
/* ---------------------------------------------------------
font family
----------------------------------------------------------*/
/**************************************

mixins.scss

***************************************/
/* ---------------------------------------------------------
media queries
----------------------------------------------------------*/
/* ---------------------------------------------------------
clearfix
----------------------------------------------------------*/
/* ---------------------------------------------------------
font-size
----------------------------------------------------------*/
/* ---------------------------------------------------------
opacity
----------------------------------------------------------*/
/* ---------------------------------------------------------
border-radius
----------------------------------------------------------*/
/* ---------------------------------------------------------
transform
----------------------------------------------------------*/
/*-- translate--*/
/*-- translateY--*/
/*-- translateX--*/
/* ---------------------------------------------------------
backface-visibility
----------------------------------------------------------*/
/**************************************

function.scss

***************************************/
/*------------------------------------------------
     wCon($width, $parentWidth : $columnWidth);

    幅の計算 (x / y * 100) をしてくれる関数

    property : wCon(%にしたいwidth, 直近の親要素のwidth※デフォルトはコンテンツ幅;


    [例1] コンテンツ幅(1024px)が直近の親要素の285pxの要素
    ●Sass   width : wCon(285);
    ●css    width : 27.83203%;

    [例2] 550pxが直近の親要素の380pxの要素
    ●Sass   width : wCon(380,550);
    ●css    width : 69.09091%;

    maginも同様

------------------------------------------------*/
/**************************************

base.scss

***************************************/
/* ---------------------------------------------------------
初期設定
----------------------------------------------------------*/
html {
  color: #333;
  background-color: #ffffff;
  font-size: 16px;
  line-height: 1.75;
}
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  height: 100%;
  color: #333;
}

a {
  text-decoration: none;
  color: #333;
}
a:hover {
  opacity: 0.8;
  transition: opacity 0.4s;
}

img {
  max-width: 100%;
  height: auto;
}

img[src$=".svg"] {
  width: 100%;
}

/* ---------------------------------------------------------
layout
----------------------------------------------------------*/
/**************************************

common.scss

***************************************/
/* ---------------------------------------------------------
大枠のレイアウト
----------------------------------------------------------*/
.wrap {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
.wrap img {
  width: 100%;
  height: auto;
}

.maxWrap {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}

.container {
  width: 84.615%;
  max-width: 660px;
  margin: 0 auto;
}

.outer {
  width: 89.7435897436%;
  max-width: 700px;
  margin: 0 auto;
}

.inner {
  width: 94.2857142857%;
  max-width: 660px;
  margin: 0 auto;
}

.innerSmall {
  width: 88.5714285714%;
  max-width: 620px;
  margin: 0 auto;
}

.hero__schedule {
  background-color: #daf2ed;
  padding: 5px 0 30px;
}
.hero__schedule .hero__scheduleTit {
  color: #00b097;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}
.hero__schedule .hero__scheduleItems .hero__scheduleItem {
  border: 2px solid #00b097;
  border-radius: 10px;
  padding: 20px 0;
  background-color: #ffffff;
  margin-bottom: 10px;
}
.hero__schedule .hero__scheduleItems .hero__scheduleItem:last-child {
  margin-bottom: 0;
}
.hero__schedule .hero__scheduleItems .hero__scheduleItem .hero__scheduleItem__tit {
  color: #00b097;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.5;
}
.hero__schedule .hero__scheduleItems .hero__scheduleItem .hero__scheduleItem__date {
  color: #333333;
  font-size: 24px;
  font-weight: bold;
}
.hero__schedule .hero__scheduleBtn {
  margin-top: 15px;
}
.hero__schedule .hero__scheduleBtn a {
  width: 85.7142857143%;
  max-width: 600px;
}

/**************************************

header.scss

***************************************/
/* ---------------------------------------------------------

----------------------------------------------------------*/
/*--  --*/
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 94px;
  background-color: #fff;
  z-index: 999;
}
@media screen and (max-width: 640px) {
  .header {
    height: 69px;
  }
}
.header .header__inner {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header .header__logo {
  width: 69px;
}
@media screen and (max-width: 640px) {
  .header .header__logo {
    width: 46px;
  }
}
.header .header__nav .header__navList {
  display: -webkit-flex;
  display: flex;
}
.header .header__nav .header__navList .header__navItem {
  margin-right: 10px;
}
.header .header__nav .header__navList .header__navItem:last-child {
  margin-right: 0;
}
.header .header__nav .header__navList .header__navItem--tel {
  width: 72px;
}
@media screen and (max-width: 640px) {
  .header .header__nav .header__navList .header__navItem--tel {
    width: 48px;
  }
}
.header .header__nav .header__navList .header__navItem--contact {
  width: 132px;
}
@media screen and (max-width: 640px) {
  .header .header__nav .header__navList .header__navItem--contact {
    width: 88px;
  }
}

/**************************************

footer.scss

***************************************/
/* ---------------------------------------------------------

----------------------------------------------------------*/
/*--  --*/
/**************************************

main.scss

***************************************/
/* ---------------------------------------------------------

----------------------------------------------------------*/
/*-- 状態変化など --*/
.main {
  margin-top: 94px;
}
@media screen and (max-width: 640px) {
  .main {
    margin-top: 69px;
  }
}

/* ---------------------------------------------------------
object
----------------------------------------------------------*/
/*-- component --*/
/**************************************

component.scss

***************************************/
/* ---------------------------------------------------------
テキスト装飾
----------------------------------------------------------*/
/*-- 見出し --*/
.c-btn-01 {
  animation: moveUpDown 1s infinite alternate;
  animation-timing-function: ease-in-out;
}
.c-btn-01 a {
  display: block;
  margin: 0 auto;
}

@keyframes moveUpDown {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 10px);
  }
}
/*-- リード文--*/
/*-- project --*/
/* ---------------------------------------------------------
pages
----------------------------------------------------------*/
/**************************************

top.scss

***************************************/
.hero .hero__mainVisual {
  background-color: #ec7aa1;
}

.intro {
  background-color: #f3fcff;
}
.intro .intro__wrap {
  padding: 30px 0 50px;
}
.intro .intro__wrap .intro__cont .intro__contTxt {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
}
.intro .intro__wrap .intro__cont .intro__contTxt span {
  color: #db5351;
  font-weight: 500;
}
.intro .intro__wrap .intro__cont .intro__contFigure {
  margin: 20px 0;
}
.intro .intro__wrap .intro__cont .intro__contTit {
  background-color: #ec7aa1;
  border-radius: 20px;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}
.intro .intro__wrap .intro__cont .intro__contTit span {
  color: #ffe55f;
  font-weight: 700;
}
.intro .intro__wrap .intro__reco {
  margin-top: 20px;
}

.events {
  background-color: #daf2ed;
}
.events .events__wrap {
  padding: 30px 0 50px;
}
.events .events__wrap .events__item {
  margin-bottom: 40px;
}
.events .events__wrap .events__item:last-child {
  margin-bottom: 0;
}
.events .events__wrap .events__item .events__itemTit {
  background-color: #00b097;
  border-radius: 20px 20px 0 0;
  padding: 15px 0;
}
.events .events__wrap .events__item .events__itemTit p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.events .events__wrap .events__item .events__itemWrap {
  background-color: #fff;
  padding: 20px 0 25px;
  border-radius: 0 0 20px 20px;
}
.events .events__wrap .events__item .events__itemWrap .events__itemFigure {
  margin-bottom: 20px;
}
.events .events__wrap .events__item .events__itemWrap .events__itemTxt {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 20px;
}
.events .events__wrap .events__item .events__itemWrap .events__itemTxt span {
  font-size: 11px;
}
.events .events__wrap .events__item .events__itemWrap .events__itemDlWrap {
  padding-bottom: 15px;
}
.events .events__wrap .events__item .events__itemWrap .events__itemDlWrap .events__itemDl .events__itemDt {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  padding: 7px 0;
  background-color: #00b097;
  border-radius: 5px;
  margin-bottom: 12px;
}
.events .events__wrap .events__item .events__itemWrap .events__itemDlWrap .events__itemDl .events__itemDd {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  text-align: center;
  margin-bottom: 12px;
}
.events .events__wrap .events__item .events__itemWrap .events__itemDlWrap .events__itemDl .events__itemDd a {
  display: block;
  text-decoration: underline;
  color: #00b097;
  font-weight: 500;
}
.events .events__wrap .events__item .events__itemWrap .events__itemOther {
  margin-top: 25px;
}
.events .events__wrap .events__item .events__itemWrap .events__itemOther .events__itemOtherTit {
  margin-bottom: 20px;
}
.events .events__wrap .events__item .events__itemWrap .events__itemOther .events__itemOtherTxt {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 20px;
}
.other {
  padding: 30px 0;
}
.other .other__tit {
  margin-bottom: 30px;
}
.other .other__Link {
  width: 100%;
}

/*# sourceMappingURL=main.css.map */
