@charset "utf-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  color: #002c5a;
  font-family: 'BIZ UDPGothic', sans-serif,'Noto Sans JP', sans-serif,"游ゴシック", "Yu Gothic", 'Hiragino Sans';
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #d4dfeb;
}
.inner {
  max-width: 1160px;
  margin: auto;
}

/* 見出し*/

section h2 {
  color: #002c5a;
  font-family: "游ゴシック", "Yu Gothic", 'Hiragino Sans', "游明朝", YuGothic, 'Hiragino Kaku Gothic ProN', 'sans-serif';
  font-size: 2.4rem;
  text-align: left;
}
.heading {
  position: relative;
}
.heading::before {
  content: attr(data-en);
  position: absolute;
  top: -60px;
  color: rgba(53, 144, 188, 0.2);
  font-size: 9.0rem;
  z-index: 3;
}
.recommend-title::before {
  color: #fff;
}
h2.recommend-title {
  color: #fff;
}
a:hover {
  opacity: 0.5;
  -webkit-transition: background-color 0.5s ease-in;
}
.none {
  display: none;
}

/*すべての要素に対して適応したいときは、アスタリスクマークつける*/
*, *:before, *:after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
.br {
  display: inline-block;
}
hr {
  width: 100%;
  border-top: dotted 2px #7c848d;
  margin: 20px auto;
}
/***************************
header
***************************/
.top-logo {
  width: 300px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.header {
  width: 100%;
  background-color: rgba(0, 44, 90, 0.3);
  position: fixed;
  z-index: 1000;
}


/*---ヘッダーの高さ変更---*/
.header {
  padding: 20px 30px;
  transition: 0.5s;
  justify-content: space-between;
}
.header.transform {
  background-color: rgba(0, 44, 90, 0.9);
  padding: 8px 30px 0 30px;
}
/*---/ヘッダーの高さ変更---*/


.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.main-under-element {
  clear: both;
}
.header-nav ul {
  display: flex;
  justify-content: end;
  flex-wrap: nowrap;
  list-style: none;
}
.header-nav > li {
  list-style: none;
}
.header-nav p {
  color: #fff;
  font-size: 1.4rem;
  width: 100px;
  margin: auto;
}
/*
.header-nav_icon {
  margin: 20px 0 0;
}
*/
.header-nav_icon img {
  width: 40px;
}


/*header　途中までスクロールしたら低くなる*/
.site-header {
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  padding: 60px 20px;
  position: fixed;
  justify-content: space-between;
  transition: .5s;
  width: 100%;
}
.site-header.transform {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
}
/*------/途中までスクロールしたら低くなる-------*/


#g-nav { /*pcは非表示*/
  display: none;
}


/****************************
ナビゲーション 共通css
****************************/
nav ul li a {
  display: block;
  text-decoration: none;
  color: #999;
  transition: all .3s;
}
nav ul li ul li a {
  padding: 5px; /*0405 駅ボタンがipad横の時に収まりきらない為、padding減らした*/
  border-radius: 1em;
  display: block;
}
nav ul li a:hover {
  color: #fff;
}
/*下の階層を持っているulの指定 【駅名・カテゴリー】*/
nav li.has-child ul {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.9);
  visibility: hidden;
  opacity: 0;
  padding: 1em;
  border-radius: 1em;
  top: 77px;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
}
/*hoverしたら表示*/
nav li.has-child:hover > ul, nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #002c5a;
}
nav li.has-child ul li:last-child a {
  border-bottom: none;
}
nav li.has-child ul li a:hover, nav li.has-child ul li a:active {
  background: #2a82a3;
  color: #fff;
}
/*ナビゲーション 駅名*/
.header-nav_st-wrapper {
  margin: 0 auto;
  min-height: 100px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
}
.header-nav_st-wrapper li a {
  writing-mode: vertical-rl;
  width: 50px; /*0405 safaliで表示されるように％をpxに変更した、レスポンス時幅が伸び縮み出来なくなったが表示はされた*/
}
.header-nav_st-wrapper img {
  margin: 0 0 10px 0;
  /*width: 100%;駅ボタンをpng→svgにしたら、崩れた、width100%を消したら整った*/
  max-width: 45px;
}
/*カテゴリー、特集*/
nav ul li.has-child img { /*header-icon*/
  max-width: 100%;
  height: auto;
  transition: all .5s;
}
nav ul li.has-child dt {
  overflow: hidden;
  margin: 0 0 20px 0;
  width: 146px; /*ホバー時の背景のサイズ　100%だと写真の各サイズ調整必要*/
}
.nav-item-image img {
  width: 100%;
  display: block;
  border-radius: 1em;
  margin: 0 auto;
  height: 100%;
}
/*== 2層目の設定 */
/*hoverしたら表示*/
nav li.has-child:hover > ul {
  visibility: visible;
  opacity: 1;
}

/*---特集の通り道---*/
.bg-width::before {
  content: "";
  width: 50px;
}
.bg-width::after {
  content: "";
  width: 50px;
}
/*---/特集の通り道---*/


/****** SNS ******/
.top_sns-links {
  position: absolute;
  right: 30px;
  bottom: 10px;
  margin-bottom: 20px;
}

/*カテゴリー画像フィルター装飾*/
dt.film {
  position: relative;
  border-radius: 1em;
}
img.film_icon {
  position: absolute;
  padding: 50px;
  background-color: #002c5a;
  opacity: 0.6;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

/****************************
駅ボタンの装飾
****************************/
.station-botton {
  width: 56px;
  height: 55px;
  background: #fff;
  border: 4px solid #2a82a3;
  border-radius: 50%;
  color: #185aa5;
  padding: 0px;
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  -webkit-transition: background-color 0.5s ease-in;
  text-decoration: none;
  line-height: 19px;
}
span.cm {
  font-size: 1.2rem;
  margin: 0;
}
.station-botton:hover {
  background: #2a82a3;
  color: #fff;
  border: 0.5px solid #fff;
} 

/****************************
公式ボタンの装飾
****************************/
span.kousiki:hover {
  opacity: 0.5;
  -webkit-transition: background-color 0.5s ease-in;
}

/****************************
下層ページ駅ボタンの装飾は反応なし
****************************/
.station-button_none {
  width: 56px;
  height: 55px;
  background: #fff;
  border: 4px solid #2a82a3;
  border-radius: 50%;
  color: #185aa5;
  padding: 0px;
  display: block;
  /* text-align: center; */
  /* font-weight: bold; */
  /* font-size: 2rem; */
  text-decoration: none;
  line-height: 19px;
}
a.station-button_none:hover {
  opacity: 1;
  pointer-events: none;
}

/****************************
ワイ 吹き出し
****************************/
.wai {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  text-align: center;
  margin: 20px auto 40px;
}
.wai::before, .wai::after {
  content: '';
  width: 2px;
  height: 40px;
  background-color: #2a82a3;
  border-radius: 1em;
}
.wai::before {
  margin-right: 30px;
  transform: rotate(-35deg)
}
.wai::after {
  margin-left: 30px;
  transform: rotate(35deg)
}
/****************************
moreボタンの装飾
****************************/
.more-botton {
  display: inline-block;
  border-radius: 4em;
  color: #002c5a;
  padding: 1em;
  text-align: center;
  font-weight: 400;
  font-size: 2rem;
  -webkit-transition: background-color 0.5s ease-in;
  text-decoration: none;
  margin: 0 auto;
  border: solid 4px #2a82a3;
  background-color: #fff;
  width: 276px;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
}
.more-botton:hover {
  background: #2a82a3;
  color: #fff;
} 
/*トップへ戻るボタン*/
  .top_btn-padding {
    padding-top: 60px;
  }
/*****************************
footer-illust
*****************************/
.footer-illust {
  position: relative;
  bottom: -1px;
  left: 0;
}

/*footerの上の動くイラスト*/
.footer-illust img {
  vertical-align: bottom;
}


/*****************************
footer
*****************************/
footer .inner {
  background-color: #d4dfeb;
}
footer a {
  color: #002c5a;
  line-height: 3.8rem;
  text-decoration: none;
  padding: 15px 0 0 15px;
}
footer p {
  margin: auto;
}

.company {
padding-top:40px;
  display: flex;
  justify-content: space-around;
}
.company p {
  font-size: 1.4rem;
  line-height: 2.6rem;
  text-align: left;
}
.footer-logo {
  display: block;
  margin: 0 auto 40px;
  width: 300px;
}
img.tel-icon {
  width: 10px;
}
.sns {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  padding-bottom: 40px;
}
.sns ul {
  text-align: center;
  vertical-align: bottom;
  display: block;
}
.sns li {
  margin: 0 14px;
  height: 20px;
  width: 20px;
}
.sp-sns {
  display: none;
}
.footer-station {
  display: flex;
  border-radius: 1em;
  align-items: center;
}
.footer-station ul {
  width: 565px;
  display: flex;
  flex-flow: column wrap;
  height: 240px;
  padding: 10px 0;
}
.footer-station ul li {
  width: 190px;
  height: 36px;
  text-align: left;
}
.footer-station ul li a {
  font-size: 1.4rem;
  margin: 0 0 0 30px;
}
.site-map {
  display: flex;
  margin: 20px auto 40px;
  justify-content: space-between;
}
.site-map li a {
  font-weight: 600;
}
.site-map li {
  margin: auto;
}
small {
  font-size: 1.4rem;
  padding-bottom: 20px;
}
a {
  text-decoration: none;
}
/*==================================================
スクロールトップのためのcss　モノちゃん
==================================================*/
#scroll-top {
  bottom: 10px;
  padding: 20px;
  position: fixed;
  right: 20px;
}
#scroll-top img {
  width: 8rem;
}

/*ふわふわ*/
.scroll-top-mono {
  animation: scroll-top-mono 2s infinite ease-in-out .8s alternate;
  display: inline-block;
}
@keyframes scroll-top-mono {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(0, -5px) rotate(0deg);
  }
}

/*スクロールしたら下からふわっ*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration:0.8s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
from {
    opacity: 0;
    transform: translateY(60px);
} 
to {
    opacity: 1;
    transform: translateY(0);
}
}
ol.pagenation__list {
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
/*=========================================================
タブレット縦版
==========================================================*/
/*****************************
nav==1100px以下の形状
*****************************/
@media screen and (max-width:1100px) {
  .inner {
    max-width: 1100px;
    width: 90%;
  }
  /*****************************
  header
  *****************************/
  .top-logo {
    left: 20px;
  }
  .header {
    background-color: rgba(0, 44, 90, 0.9);
    padding: 0;
  }
  .header-box {
    display: block;
    height: 60px;
  }
  .header-nav ul {
    justify-content: center;
    display: none;
  }
  .header nav {
    display: block;
    z-index: 1000;
    position: static; /*初期値*/
  }
  .top_sns-links {
    position: absolute;
    right: 30px;
    margin-bottom: 20px;
  }
  .top_sns-links li {
    margin-bottom: 20px;
  }

  /*=========スマホgnav=========*/
  /*アクティブになったエリア*/

  #g-nav.panelactive {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    left:0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
  }
  .g-nav-home a {
    justify-content: center;
  }

  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(0, 44, 90, 1);
    /*丸のスタート位置と形状*/
    transform: scale(0); /*scaleをはじめは0に*/
    right: -50px;
    top: -50px;
    transition: all .6s; /*0.6秒かけてアニメーション*/
  }
  .circle-bg.circleactive {
    transform: scale(50); /*クラスが付与されたらscaleを拡大*/
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav-list {
    display: none; /*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #g-nav.panelactive #g-nav-list {
    display: block; /*クラスが付与されたら出現*/
  }

  /*ナビゲーション*/
  #g-nav ul {
    opacity: 0; /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    z-index: 999;
    padding: 20px;
  }

  /*背景が出現後にナビゲーションを表示*/
  #g-nav.panelactive ul {
    opacity: 1;
  }

  /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
  #g-nav.panelactive ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s; /*0.2 秒遅らせて出現*/
    animation-fill-mode: forwards;
    opacity: 0;
  }

  /*545エラーになるので、一旦コメントアウトしたら、navが表示されなくなったので、復活させた*/
  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }

  /*リストのレイアウト設定*/
  #g-nav li {
    text-align: center;
    list-style: none;
  }
  #g-nav li a {
    color: #fff;
    text-decoration: none;
    padding: 10px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0px 25%;
  }
  #g-nav li a img {
    width: 50px;
    display: block;
    margin-right: 10px;
  }
  .g-nav-home {
    width: 200px;
    margin: 0 auto 20px;
  }

  /*=========gnav ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    top: 7px;
    right: 10px;
    z-index: 9999; /*z-indexでボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }


  /*=========/スマホgnav=========*/
  .wai {
    margin: 20px auto;
  }
  .wai::before, .wai::after {
    height: 24px;
  }

  /*footer*/
  .company {
    display: block;
/*    padding: 10px;*/
    padding:0;
    margin: 0 auto;
  }
  .footer-logo {
    margin: 0 auto 20px;
  }
  .company p {
    margin:0 auto;
  }
  .pc-sns {
    display: none;
  }
  .sp-sns {
    display: flex;
    margin-bottom: 40px;
  }
  .footer a {
    padding: 15px 0 0 20px;
  }
  .footer-station ul {
/*    display: flex;*/
/*    width: 100%;*/
    height: 270px;
    margin: 0 auto;
    width: 600px;
    padding-left: 72px;
  }
  .footer-station ul li {
    width: 150px;
    height: 40px;
  }
  .footer-station ul li a {
    margin: 0;
    padding: 0.4em;
  }
  .sp-fontsize {
    font-size: 1.5rem
  }
  .site-map {
    width: 672px;
    margin: 0 auto 60px auto;
    flex-wrap: wrap;
    padding-left: 72px;
    justify-content: flex-start;
  }
  .site-map li {
    margin: 0;
    width: 150px;
    height: 50px;
    text-align: left;
  }
  .site-map li a {
    padding: 0;
  }
  .footer-illust {
    padding-top: 60px;
  }
  .adress {
  padding: 20px 0 60px;
  width: 300px;
  margin: 0 auto;
  }
   p.adress_en {
  font-size: 1.3rem;
  }
} /*---/nav==1100px以下の形状---*/


/*=========================================================
スマホ版
==========================================================*/
@media(max-width:768px) {
  .footer-station ul {
    display: flex;
    width: 300px;
    height: 380px;
    padding: 0;
  }
  hr {
  width: 100%;
  margin: 4% auto;
  }
  ul.site-map {
    width: 300px;
    padding: 20px 0 60px;
    margin: 0 auto;
  }
  .site-map li {
    margin: 0;
    width: 150px;
    height: 50px;
    text-align: left;
  }

/*=========================================================
スマホ版
==========================================================*/
@media(max-width:425px) {
  .top-logo {
   width: 65%;
  }
}
/*==================================================
  スクロールトップのためのcss　モノちゃん
  ==================================================*/
  #scroll-top {
    bottom: 10px;
    padding: 20px;
    position: fixed;
    right: 0px;
  }
  #scroll-top img {
    width: 6rem;
  }
}