@charset "utf-8";
/* ===================================================================
CSS information

 File Name  : module.css
 Style Info : 共通要素の基本設定
=================================================================== */

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  font-size: 1.4rem;
  line-height: 1.5;
  background: #fff;
  color: #000;
  font-family: 'Noto Sans Japanese', sans-serif;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/*----------------------------------------------------------------
	base
----------------------------------------------------------------*/

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a, a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* 共通要素
----------------------------------------------------------- */

.pc {
  display: block;
}

.sp {
  display: none;
}

#wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: #ffdef7;
}

.cv {
  text-align: center;
  margin: 30px 0 45px;
}

@media (max-width: 768px) {
  .cv {
    margin: 30px 20px 45px;
  }
}

.cv a {
  display: inline-block;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.cv a:hover img {
  opacity: 0.8;
}
