@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 --*/
.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-bold {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
}

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

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;
}

.cv {
  background-color: #5eb7e8;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
}
.cv .cv__btn {
  padding: 10px 0 30px;
}
.cv .cv__btn a {
  width: 79.4871794872%;
  max-width: 620px;
}
.cv .cv_List {
  width: 89.74%;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
}
.cv .cv_List .cv_Figure {
  width: 43.14%;
  margin-right: 20px;
}
.cv .cv_List .cv_Cont {
  color: #fff;
  line-height: 1.75;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .cv .cv_List .cv_Cont {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .cv .cv_List .cv_Cont {
    font-size: 14px;
  }
}

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

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

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

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