@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* ★★★★★★★★★★ 共通 ★★★★★★★★★★ */

body {
  font-family: 'Roboto', "Noto Sans JP", sans-serif;
  color: #111;
  font-size: 15px;
  line-height: 1.8em;
  /* background-color: #eee; */
}

a {
  color: #111;
  text-decoration: none;
}

a:hover {
  color: #333;
  text-decoration: underline;
}

/* ★★★★★★★★★★ ヘッダー ★★★★★★★★★★ */
header {
  width: calc(100% - 100px);
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 0 5px;
}

header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .inner h1 {
  width: 90px;
}

header .inner h1 img {
  width: 100%;
  height: auto;
}

header .inner nav {
  display: flex;
  align-items: center;
}

header .inner nav ul {
  display: flex;
}

.lang li {
  margin: 0 0 0;
  font-size: 13px;
}

.lang li span.on {
  margin: 0 0 0;
  padding: 6px 8px;
  background-color: #111;
  color: #fff;
  border-radius: 4px;
}

.lang li:first-child:after {
  content: "|";
  margin: 0 10px 0 10px;
}

.sns {
  margin: 0 0 0 15px;
}

.sns li {
  margin: 0 0 0 15px;
}

.sns li a {
  display: block;
  width: 30px;
}

.sns li a img {
  width: 100%;
  height: auto;
}

/* ★★★★★★★★★★ メインビジュアル ★★★★★★★★★★ */

.main_visual {
  width: calc(100% - 100px);
  max-width: 960px;
  margin: 0 auto 50px;
}

.main_visual img {
  width: 100%;
  height: auto;
}

.main_visual h2 {
  margin: 10px 0 0;
  font-size: 54px;
  text-align: center;
  line-height: 1.25em;
}

.main_visual h2.main_visual_title_en {
  font-size: 48px;
}

.main_visual h2 span {
  display: block;
  margin: 10px 0 0;
  font-size: 32px;
  line-height: 1.5em;
}

@media (max-width: 1060px) and (min-width: 768px) {
  .main_visual h2 {
    font-size: 4.75vw;
  }

  .main_visual h2.main_visual_title_en {
    font-size: 4.25vw;
  }

  .main_visual h2 span {
    font-size: 3vw;
  }
}

/* ★★★★★★★★★★ コンテンツ ★★★★★★★★★★ */

.purport {
  width: calc(100% - 100px);
  max-width: 760px;
  margin: 0 auto;
}

/* ★★★★★★★★★★ フッター ★★★★★★★★★★ */

footer {
  width: calc(100% - 100px);
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0;
  border-top: solid 1px #ccc;
}

.fnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  margin: 0 0 40px;
}

.fnav li:first-child:after {
  content: "|";
  margin: 0 10px 0 10px;
  color: #aaa;
}

.archive {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  margin: 0 0 40px;
}

.archive dt:after, .archive dd:after {
  content: "|";
  margin: 0 10px 0 10px;
  color: #aaa;
}

.kyosan {
  font-size: 13px;
}

.kyosan ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 0;
}

.kyosan ul li {
  margin: 0 20px 20px;
}

.kyosan ul li a {
  display: block;
  line-height: 0;
}



/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
ここから下、スマホ用
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (max-width: 767px) {

  body {
    color: #111;
    font-size: 13px;
    line-height: 1.8em;
  }

  /* ★★★★★★★★★★ ヘッダー ★★★★★★★★★★ */
  header {
    width: 90%;
    padding: 10px 0 5px;
  }

  header .inner h1 {
    width: 60px;
  }

  .lang li {
    font-size: 12px;
  }

  .sns {
    margin: 0 0 0 2px;
  }

  .sns li {
    margin: 0 0 0 10px;
  }

  .sns li a {
    width: 24px;
  }

  /* ★★★★★★★★★★ メインビジュアル ★★★★★★★★★★ */

  .main_visual {
    width: 90%;
    margin: 0 auto 40px;
  }

  .main_visual img {
    width: 100%;
    height: auto;
  }

  .main_visual h2 {
    margin: 6px 0 0;
    font-size: 4.9vw;
    text-align: center;
    line-height: 1.25em;
  }

  .main_visual h2.main_visual_title_en {
    font-size: 4.5vw;
  }

  .main_visual h2 span {
    margin: 0.5em 0 0;
    font-size: 3.5vw;
    line-height: 1.5em;
  }

  /* ★★★★★★★★★★ コンテンツ ★★★★★★★★★★ */

  .purport {
    width: 90%;
  }

  /* ★★★★★★★★★★ フッター ★★★★★★★★★★ */

  footer {
    width: 90%;
  }


  .kyosan {
    font-size: 12px;
  }

  .kyosan ul li {
    margin: 0 10px 15px;
  }

}
