@charset "UTF-8";

/* style_pc.css */
/*  【PC版】cssリセット・コンテンツ部分の共通css   */

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

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


/* ------------------- 共通css ------------------- */
html {
   scroll-behavior: smooth;
}
body {
  font-family:-apple-system,BlinkMacSystemFont,"メイリオ","Meiryo",sans-serif;
  font-feature-settings: "palt";
  color:#707070;
  font-size:14px;
  letter-spacing: 0.05em;
  word-break: break-all;
}

/* 明朝体フォント */
.mincho_body {
  font-family:serif;
}

/* 1025以上はSPのみコンテンツは非表示 */
  .pc {display: block !important;}
  .sp {display: none !important;}

/* Chrome画像ぼやけ防止 */
img {
  image-rendering: -webkit-optimize-contrast;
width:auto;
}

body.fixed {
  width:100%;
    position: fixed;
    height: 100%;
    left: 0;
}

a {
  color:#707070;
  text-decoration: none;
  transition : 0.3s;
}

a:hover {
  color:#B286BC;
  text-decoration: none;
  transition : 0.3s;
}

p {
  text-align: justify;
  font-size:16px;
  line-height: 2em;
  letter-spacing: 0.05em;
}

#wrapper {
  overflow: hidden;
  margin: 0 auto;
}

section {
  margin:0 auto;
}

/* 共通ボタンデザイン */
/* 四角白ボタン */
.square {
  border:solid 1px #707070;
  text-align: center;
  font-size:15px;
  transition : 0.3s;
}

.square:hover {
  background-color: #EEEEEE;
  border:solid 1px #EEEEEE;
  transition : 0.3s;
}

.square a:hover {
    color:#707070;
}

/* タブ　四角ボタン */
.toptab_area ul li {
  border:solid 1px #707070;
  text-align: center;
  transition : 0.3s;
}

.toptab_area ul li:hover {
  background-color: #EBDBEF;
  border:solid 1px #EBDBEF;
  transition : 0.3s;
}

/* 四角ボタン　紫 */

.square_purple {
  border:solid 1px #EBDBEF;
  background-color: #EBDBEF;
  text-align: center;
  font-size:12px;
  transition : 0.3s;
}

.square_purple:hover {
  background-color: #B286BC;
  border:solid 1px #B286BC;
  color:#ffffff;
  transition : 0.3s;
}

/* 四角ボタン　灰色 */
.square_gray {
  border:solid 1px #DFDFDF;
  background-color: #DFDFDF;
  transition : 0.3s;
}

.square_gray:hover {
  border:solid 1px #707070;
  background-color: #707070;
  transition : 0.3s;
  color:#ffffff;
}

/* 個別マージン指定 */
.mg_tp_none {margin-top:0 !important;}

.mg_bt_none {margin-bottom:0 !important;}
.mg_bt_10 { margin-bottom:10px !important; }
.mg_bt_20 { margin-bottom:20px !important; }
.mg_bt_25 { margin-bottom:25px !important; }

.mg_bt_60 { margin-bottom:60px !important; }
.mg_bt_80 { margin-bottom:80px !important; }
