@charset "UTF-8";

/* //////////////////////////////////////////////////

  base.css

////////////////////////////////////////////////// */

/* --------------
  全体
----------------*/
#wrapper {}


.container {
  margin: 0 auto;
}

.container img {
  width: 100%;
}

.sec_inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

@media screen and (max-width: 750px) {
  .sec_inner {
    margin: 0 10px;
    padding: 0;
  }
}

.pc_hidden {
  display: none;
}

.smp_hidden {
  display: block;
}

@media screen and (max-width: 750px) {
  .pc_hidden {
    display: block;
  }

  .smp_hidden {
    display: none;
  }
}

.description {
  text-align: center;
  margin-bottom: 30px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}


.fadeIn {
  transition: 1s;
  opacity: 0;
}

.fadeIn.animated {
  opacity: 1;
}

/* --------------
  フォント
----------------*/
h1, h2, h3, h4, h5, h6, p, a, dt, dd, tr {
  font-family: "游明朝", "YuMincho", 'Noto Serif JP', serif;
  color: #000;
}

h1, h2, h3, h4, h5, h6, p {
  color: #000;
}

h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 30px;
  text-align: center;
}

h2 span {
  font-size: 18px;
  font-family: 'Roboto', sans-serif;
  color: #475d77;
  font-weight: bold;
}

@media screen and (min-width:321px) and (max-width: 750px) {
  h2 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  h2 .ttl_en {
    font-size: 14px;
  }
}

@media screen and (max-width: 320px) {
  h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

h3 {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 10px;
  font-weight: normal;
}

@media screen and (max-width: 750px) {
  h3 {
    font-size: 20px;
  }
}

p, td {
  font-size: 16px;
  line-height: 1.8;
}

@media screen and (max-width: 750px) {
  p,td {}
}