/* Box sizing rules */
/* Box sizingの定義 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul[class],
ul,
ol[class] {
  padding: 0;
}
#bannerArea ul {
    margin-left: 0 !important;
    padding-left: 0 !important;
}
#page #bannerArea h2 {
    margin-bottom: 20px !important;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
ul,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

table {
    border-collapse:collapse;
    border-spacing:0;
}
table, tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: middle;    
}

a,
p a ,
a img {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0.2s;
	-moz-transition-duration: 0.2s;
	-o-transition-duration: 0.2s;
	transition-duration: 0.2s;
	-webkit-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-timing-function: ease-in-out;
}
/*a:hover img {
    opacity: 0.75;
}*/

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
/*  min-height: 100vh;
*/  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.9;
  color: #3c3c3c;
  font-size: 17px;
  
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
.whiteContentArea ul,
#home ul,
#bannerArea ul,
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a.hv_line {
    position: relative;
    display: inline-block;
}
a.hv_line:hover {
    opacity: 1;
    color: #a6a6a6 !important;
}
a.hv_line:after {
    content: "";
    width: 0%;
    height: 1px;
    background: #a6a6a6;
    position: absolute;
    left: 0;
    bottom: 0px;
    transition: .3s;
}
a.hv_line:hover:after {
    width: 100%;
}

a[target=_blank] {
    text-decoration: none;
    color: #333333;

}
a[target=_blank]::before {
    font-family: 'Material Icons';
    content: "\e14d";
    color: #8da5da;
}
a[target=_blank]:hover {
    color: #06f;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Natural flow and rhythm in articles by default */
/* article要素内の要素に自然な流れとリズムを定義 */
article > * + * {
  margin-top: 0em;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
  line-height: 1;
  padding: 0.2em;
}

p {
    margin-bottom: 0.85em;
}
img.left {
    float: left;
    margin: 0 2em 1em 0;
    vertical-align: top;
}

strong {
    font-weight: normal;
}

.mb1 {
    margin-bottom: 1em !important;
}


/* Alignment */
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;　
	display: block;
	margin: 0 auto;
}

