@charset "UTF-8";
* {
  letter-spacing: 0.05rem;
}

picture source,
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
  transition: all 0.2s;
}
a:focus {
  text-decoration: none;
  color: #333;
  transition: all 0.2s;
}
a img {
  /* IE10以下で出る枠線対策 */
  border-style: none;
}
a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
}

html {
  overflow-x: hidden;
  font-size: 18px;
  /*レスポンシブタイプセッティングの指定*/
  line-height: 1.6;
  color: #333;
}
@media screen and (max-width: 820px), print {
  html {
    font-size: 16px;
  }
}
@media screen and (max-width: 520px) {
  html {
    font-size: 14px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
}

.fs0 {
  font-size: 0;
}

.fs-S {
  font-size: 14px;
}

.fs-M {
  font-size: 18px;
}
@media screen and (max-width: 820px), print {
  .fs-M {
    font-size: 16px;
  }
}

.fs-L {
  font-size: 22px;
}
@media screen and (max-width: 820px), print {
  .fs-L {
    font-size: 18px;
  }
}

.flex {
  display: flex;
}

@media screen and (max-width: 820px), print {
  .flexColumn {
    flex-direction: column;
  }
}

@media screen and (max-width: 820px), print {
  .flexreColumn {
    flex-direction: column-reverse;
  }
}

.flexWrap {
  flex-wrap: wrap;
}

.alignStart {
  align-items: flex-start;
}

.alignEnd {
  align-items: flex-end;
}

.alignCenter {
  align-items: center;
}

.justBetween {
  justify-content: space-between;
}

.justCenter {
  justify-content: center;
}

.justStart {
  justify-content: flex-start;
}

.justEnd {
  justify-content: flex-end;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.textCenter {
  text-align: center;
}

.w-100 {
  width: 100%;
}

/*  main  */
.wrapper {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}

.wrap-1300 {
  margin: 0 auto;
  max-width: 1300px;
  width: 90%;
}

.wrap-1800 {
  margin: 0 auto;
  max-width: 1800px;
  width: 90%;
}
@media screen and (min-width: 1800px) {
  .wrap-1800 {
    width: 95%;
  }
}

.button01 {
  background-color: #63f;
  border: 2px solid #63f;
  color: #fff;
  display: block;
  font-size: 18px;
  padding: 20px;
  position: relative;
  text-align: center;
  width: 100%;
}
.button01:visited {
  color: #fff;
}
.button01:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  right: 10px;
  top: 30px;
  transform: rotate(45deg);
  transition: all 0.2s;
  width: 9px;
}
.button01:hover {
  background-color: #fff;
  color: #63f;
  opacity: 1;
}
.button01:hover:after {
  border-top: 2px solid #63f;
  border-right: 2px solid #63f;
}

/*  second  */
.second {
  padding: 90px 0 0;
}
@media screen and (max-width: 1024px) {
  .second {
    padding: 60px 0 0;
  }
}

#pankuzu {
  margin-top: 30px;
}
@media screen and (max-width: 520px) {
  #pankuzu {
    margin-top: 10px;
  }
}
#pankuzu li {
  display: inline-block;
  font-size: 12px;
}
#pankuzu li + li {
  margin-left: 10px;
}
#pankuzu li a {
  color: #63f;
}

#page_header {
  text-align: center;
  margin-top: 50px;
}
#page_header h1 {
  color: #63f;
  font-size: 36px;
}
@media screen and (max-width: 520px) {
  #page_header h1 {
    font-size: 30px;
    margin-top: 30px;
  }
}
#page_header .en {
  color: #f15025;
  font-size: 20px;
}

/****************/
/*  ディスプレイ幅表示制御  */
/****************/
@media screen and (max-width: 1024px) {
  .spc__hide {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) {
  .spc__show {
    display: none !important;
  }
}
@media screen and (max-width: 820px) {
  .ipad__hide {
    display: none !important;
  }
}
@media screen and (min-width: 821px) {
  .ipad__show {
    display: none !important;
  }
}
@media screen and (max-width: 520px) {
  .smp__hide {
    display: none !important;
  }
}
@media screen and (min-width: 521px) {
  .smp__show {
    display: none !important;
  }
}
@media print {
  .ipad__hide {
    display: none !important;
  }
}
/****************/
/*
改ページ記述例
#section00{
  page-break-before:always;
}
*/
/****************/