@charset "UTF-8";

/* ===================================================================

	Setting

=================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  color: #333;
  background: #fff;
  line-height: 1.6;
  text-align: left;
  font-size: 65.5%;
  /* height: 100%; */
}
body {
  /*body { margin:0; padding:0; font-size:1.5rem; font-family:"Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif; overflow-x:hidden; }*/
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", Arial, sans-serif;
  position: relative;
  color: #333;
  font-size: 18px;
  letter-spacing: 0.8px;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}
html,
body {
  /*height: 100%;*/
  /*背景画像を100%にする時に使用する*/
  overflow-x: hidden;
}
blockquote,
body,
dd,
div,
dl,
dt,
fieldset,
form,
h1,
h2,
h3,
h4,
h5,
h6,
input,
li,
ol,
p,
pre,
td,
textarea,
th,
ul {
  margin: 0;
  padding: 0;
  font-weight: 500;
}
li {
  list-style-type: none;
}
h1,
h2,
h3 {
  margin: 0px;
}
a {
  text-decoration: none;
  color: #333;
  transition: 0.5s;
}
a:hover {
  opacity: 0.7;
  transition: 0.5s;
  cursor: pointer;
}
.anone {
  pointer-events: none;
}

@media only screen and (max-width: 1200px) {
  body {
    font-size: 18px;
  }
}
@media only screen and (max-width: 850px) {
  body {
    font-size: 16px;
  }
}
@media only screen and (max-width: 479px) {
  body {
    font-size: 14px;
  }
}

/* 連続 br でIE6が改行しないバグ対策　CSS:letter-spacing の影響
----------------------------------------------- */
br {
  letter-spacing: normal;
}

/* table
----------------------------------------------- */
tr {
  border: none;
}

th,
td {
  padding: 5px 10px;
  font-weight: 100;
}
button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

.w-auto {
  width: auto;
}
.sp {
  display: none;
}
.pc {
  display: block;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}

.containar {
  width: 100%;
  margin: 0px auto;
}
.cwrap {
  padding: 0 30px;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.align-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.justify-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.justify-e {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.justify-be {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.justify-ar {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flexwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flexacjc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* flex 02
----------------------------------------------- */
.wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex_just-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.flex_just-b {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex_just-a {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.flex_align-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex_direction-row-r {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

/* フロート回り込み解除
----------------------------------------------- */
.clear {
  clear: both;
  display: none;
  font-size: 0px;
  line-height: 0%;
  height: 0px;
}

/* float対策：背景色表示用
----------------------------------------------- */
.clearfix:after {
  display: block;
  clear: both;
  height: 0px;
  line-height: 0px;
  visibility: hidden;
  content: ".";
}

.clearfix {
  display: block;
  /* for IE8 */
}

.both {
  clear: both;
}

.hidden {
  display: none;
}

/* pagetop
----------------------------------------------- */
.pagetop {
  display: block;
  width: 47px;
  height: 49px;
  position: fixed;
  right: 5%;
  bottom: 10%;
  z-index: 9999;
  display: none;
}

.pagetop img {
  opacity: 0.3;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -ms-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.pagetop:hover img {
  opacity: 1;
}
.while {
  padding: 100px 20px;
}

/* color
----------------------------------------------- */

.grade01 {
  background: -moz-linear-gradient(65deg, #2785b3, #00396b);
  background: -webkit-linear-gradient(65deg, #2785b3, #00396b);
  background: linear-gradient(25deg, #2785b3, #00396b);
}
.grade02 {
  background: -moz-linear-gradient(65deg, #00afff, #006fc0);
  background: -webkit-linear-gradient(65deg, #00afff, #006fc0);
  background: linear-gradient(25deg, #00afff, #006fc0);
}

@media only screen and (max-width: 479px) {
  .cwrap {
    padding: 0 25px;
  }
}
