@charset "utf-8";
:root {
  --main-color: #333333;
  --sub-color: #002063;
}
.main-color {
  color: var(--main-color);
}
.sub-color {
  color: var(--sub-color);
}
html{color:#000;background:#FFF}
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}
table{border-collapse:collapse;border-spacing:0}
fieldset,img{border:0}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}
ol,ul{list-style:none}
caption,th{text-align:left}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}
q:before,q:after{content:''}
abbr,acronym{border:0;font-variant:normal}
sup{vertical-align:text-top}
sub{vertical-align:text-bottom}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;*font-size:100%}
legend{color:#000}

img {
  max-width: 100%;
}

html {
  font-size: 20px;
}
@media screen and (max-width: 991px){
  html {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px){
  html {
    font-size: 16px;
  }
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 1px;
  color: #333333;
  font-size: 0.8rem;
  line-height: 1.5rem;
}

.container {
  width: 980px;
  max-width: 90%;
  margin: 0 auto;
}
p {
  text-indent: 1em;
  margin-bottom: 1em;
}
p.caption {
  text-indent: 0;
}
a,
a:visited {
  color: inherit;
  text-decoration: underline;
}
a:hover {
  opacity: 0.5;
  text-decoration: underline;
  cursor: pointer;
}

h1 span,
h2,
.headline {
  font-family: 'RocknRoll One', sans-serif;
}
h1 {
  text-align: center;
  margin-bottom: 1rem;
}
h1 span {
  font-size: 2.4rem;
  line-height: 80px;
  color: var(--sub-color);
}
h1 span + span{
  font-size: 1.5rem;
  line-height: 80px;
  color: var(--main-color);
}
h2 {
  text-align: center;
  position: relative;
  font-size: 1.6rem;
  line-height: 2rem;
  padding-bottom: 20px;
  margin-bottom: 1.8rem;
  letter-spacing: 8px;
}
h2:after {
  position: absolute;
  display: block;
  content: "";
  background-color: var(--sub-color);
  width: 100px;
  height: 5px;
  border-radius: 2px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}


section {
  padding-bottom: 80px;
}
ul li {
  list-style-type: disc;
  list-style-position: inside;
}

/* modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000a;
  display: none;
  z-index: 9999;
}
.modal-inner {
  background-color: #fff;
  padding: 30px 20px;
  width: 90%;
  max-width: 800px;
  height: 80vh;
  margin: 5vh auto 0;
  overflow-y: scroll;
}
.modal > span {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  text-align: center;
  background-color: #fff;
  cursor: pointer;
  box-shadow: 0 0 5px #000;
  z-index: 1;
}
.modal > span i {
  font-size: 50px;
  line-height: 60px;
  vertical-align: top;
}

/* header */
header {
  padding-top: 100px;
}
.lang-btn {
  display: block;
  width: 60px;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1;
}

/* main */
main {
  padding: 75px 0 0;
}

/* under-kv */
.under-kv {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.under-kv > div {
  width: 38%;
  margin-bottom: 20px;
}
.under-kv > div + div {
  width: 60%;
  margin-bottom: 20px;
}
.under-kv > div > img {
  border-radius: 10px;
  height: auto;
}

@media screen and (max-width: 991px){
.under-kv > div,
.under-kv > div + div {
  width: 100%;
}
}

/* map */
.section-map {
  text-align: center;
}
.section-map img {
  width: 100%;
}

/* route */
.route-box-outer {
  padding-top: 22px;
  background-image: url(img/corner01.svg),url(img/corner02.svg),url(img/corner03.svg),url(img/corner04.svg);
  background-repeat: no-repeat;
  background-size: 32px auto;
  background-position: left top,right top,left bottom, right bottom;
}
.route-box {
  width: 90%;
  max-width: 488px;
  margin: 0 auto;
}
.route-box ol li {
  list-style-type: decimal;
  margin-left: 150px;
}
.route-box-title {
  background-color: var(--sub-color);
  color: #fff;
  position: relative;
  line-height: 1;
  padding: 12px 12px 12px 120px;
  margin-bottom: 22px;
  border-radius: 20px 0 0 20px;
}
.route-box-title span {
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-10px,-50%);
  font-size: 36px;
  font-weight: bold;
  color: var(--sub-color);
  background-color: #fff;
  border: 14px solid;
  border-radius: 40px;
  width: 52px;
  height: 52px;
  line-height: 47px;
  text-align: center;
}
.route-box-block {
  background-image: url(img/arrow.svg);
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: left 20px bottom;
  margin-bottom: 20px;
  padding-top: 30px;
  margin-top: -30px;
}
.route-box-content {
  padding-bottom: 20px;
}

.section-archive {
  padding-top: 120px;
  background-color: #f1f1f1;
}
.archive-row {
  margin-top: 70px;
}
.archive-row:after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  clear: both;
}
.link-box {
  display: block;
  width: 33.33%;
  padding: 0 10px;
  float: left;
  box-sizing: border-box;
}
.link-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
}
.link-box {
  text-decoration: none !important;
}
.link-box > div {
  margin-top: -24px;
}
.lang-english .link-box > div {
  margin-top: 0;
  margin-bottom: 7px;
}
.link-tag {
  display: inline-block;
  background-color: var(--sub-color);
  color: #fff;
  font-size: 0.65rem;
  line-height: 1;
  padding: 8px 16px;
  border-radius: 0 15px 15px 0;
}
.link-title {
  font-weight: bold;
  font-size: 0.9rem;
  min-height: 70px;
}
@media screen and (max-width: 991px){
  .link-box {
    width: 50%;
  }
  .link-box img {
    height: 24vw;
  }
}
@media screen and (max-width: 767px){
  .link-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    float: none;
  }
  .link-box img {
    height: 45vw;
    max-height: 200px;
  }
}
.page-asakusa .link-asakusa,
.page-bunkyo .link-bunkyo,
.page-chiyoda .link-chiyoda,
.page-chuo .link-chuo,
.page-fuchu .link-fuchu,
.page-fuchu02 .link-fuchu02,
.page-hachioji .link-hachioji,
.page-hino .link-hino,
.page-image .link-image,
.page-kitatama .link-kitatama,
.page-koishikawa .link-koishikawa,
.page-minato .link-minato,
.page-ome .link-ome,
.page-sendagi .link-sendagi,
.page-shinsengumi .link-shinsengumi,
.page-shirokane .link-shirokane,
.page-sumida .link-sumida,
.page-tama .link-tama,
.page-ueno .link-ueno {
    display: none;
}
.section-sns {
  background-color: #f1f1f1;
  text-align: center;
}
.section-sns img {
  width: 50px;
  height: 60px;
  object-fit: contain;
  display: inline-block;
  margin: 8px 16px;
  vertical-align: top;
}

/* footer */
footer {
  padding-top: 70px;
  text-align: center;
}
.footer-logo {
  width: 90%;
  max-width: 300px;
  display: block;
  margin: 0 auto 25px;
}
footer ul {
  margin: 0 auto 50px;
  display: inline-block;
  font-size: 0;
}
footer ul li {
  padding: 0 10px;
  line-height: 1;
  display: inline-block;
  border-right: 1px solid;
}
footer ul li:last-child {
  border: none;
}
footer ul a {
  text-decoration: none !important;
  line-height: 1;
  display: inline-block;
  font-size: 0.7rem;
}
.copy {
  background-color: var(--sub-color);
  line-height: 1;
  font-size: 0.5rem;
  color: #fff;
  padding: 15px 0;
}
.pagetop {
  display: block;
  width: 40px;
  color: #fff !important;
  text-decoration: none !important;
  background-color: var(--sub-color);
  position: fixed;
  bottom: 0;
  right: 0;
  text-align: center;
  cursor: pointer;
}
.pagetop i {
  font-size: 20px;
  line-height: 40px;
  vertical-align: top;
}
.pagetop:hover {
  opacity: 0.5;
}

/* top */
.page-home main {
  padding: 0 !important;
}
.top-archive-l p,
.top-archive-r {
  display: none;
}
.page-home header {
  padding: 0;
}
.page-home header .container{
  display: none;
}
.page-home main > .container {
  max-width: none;
  width: 100%;
}
.top-kv {
  position: relative;
  padding: 0;
}
.top-kv picture,
.top-kv picture img {
  width: 100%;
}
.top-kv picture.kv-bottom {
  position: absolute;
  bottom: -4.9vw;
  left: -0.5px;
  width: calc(100% + 1px);
}

@media screen and (max-width: 767px){
  .top-kv picture.kv-bottom {
    bottom: -1px;
  }
}
.page-home .section-archive {
  background: url(img/archive_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.page-home .section-sns {
  padding-top: 60px;
}
.page-home .section-archive {
  padding-bottom: 120px;
}
.page-home .top-archive-l p,
.page-home .top-archive-r {
  display: block;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 1199px){
  .page-home .top-archive-l p {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 479px){
  .page-home .top-archive-l p br {
    display: none;
  }
}
.page-home .top-archive {
  text-align: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.page-home .top-archive-l,
.page-home .top-archive-r {
  width: 48%;
  margin-bottom: 20px;
}
@media screen and (max-width: 991px){
.page-home .top-archive-l,
.page-home .top-archive-r {
  width: 100%;
}
}
@media screen and (min-width: 992px){
  .page-home .link-box:first-child {
    width: 66.66%;
  }
  .page-home .link-box:first-child img {
    height: 445px;
  }
}

.route-box-outer + h2 {
  margin-top: 75px;
}
/* sp */
@media screen and (max-width: 991px){
  h2 {
    letter-spacing: 3px;
  }
}
@media screen and (max-width: 767px){
header {
  padding-top: 50px;
}
main {
  padding: 25px 0 0;
}
section {
  padding-bottom: 50px;
}
.section-archive {
  padding: 50px 0 20px;
}
.route-box-outer {
  padding: 50px 0;
}
.copy {
  padding: 15px 40px;
}
.route-box-outer + h2 {
  margin-top: 50px;
}
header .container img {
  height: 100px;
  max-height: 25vw;
  width: 100%;
  object-fit: cover;
}
}
@media screen and (max-width: 479px){
.route-box-title {
    padding: 6px 6px 6px 72px;
    line-height: 1.3;
}
.route-box ol li {
    margin-left: 90px;
}
}

.bgffffcc {
  background-color: #ffffcc;
  padding: 20px 10px;
}

/* modal */

.modal h4 {
  margin-bottom: 16px;
  padding-left: 32px;
  font-weight: bold;
  background: url(../image/point-sq-green.gif) 8px center no-repeat;
  font-size: 100%;
}
.txt_ja h3.subhead,
.txt_ja h4.subhead {
    margin-top: 0;
    padding-left: 0;
    margin-bottom: 1em;
    background: none;
}
.txt_ja {
    padding: 0 8px 1em 8px;
}
.text_ja_photo5,
.text_ja_photo4,
.text_ja_photo2 {
    float: right;
    width: 250px;
    margin-left: 32px;
    margin-bottom: 32px;
}
.text_ja_photo3 {
    float: left;
    width: 250px;
    margin-top: 8px;
    margin-right: 40px;
    margin-bottom: 8px;
}
.clearfix {
    clear: both;
}
.clearfix:after {
    content: '';
    display: block;
    height: 0;
    font-size: 0%;
    clear: both;
    visibility: hidden;
}
p.caption2, p.caption {
    margin: 0;
    padding: 0;
    font-size: 80%;
    line-height: 1.3em;
}
.modal p {
  text-align: justify;
}
.bgF5F5F5 {
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: #F5F5F5;
}
.txt_ja dl {
    clear: both;
    width: 632px;
    max-width: 100%;
    margin-left: 16px;
    line-height: 1.5em;
}
.txt_ja dl dt {
    width: 96px;
    float: left;
    margin-bottom: 0.5em;
    font-weight: bold;
}
.txt_ja dl dd {
    width: 518px;
    max-width: calc(100% - 106px);
    margin-right: 10px;
    float: right;
    margin-bottom: 0.5em;
}
.modal h2 {
    min-height: 26px;
    padding-top: 0.3em;
    padding-bottom: 0;
    font-weight: bold;
    font-size: 120%;
    text-align: left;
    margin-bottom: 0;
}
.modal h2:before {
  content: "●";
  margin-right: 5px;
}
.modal h2:after {
  display: none;
}
.modal .subtitle {
    padding-left: 34px;
}

.modal h3 {
    font-size: 150%;
    border-bottom: 2px solid var(--sub-color);
    margin-bottom: 6px;
}
.authority {
    margin-top: 0.5em;
    text-align: right;
    line-height: 1.5em;
}
.red {
    color: #CC0000;
}
.ward-title-chiyoda2 {
    margin-top: 16px;
    margin-bottom: 1em;
}
.modal p {
  margin-bottom: 1em;
}
.anotherwin2, .anotherwin {
    margin-left: 8px;
    margin-right: 4px;
    padding-right: 16px;
    background: url(../image/share_icowin_03.gif) right center no-repeat;
    font-size: 100%;
}
.text_ja_photo1 {
    float: right;
    width: 170px;
    margin-left: 24px;
    margin-bottom: 24px;
}

.lang-english .text_ja_photo6{
    float: right;
    width: 230px;
    margin-left: 32px;
    margin-bottom: 32px;
}

.section-map .modal-open img {
  max-width: 600px;
}

.section-map .modal-inner img {
  width: 100%;
  min-height: 100%;
  object-fit: contain;
}

.page-hino .section-map .modal-inner img {
  min-height: auto;
}

@media screen and (max-width: 767px){
  .text_ja_photo5,
  .text_ja_photo4,
  .text_ja_photo2 {
    max-width: calc(50% - 16px);
    margin-left: 16px;
    margin-bottom: 16px;
  }
  .text_ja_photo5 img,
  .text_ja_photo4 img,
  .text_ja_photo2 img {
    height: auto;
  }
  .text_ja_photo3 {
    max-width: calc(50% - 20px);
    margin-right: 20px;
  }
  .section-map .modal-open img {
    max-width: 80%;
  }
}

.mapComponent {
  position: relative;
  width: 100%;
  margin: 20px auto 50px;
  padding-top: 69%;
}

/* 20240325 ブルーノット追記 */
@media screen and (max-width: 767px){
.mapComponent {
  padding-top: 140%;
}
}

#map_canvas {
  position: absolute;
  top: 0;
  margin: 20px auto 10px;
  width: 100%;
  height: 100%;
  box-shadow: 10px 10px 10px rgba(190, 190, 190, 0.4);
  /* add for mobile click event */
  cursor:pointer;
}

#mapList {
  margin: 20px auto;
  padding: 0;
  font-size: 0.9em;
  width: 95%;
}

/* 20240110 ブルーノット追記 */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  word-break: normal;
}

.page-home .top-archive-jp {
  display: block;
}

.map-index {
  background: url(img/map-index.jpg) no-repeat left top / 100%;
  width: 100%;
  padding-top: 73.469387755%;
  position: relative;
  margin-top: 3em;
}

.map-index > a {
  position: absolute;
  display: block;
  width: 18.88%;
  padding-top: 12.55%;
  background: transparent;
}
.map-index > a:hover {
  background: #fff8;
}
.map-index > a.link-chiyoda {
  left: 52.2449%;
  top: 0.5556%;
}
.map-index > a.link-sendagi {
  left: 66.6327%;
  top: 18.3333%;
}
.map-index > a.link-tama {
  left: 10.102%;
  top: 11.6667%;
}
.map-index > a.link-kitatama {
  left: 31.1224%;
  top: 2.5%;
}
.map-index > a.link-minato {
  left: 63.9796%;
  top: 78.8889%;
}
.map-index > a.link-fuchu {
  left: 21.4245%;
  top: 80.3556%;
}
.map-index > a.link-hino {
  left: 43.3673%;
  top: 82.0833%;
}
.map-index > a.link-taito {
  left: 81.1224%;
  top: 40.6944%;
}
.map-index > a.link-chuo {
  left: 77.449%;
  top: 61.6667%;
}
.map-index > a.link-koishikawa {
  left: 44.7939%;
  top: 19.7222%;
}

.map-index-e {
  background: url(img/map-index_en.jpg) no-repeat left top / 100%;
  width: 100%;
  padding-top: 73.469387755%;
  position: relative;
  margin-top: 3em;
}

.map-index-e > a {
  position: absolute;
  display: block;
  width: 13.68%;
  padding-top: 7.55%;
  background: transparent;
}
.map-index-e > a:hover {
  background: #fff8;
}
.map-index-e > a.link-chiyoda {
  left: 49.5449%;
  top: 2.6556%;
}
.map-index-e > a.link-sendagi {
  left: 66.9327%;
  top: 20.5333%;
}
.map-index-e > a.link-tama {
  left: 11.602%;
  top: 9.6667%;
}
.map-index-e > a.link-kitatama {
  left: 27.9042%;
  top: 3.4%;
}
.map-index-e > a.link-minatos {
  left: 71.7796%;
  top: 58.4889%;
}
.map-index-e > a.link-fuchuk {
  left: 27.8245%;
  top: 59.5556%;
}
.map-index-e > a.link-hino {
  left: 43.0673%;
  top: 60.8833%;
}
.map-index-e > a.link-taito {
  left: 72.0224%;
  top: 39.6944%;
}
.map-index-e > a.link-chuo {
  left: 86.449%;
  top: 54.6667%;
}
.map-index-e > a.link-koishikawa {
  left: 44.0939%;
  top: 18.4222%;
}
.map-index-e > a.link-hino {
  left: 13.4245%;
  top: 59.4556%;
}
.map-index-e > a.link-shinsengumi {
  left: 43.2245%;
  top: 60.7556%;
}
.map-index-e > a.link-fuchu {
  left: 10.4245%;
  top: 47.4556%;
}
.map-index-e > a.link-hachioji {
  left: 0.0245%;
  top: 34.4556%;
}
.map-index-e > a.link-minato {
  left: 57.8673%;
  top: 58.4833%;
}
.map-index-e > a.link-taitou {
  left: 86.3224%;
  top: 39.6944%;
}
.map-index-e > a.link-sumida {
  left: 82.0224%;
  top: 27.6944%;
}
.map-index-e > a.link-bunkyo {
  left: 64.5449%;
  top: 6.0556%;
}

/* youtube埋め込み用サイズ調整 */
.youtube {
  position: relative;
  padding-bottom: 56.25%;  /* 横16:縦9 */
  height: 0;
  overflow: hidden;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
