@charset "utf-8";

/* 
  スマートフォン：設定なし（実質599px以下）
  タブレット：600px以上
  PC：1,025px以上
=============================================================== */

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/

/* Reset
=============================================================== */
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
}
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;
}
input, select {
  vertical-align: middle;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Base
=============================================================== */
html {
  font-size: 62.5%; /* 10px */
}
body {
  color:#333;
  font-family: 'Noto Sans JP', sans-serif; /*ゴシック体*/
  font-size: 1.3em;
  line-height: 1.5;
}
input, select, textarea {
	font-family:inherit;
	font-size:inherit;
}
input:focus, textarea:focus {
	background: #fbfbfb;
}
a {
  color: #333;
	text-decoration: none;
  transition: all 0.3s ease;
}
.alpha:hover {
  color: #333;
	text-decoration: none;
  transition: all 0.3s ease;
  opacity: 0.7;
  filter: alpha(opacity=70);
}
a img.alpha-img {
  transition: all 0.3s ease;
}
a:hover img.alpha-img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: all 0.3s ease;
}
a:active, a:focus {
	outline: none;
}
img,
iframe {
	height: auto;
	max-width: 100%;
}
img {
  vertical-align: bottom;
}
.aligncenter {
  display: block;
  margin: 0 auto;
}
.bodyWrap {
  overflow-x: hidden;
}

@media (min-width: 60em) { /* 600px以上 */
  body {
    font-size: 1.4em;
  }
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
  img.alignright {
    display: block;
    margin: 0 0 0 auto;
  }
  .alignright { 
    float: right;
  }
  .alignleft {
    float: left;
  }
  .alignright,
  .alignleft {
    margin: 8px;
  }
}

@media (min-width: 64.06em) { /* 1025px以上 */
  body {
    font-size: 1.6em;
  }
}

/* Show / Hide by device
=============================================================== */
@media (max-width: 37.4em) { /* 599px以下 */
  .pc {
    display: none !important;
  }
}

@media (min-width: 37.5em) { /* 600px以上 */
  .sp {
    display: none !important;
  }
}

/* Top
=============================================================== */
.header {
  margin: 0 10px;
}
.header_logo {
  text-align: center;
  margin: 20px 0;
}
.mainContentsWarap {
  max-width: 1200px;
  margin: 0 auto 25px;
}
.mainContentsWarap_image01 {
  text-align: center;
  margin-bottom: 25px;
}
.mainContentsWarap_image02 {
  text-align: center;
  margin: 0 10px;
}
.footer {
  max-width: 1200px;
  margin: 0 auto;
}
.footer_copyright {
  text-align: center;
  margin: 15px 0;
}

@media (min-width: 64.06em) { /* 1025px以上 */
  .header {
    margin: 0;
  }
  .mainContentsWarap {
    display: flex;
    justify-content: space-between;
    margin: 0 auto 10px;
  }
  .mainContentsWarap_image01 {
    width: 61.5%;
    margin: 0 auto 0 0;
  }
  .mainContentsWarap_image02 {
    width: 36.6%;
    margin: 0;
  }
  .footer_copyright {
    text-align: left;
    margin: 0;
    font-size: 1.2rem;
  }
}