@charset "utf-8";

/* common */
* {
  font-family: 'DIN', 'Noto Sans JP', sans-serif;
  font-weight: 700;
}

html {
  font-size: 62.5%;
}

main {
  font-weight: 600;
  font-size: 1.6em;
  line-height: 1.67;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* font */
@font-face {
  font-family: "DIN";
  src: url("../fonts/D-DIN-PRO-400-Regular.otf") format("opentype");
  font-weight: 400;
}

@font-face {
  font-family: "DIN";
  src: url("../fonts/D-DIN-PRO-700-Bold.otf") format("opentype");
  font-weight: bold;
}

.pc {
  display: block;
}


/* site 
============================================ */
/* 共通 */
h2 {
  font-size: 20px;
  font-weight: bold;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.ttl {
  font-size: 28px;
  text-align: right;
  color: #D80C18;
  border: #D80C18 1px solid;
  border-radius: 0 100vh 100vh 0;
  padding: 8px 36% 8px 0;
  margin-bottom: 38px;
  margin: 0 calc(100% - 58vw) 46px;
  width: 59vw;
}

.sub-cts .ttl {
  text-align: left;
  border-radius: 100vh 0 0 100vh;
  padding: 8px 0 8px 45%;
  margin: 0 calc(100% - 50vw) 46px -60px;
  width: 49.5vw;
  border-right: none;
}

.cts-area {
  margin-bottom: 66px;
}

a {
  transition: filter 0.5s ease;
  display: block;
  border-radius: 7px;
}

/* メインビジュアル */
.top {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}

.top_ttl-l {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  position: relative;
}

.top h1 {
  width: 100%;
  text-align: center;
  margin-top: -70px;
}

.top h1 img {
  width: 75%;
  margin: 0 auto;
}

.top-ttl_deco {
  position: absolute;
  right: 0;
  bottom: 0;
}

.top_video {
  padding-top: 39.4%;
  width: 100%;
  position: relative;
  width: 70%;
}

.top_video video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

/* 音声ボタン */
.movie__btn {
  /* margin-top: 4em; */
  text-align: center;
  position: absolute;
  left: 3%;
  bottom: 3%;
}

.movie__btn button {
  width: 50px;
  display: inline-block;
  color: red;
  cursor: pointer;
}

/* メインコンテンツ */
.main-cts {
  display: flex;
  justify-content: space-between;
  max-width: 1240px;
  margin: 85px auto 0;
  padding: 0 20px;
}

/* ガイドマップ */
.guide-cts {
  width: 35%;
}

.guide-cts a {
  max-width: 330px;
  width: 100%;
  margin: 0 auto;
  display: block;
  position: relative;
}

.guide-cts a::before {
  content: "";
  background-image: url(../img/ckick-btn@2x.png);
  background-size: contain;
  display: inline-block;
  height: 28px;
  width: 85px;
  position: absolute;
  top: -18px;
  left: -10px;
  z-index: 1000;
}

.guide-cts img {
  width: 330px;
  margin: 0 auto;
  border: 1px solid #F0F0F0;
  box-shadow: 0 0 5px #ccc;
  transition: transform .6s ease;
}

@media screen and (min-width:1080px) {
  .guide-cts img:hover {
    transform: scale(1.02);
    transition: 1s all;
  }

  .guide-cts .ttl {
    position: sticky;
    top: 2em;
  }

  .guide-cts a {
    position: sticky;
    top: 10em;
  }
}

/* サブコンテンツ */
.sub-cts {
  width: 45%;
}

/* news */
.info_text-area {
  /* max-width: 468px; */
  margin: 0 auto;
  text-align: justify;
  padding-right: 10px;
}

.info-cts .ttl {
  padding-left: 54%;
}

.info_date {
  font-size: 16px;
  font-weight: bold;
  color: #D80C18;
  border-bottom: 1px solid #D80C18;
  margin-bottom: 7.5px;
}

.info_text a{
  text-decoration: underline;
  margin-left: 1.2em;
  font-weight: 500;
  color: #036EB8;
}

.info_box {
  margin-bottom: 30px;
}

.info_list{
  list-style-type: square;
  padding-left: 1em;
  margin-bottom: 12px;
}

.info_list li,.info_text-circle li{
  font-weight: 500;
}

.info_list li .info_list-in{
  margin: 0 0 0 1em;
  padding: 0;
  list-style-type: circle;
}

.info_text-circle{
  padding-left: 1em;
  list-style: disc;
  margin-bottom: 12px;
}

.info_text:not(:last-of-type) {
  margin-bottom: 12px;
}

/* おしらせ スクロールバー */
.info_text-area {
  height: 180px;
  overflow-y: auto;
  /* スクロールバーを表示 */
  scrollbar-width: thin;
  /* スクロールバーの幅を指定 */
}

/* Webkitブラウザ向けのスタイル */
.info_text-area::-webkit-scrollbar {
  width: 5px;
  /* スクロールバーの幅を指定 */
}

.info_text-area::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  /* スクロールバーの色を指定 */
}

/* service 共通 */
.service-cts:not(:first-of-type) {
  margin-top: 85px;
}

.service-cts h3 {
  font-size: 20px;
  margin-bottom: 30px;
  position: relative;
  margin-left: 4.5em;
}

.service-cts h3::before {
  content: "";
  display: block;
  width: 70px;
  height: 25px;
  background-color: #036EB8;
  border-radius: 0 24px 24px 0;
  position: absolute;
  left: -4.5em;
  top: 3px;
}

.service-cts h4 {
  font-size: 18px;
  line-height: 2;
  margin-bottom: 27px;
  font-weight: 500;
  border-bottom: 1px solid;
  padding-left: 5px;
}

.service a {
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  transition-duration: 0.3s;
  transition-property: transform;
}

.service a:hover {
  transform: scale(0.95);
}

.service a img {
  margin: 0 auto;
}

.service a p {
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}

.service-flex {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 35px 0;
  margin: 0 10px;
}

.column2 a {
  width: calc((100% - 35px) / 2);
}

/* tourism */
.tourism h3 {
  color: #036EB8;
}

.tourism h3::before {
  background-color: #036EB8;
}

.tourism .service-flex {
  max-width: 475px;
  margin: 0 auto;
}

.tourism a {
  padding: 16px 15px 25px;
  max-width: 220px;
  color: #036EB8;
}

.tourism a p {
  margin-top: 23px;
}

/* around */
.around h3 {
  color: #3AAD90;
}

.around h3::before {
  background-color: #3AAD90;
}

.around a {
  padding: 14px 0 22px;
  width: calc((100% - 54px)/ 4);
  color: #3AAD90;
}

.around a.railway {
  padding-bottom: 19px;
}

.around a p {
  font-size: 14px;
  margin-top: 6px;
}

/* srv */
.srv h3,
.srv h4 {
  color: #5B63A4;
}

.srv h3::before {
  background-color: #5B63A4;
}

.srv a {
  flex-direction: row;
  align-items: center;
  padding: 20px;
  color: #5B63A4;
}

/* wifi */

/* exchange */
.exchange .service-flex a {
  height: 80px;
}

/* shopping*/
.shopping h3,
.shopping h4 {
  color: #EE83A0;
}

.shopping h3::before {
  background-color: #EE83A0;
}

/* logoありのボタン */
.logo-flex a {
  padding: 19px 10px 18px;
}

.logo-flex a p {
  margin: 16px auto 0;
  padding: 5px 0;
  max-width: 200px;
  width: 100%;
  text-align: center;
  color: #EE83A0;
  border-top: 1px solid #EE83A0;
  border-bottom: 1px solid #EE83A0;
}

/* Culture＆Art */
.culture h3 {
  color: #84959E;
}

.culture h3::before {
  background-color: #84959E;
}

.culture .logo-flex a p {
  color: #84959E;
  border-top: 1px solid #84959E;
  border-bottom: 1px solid #84959E;
}

/* stay */
.stay h3 {
  color: #5D9164;
}

.stay h3::before {
  background-color: #5D9164;
}

.stay .logo-flex a p {
  color: #5D9164;
  border-top: 1px solid #5D9164;
  border-bottom: 1px solid #5D9164;
}

/* footer */
footer {
  background-color: black;
  padding: 3em 2.5em 2em;
}

footer p {
  color: #FFF;
  text-align: center;
  font-size: 14px;
}

/* レスポンシブ
============================================ */
@media screen and (max-width:1080px) {
  .main-cts {
    flex-direction: column;
    max-width: 760px;
    padding: 0 15px;
    margin-top: 50px;
  }


  /* メインコンテンツ */
  .guide-cts,
  .sub-cts {
    width: 100%;
  }

  .cts-area {
    margin-bottom: 130px;
  }

  /* サブコンテンツ */
  .ttl,
  .sub-cts .ttl {
    text-align: center;
    margin: 0px calc(50% - 50vw) 46px;
    width: 90vw;
    border: #D80C18 1px solid;
    border-left: none;
    border-radius: 0 100vh 100vh 0;
    padding: 12px 0 12px 9.5vw;
  }

  /* インフォメーション */
  .info-cts.cts-area {
    padding: 0 10px;
  }

  .info_text-area {
    max-width: 550px;
  }

  /* サービス全般 */
  .service-cts {
    max-width: 550px;
    margin: 0 auto;
  }

  .srv a {
    justify-content: center;
  }

  .srv a p {
    justify-content: inherit;
    margin-left: 10px;
  }
}


@media screen and (max-width:767px) {
  .pc {
    display: none;
  }

  /* 共通 */
  .cts-area {
    margin-bottom: 150px;
  }

  /* メインビジュアル */
  .top {
    flex-direction: column;
  }

  .top_ttl-l {
    width: 100%;
    height: 60px;
    margin: 0;
  }

  .top h1 {
    margin-top: 0;
  }

  .top h1 img {
    width: 150px;
  }

  .top_video {
    padding-top: 56.25%;
    width: 100%;
  }

  /* 音声ボタン */
  .movie__btn{
    left: 2%;
    bottom: 2%;
  }
  .movie__btn button{
    width: 30px;
  }

  /* コンテンツ */
  .ttl,
  .sub-cts .ttl {
    font-size: 22px;
    padding: 8px 0 8px 9.5vw;
  }

  .guide-cts.cts-area {
    padding: 0 40px;
  }

  /* サービス全般 */
  .service-cts {
    margin-bottom: 130px;
  }

  .service-flex {
    flex-direction: column;
    align-items: center;
  }

  .column2 a {
    width: 100%;
    max-width: 237px;
  }

  .service-cts h3::before {
    width: 170px;
    left: -9.5em;
  }

  /* tourism */
  .tourism h3,
  .around h3 {
    margin-bottom: 50px;
  }

  .tourism .service-flex {
    gap: 50px;
  }

  /* 交通機関 */
  .around .service-flex {
    flex-direction: row;
    max-width: 247px;
    margin: 0 auto;
  }

  .around .service-flex a {
    width: calc((100% - 27px) / 2);
    height: 125px;
  }
}

/* video */
.video-ad-ui,
.playback-controls-overlay,
.play-pause-background {
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%
}

.video-ad-ui {
  -webkit-transform: translateZ(0)
}

.controls-overlay {
  pointer-events: auto
}

.play-pause-background {
  background-color: rgba(0, 0, 0, .30);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 600ms;
  -moz-transition: opacity 600ms;
  -o-transition: opacity 600ms;
  transition: opacity 600ms
}

.play-pause-background.fade-in {
  opacity: 1;
  pointer-events: auto
}

.clickable {
  cursor: pointer
}

.mute-toggle-button {
  bottom: 0;
  filter: drop-shadow(0px 1px 5px rgba(0, 0, 0, .20));
  height: 20px;
  left: 0;
  margin: 0 0 8px 8px;
  padding: 16px 20px 4px 0;
  position: absolute;
  width: 20px;
  background-color: red;
}

.videoAdUiProgressBar {
  background-color: rgba(0, 0, 0, .4);
  bottom: 0;
  height: 4px;
  position: absolute;
  width: 100%
}

.videoAdUiProgress {
  background-color: rgba(255, 255, 255, .84);
  -webkit-border-radius: 0 5px 5px 0;
  -moz-border-radius: 0 5px 5px 0;
  border-radius: 0 5px 5px 0;
  height: 100%;
  width: 0
}

svg {
  vertical-align: middle
}

sentinel {}