@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
.wrapper {
  overflow-x: hidden;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/*---in view アニメーション----*/
/*フェードイン*/
.fadeIn{
	opacity: 0;
    -webkit-transition: all 1.0s;
    -moz-transition: all 1.0s;
    -o-transition: all 1.0s;
    -ms-transition: all 1.0s;
    transition: all 1.0s;
    transition-timing-function:ease-out;
}
.fade-in{
	opacity: 1.0;
    transition-delay:0.05s;
}
/*下から*/
.fadeUp{
	opacity: 0;
    -webkit-transition: all 1.0s;
    -moz-transition: all 1.0s;
    -o-transition: all 1.0s;
    -ms-transition: all 1.0s;
    transition: all 1.0s;
    transition-timing-function:ease-out;
    transform: translateY(30px);
}
.fade-up{
	opacity: 1.0;
    transform: translateY(0);
    transition-delay:0.1s;
}
.fadeUp_delay{
	opacity: 0;
    -webkit-transition: all 1.0s;
    -moz-transition: all 1.0s;
    -o-transition: all 1.0s;
    -ms-transition: all 1.0s;
    transition: all 1.0s;
    transition-timing-function:ease-out;
    transform: translateY(30px);
}
.fade-up_delay{
	opacity: 1.0;
    transform: translateY(0);
    transition-delay:0.2s;
}
/*右から*/
.fadeRight{
	opacity: 0;
    -webkit-transition: all 1.0s;
    -moz-transition: all 1.0s;
    -o-transition: all 1.0s;
    -ms-transition: all 1.0s;
    transition: all 1.0s;
    transition-timing-function:ease-out;
    transform: translateX(100px);
}
.fade-right{
	opacity: 1.0;
    transform: translateX(0);
    transition-delay:0.2s;
}
.fadeRight_delay{
	opacity: 0;
    -webkit-transition: all 1.0s;
    -moz-transition: all 1.0s;
    -o-transition: all 1.0s;
    -ms-transition: all 1.0s;
    transition: all 1.0s;
    transition-timing-function:ease-out;
    transform: translateX(100px);
}
.fade-right_delay{
	opacity: 1.0;
    transform: translateX(0);
    transition-delay:0.4s;
}
/*左から*/
.fadeLeft{
	opacity: 0;
    -webkit-transition: all 1.0s;
    -moz-transition: all 1.0s;
    -o-transition: all 1.0s;
    -ms-transition: all 1.0s;
    transition: all 1.0s;
    transition-timing-function:ease-out;
    transform: translateX(-100px);
}
.fade-left{
	opacity: 1.0;
    transform: translateX(0);
    transition-delay:0.1s;
}
.fadeLeft_delay{
	opacity: 0;
    -webkit-transition: all 1.0s;
    -moz-transition: all 1.0s;
    -o-transition: all 1.0s;
    -ms-transition: all 1.0s;
    transition: all 1.0s;
    transition-timing-function:ease-out;
    transform: translateX(-100px);
}
.fade-left_delay{
	opacity: 1.0;
    transform: translateX(0);
    transition-delay:0.2s;
}
.bounceIn_delay {
    animation-delay: .3s;  /* 遅れてアニメする */
}


/*** header ***/
.header {
  height: 100px;
  width: 100%;
  background-color: #fff;
}
.header-content-wrapper {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.header-logo {
  padding-top: 20px;
  position: absolute;
  left: 0;
}
.nav-pc {
  display: block;
}
.nav-pc ul {
  display: flex;
  justify-content: flex-end;
}
.nav-pc li {
  padding: 36px 38px 0 0;
}
.nav-pc .sns_link {
  padding: 34px 13px 0 0;
}
.nav-pc .sns_link:last-of-type {
  padding: 34px 0 0;
}
.nav-pc li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 2.0rem;
  font-weight: 700;
  font-family: 'Shippori Mincho', serif;
}
.nav-pc ul img {
  width: 30px;
  height: auto;
}
.nav-sp {
  display: none;
}
.header .btn {
  display: none;
}
@media (max-width: 1280px) {
  button {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    vertical-align: middle;
    font: inherit;
    -webkit-appearance: none;
    appearance: none;
  }
  .header .btn {
    display: block;
    /* ボタンの配置位置  */
    position: fixed;
    top: 25px;
    right: 24px;
    /* ボタンの大きさ  */
    width: 25px;
    height: 19px;
    /* 最前面に */
    z-index: 999;
    text-align: left;
  }
  /***** 真ん中のバーガー線 *****/
  .btn-line {
    display: block;
    position: relative;  /* バーガー線の位置基準として設定 */
    width: 100%;  /* 線の長さと高さ */
    height: 3px;
    background-color: #000;  /* バーガー線の色 */
    transition: .2s;
  }
  /****** 上下のバーガー線 *****/
  .btn-line::before,
  .btn-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    transition: .5s;
  }
  .btn-line::before {
    /* 上の線の位置 */
    transform: translateY(-8px);
  }
  .btn-line::after {
    /* 下の線の位置 */
    transform: translateY(8px);
  }
  /***** メニューオープン時 *****/
  .btn-line.open {
    background-color: transparent;  	/* 真ん中の線を透明に */
  }
  .btn-line.open::before {
    transform: rotate(45deg);  /* 上の線を傾ける */
  }
  .btn-line.open::after {
    transform: rotate(-45deg);  /* 下の線を傾ける */
  }
  .header {
    height: 60px;
    width: 100%;
    top: 0;
    background-color: #fff;
    position: fixed;
    z-index: 100;
  }
  .header-logo {
    padding-top: 18px;
    position: absolute;
    left: 24px;
    height: 100%;
  }
  .header-logo a:hover {  /* スマホでリンク後透過0.5を解除 */
    opacity: 1;
  }
  .header-logo img {
    height: 70%;
    width: auto;
  }
  .nav-pc {
    display: none;
  }
  .nav-sp {
    display: none;
    z-index: 500;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #e8e6e6;
    width: 100%;
    height: 100%;
    padding-top: 60px;
  }
  .nav-sp ul {
    display: block;
    width: 180px;
    margin: 0 auto;
  }
  .nav-sp ul li {             
    border-bottom: solid 1px #cdcdcd;
  }
  .nav-sp ul li:nth-child(5) {             
    border-bottom-style: none;
  }
  .nav-sp ul li a {
    display: block;
    text-decoration: none;
    vertical-align: middle;
    color: #333;
    font-size: 1.8rem;
    font-weight: 400;
    font-family: 'Shippori Mincho', serif;
    line-height: 5.0rem;
    letter-spacing: 0.1rem;
  }
  /***** アンカーリンクジャンプ時ヘッダーの高さ分下に表示 *****/
  .contents {
    padding-top: 60px;
  }
  .contents_innner {
      padding-top: 60px;
      margin-top:-60px;
  }
}

/*** fig-link ***/
.fig-link {
  width: 100%;
  padding: 0 80px;
}
.photo-fig-link-pc {
  width: 100%;
}
.photo-fig-link-sp {
  display: none;
}
.fig-link a:hover {
  opacity: 0.8;
}
@media (max-width: 600px) {
  .fig-link {
    padding: 0;
  }
  .photo-fig-link-pc {
    display: none;
  }
  .photo-fig-link-sp {
    display: block;
    width: 100%;
  }
}

/*** footer ***/
.footer {
  background-image: url("../images/top/footer.jpg");
  background-position: center;
  background-size:cover;
  background-repeat: no-repeat;
  color: #333;
  padding: 60px 0 20px;
  margin-top: 250px;
}
.footer__site-map {
  margin-bottom: 50px;
}
.footer__site-map ul {
  display: flex;
  justify-content: center;
}
.footer__site-map li {
  padding: 0 46px;
}
.footer__site-map li a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  font-size: 2.0rem;
  font-family: 'Shippori Mincho', serif;
}
.footer__sns {
  margin-bottom: 93px;
}
.footer__sns ul {
  display: flex;
  justify-content: center;
}
.footer__sns li {
  padding: 0 25px;
}
.footer__sns ul img {
  width: 40px;
  height: auto;
}
.footer small {
  font-weight: 400;
  font-size: 1.8rem;
  font-family: 'Shippori Mincho', serif;
  text-align: center;
}
@media (max-width: 760px) {
  .footer {
    background-image: url("../images/top/footer_sp.jpg");
    margin-top: 150px;
  }
  .footer__site-map {
    margin-bottom: 35px;
  }
  .footer__site-map ul {
    display: block;
  }
  .footer__site-map li {
    padding: 0 0 25px;
  }
  .footer__site-map li a {
    font-size: 1.8rem;
  }
  .footer__sns {
    margin-bottom: 60px;
  }
  .footer__sns li {
    padding: 0 20px;
  }
  .footer small {
    font-size: 1.2rem;
  }
}

/*** return to top ***/
#scroll-top {
  width: 50px;
  height: 56px;
  position: fixed;
  right: -50px;
  bottom: 30px;
  opacity: 0.8;
  z-index: 99;
}
#scroll-top a {
  width: 100%;
  height: auto;
  text-decoration: none;
}
#scroll-top a img {
  width: 100%;
  height: auto;
}




