@charset "UTF-8";
/* CSS Document */
/* ==================================
    メディアクエリ
===================================== */
/* フォントサイズ
    メディアクエリに変換してくれる

    @include pc-layout() {
        color: #fff;
    }
    @include sp-layout() {
        color: #000;
    }

    こんな感じで記述する。
    案件によってブレイクポイントは変更してね。
 */
/* ==================================
レイアウト
===================================== */
.l-content-wrap {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box !important;
  padding-right: 2.4% !important;
  padding-left: 2.4% !important;
}
@media only screen and (max-width: 767px) {
  .l-content-wrap {
    max-width: 100%;
    padding-right: 5% !important;
    padding-left: 5% !important;
    box-sizing: border-box !important;
  }
}

@media only screen and (max-width: 767px) {
  .l-spinner {
    width: 85%;
    margin: 0 auto;
  }
}

/* レイアウト */
.l-content-wrap-default {
  position: relative;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box !important;
  padding-right: 2.4% !important;
  padding-left: 2.4% !important;
}
@media only screen and (max-width: 767px) {
  .l-content-wrap-default {
    max-width: 100%;
    padding-right: 5% !important;
    padding-left: 5% !important;
    box-sizing: border-box !important;
  }
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  word-wrap: break-word;
}

input, textarea {
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

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

/* CSS Document */
/* ==========================================================================
    Font Size
    ========================================================================== */
/* フォントサイズ
    @include font-size(14)
    こんな感じで記述する。
    vwなのでスマホのとき、でかすぎる時があるので、
    大きい文字(fs32とか)は、SPのみ、
    font-size: 6vw; こんな感じで上書きすることを許す。
    案件によってブレイクポイントは変更してね。
*/
/* ==================================
    メディアクエリ
===================================== */
/* フォントサイズ
    メディアクエリに変換してくれる

    @include pc-layout() {
        color: #fff;
    }
    @include sp-layout() {
        color: #000;
    }

    こんな感じで記述する。
    案件によってブレイクポイントは変更してね。
 */
/* ==================================
レイアウト
===================================== */
.l-content-wrap {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box !important;
  padding-right: 2.4% !important;
  padding-left: 2.4% !important;
}
@media only screen and (max-width: 767px) {
  .l-content-wrap {
    max-width: 100%;
    padding-right: 5% !important;
    padding-left: 5% !important;
    box-sizing: border-box !important;
  }
}

@media only screen and (max-width: 767px) {
  .l-spinner {
    width: 85%;
    margin: 0 auto;
  }
}

/* レイアウト */
.l-content-wrap-default {
  position: relative;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: content-box !important;
  padding-right: 2.4% !important;
  padding-left: 2.4% !important;
}
@media only screen and (max-width: 767px) {
  .l-content-wrap-default {
    max-width: 100%;
    padding-right: 5% !important;
    padding-left: 5% !important;
    box-sizing: border-box !important;
  }
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6em;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.f-wrap {
  flex-wrap: wrap;
}

.f-jc-sb {
  justify-content: space-between;
}

.f-jc-c {
  justify-content: center;
}

.f-jc-fe {
  justify-content: flex-end;
}

.f-ai-c {
  align-items: center;
}

.f-ai-fs {
  align-items: flex-start;
}

.f-ai-fe {
  align-items: flex-end;
}

.f-ac-c {
  align-content: center;
}

.base {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 15px;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
img {
  width: 100%;
  display: block;
}

.ttl {
  margin-bottom: 30px;
  padding-left: 30px;
  font-size: 24px;
  font-weight: 700;
  position: relative;
}
.ttl::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #333;
  border-radius: 50%;
}

.sec-main {
  padding: 200px 0;
}
@media only screen and (max-width: 767px) {
  .sec-main {
    padding: 100px 0;
  }
}
.sec-main .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sec-main .list .item {
  width: 48.5%;
  margin-bottom: 75px;
}
@media only screen and (max-width: 767px) {
  .sec-main .list .item {
    width: 100%;
    margin-bottom: 50px;
  }
}
.sec-main .list .item img {
  margin-bottom: 10px;
}
.sec-main .list .item .link {
  text-align: center;
  color: #000;
}/*# sourceMappingURL=style.css.map */