/* ■■■common 基本設定： ページ全体■■■ */
/* CSS Reset */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}
 
* {
  box-sizing: border-box;
}
 
*:before,
*:after {
  box-sizing: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
 
ol,
ul {
  list-style: none;
}
 
img,
video {
  max-width: 100%;
}
 
img {
  border-style: none;
  vertical-align: text-bottom;
  height: auto;
}
 
blockquote,
q {
  quotes: none;
}
 
blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

[hidden] {
    display: none !important;
}
 
[disabled] {
    cursor: not-allowed;
}
 
:focus:not(:focus-visible) {
    outline: none;
}

html{
  font-size: 100%;
}

body {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  font-family: "Noto Sans CJK JP", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  list-style: none;
  background-color: #fff;
    overflow-x: hidden;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

.spArea{
  display: none;
}

/* タブレット・スマホ用 */
@media screen and (max-width: 767px) {
    .pcArea{
        display:none;
    }
    .spArea{
      display: block;
    }
}


/* ■■■既存CSS調整■■■ */
/* margin */
.mt0 {margin-top: 0px !important;}
.mb0 {margin-bottom: 0px!important;}
.mt10 {margin-top: 10px !important;}
.mb10 {margin-bottom: 10px!important;}
.mt20 {margin-top: 20px!important;}
.mb20 {margin-bottom: 20px!important;}
.mt30 {margin-top: 30px!important;}
.mb30 {margin-bottom: 30px!important;}
.mt40 {margin-top: 40px!important;}
.mb40 {margin-bottom: 40px!important;}
.mt50 {margin-top: 50px!important;}
.mb50 {margin-bottom: 50px!important;}
.mt60 {margin-top: 60px!important;}
.mb60 {margin-bottom: 60px!important;}
.mt80 {margin-top: 80px!important;}
.mb80 {margin-bottom: 80px!important;}
.mt100 {margin-top: 100px!important;}
.mb100 {margin-bottom: 100px!important;}

@media screen and (max-width:768px){
  .mt0 {margin-top: 0px!important;}
  .mb0 {margin-bottom: 0px!important;}
  .mt10 {margin-top: 10px!important;}
  .mb10 {margin-bottom: 10px!important;}
  .mt20 {margin-top: 15px!important;}
  .mb20 {margin-bottom: 15px!important;}
  .mt30 {margin-top: 20px!important;}
  .mb30 {margin-bottom: 20px!important;}
  .mt40 {margin-top: 20px!important;}
  .mb40 {margin-bottom: 20px!important;}
  .mt50 {margin-top: 25px!important;}
  .mb50 {margin-bottom: 25px!important;}
  .mt60 {margin-top: 30px!important;}
  .mb60 {margin-bottom: 30px!important;}
  .mt80 {margin-top: 40px!important;}
  .mb80 {margin-bottom: 40px!important;}
  .mt100 {margin-top: 50px!important;}
  .mb100 {margin-bottom: 50px!important;}
}

/* ■■■共通パーツ■■■ */
.buttonBox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.buttonBoxLink {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.buttonBoxLink img {
  width: 100%;
}

.buttonBoxLink img:hover {
  filter: brightness(120%);
}

.buttonBoxLink2 {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.buttonBoxLink2 img {
  width: 100%;
}

.buttonBoxLink2 img:hover {
  filter: brightness(120%);
}

.strOrange {
  color: #faab00 !important;
}

/* タブレット用 */
@media screen and (max-width: 1100px) {

}

/* スマホ用 */
@media screen and (max-width: 767px) {

}


/* PC限定改行（<br class="brPc">と記述） */
@media screen and (max-width: 767px) {
  .brPc {
    display:none; 
  }
}

/* SP限定改行（<br class="brSp">と記述） */
.brSp {
  display:none; 
}

@media screen and (max-width: 767px) {
  .brSp {
    display:block; 
  }
}


/* リンク */
a.uline {
  color: #3399ff;
  text-decoration: underline;
}


/* 枠組み */
.wrap {
  clear: both;
  box-sizing: content-box;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
}
.contents {
    max-width: 1080px;
    background: #fff;
    margin: 0 auto;
}
