@charset "UTF-8";
/* Scss Document */
/*英字*/
/* Scss Document */
/*naga add*/
/* 下からフェードイン(初期値) */
.js-fadeUp, .js-fadeUpSlow {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateY(30px);
  /* 下に30pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* 下からフェードイン(スクロールした後) */
.js-fadeUp.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: 0s;
  /*開始を遅らせる */
}

.js-fadeUpSlow.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateY(0);
  /* 30px上に移動する */
  transition-delay: .5s;
  /* 開始を遅らせる */
}

/* 左からフェードイン(初期値) */
.js-fadeIn, .js-fadeInSlow {
  opacity: 0;
  /* 最初は非表示 */
  transform: translateX(-100px);
  /* 左に100pxの位置から */
  transition: opacity .8s, transform .8s;
  /* 透過率と縦方向の移動を0.8秒 */
}

/* 左からフェードイン(スクロールした後) */
.js-fadeIn.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /* 100px右に移動する */
  transition-delay: 0s;
  /* 開始を遅らせる */
}

.js-fadeInSlow.is-inview {
  opacity: 1;
  /* 表示領域に入ったら表示 */
  transform: translateX(0);
  /* 100px右に移動する */
  transition-delay: .5s;
  /* 開始を遅らせる */
}

/* 用紙サイズの指定（A4） */
@page {
  margin: 8mm;
  size: 210mm 297mm;
  /* A4縦 */
}
@media print {
  /* 全体設定 */
  body {
    -webkit-print-color-adjust: exact;
    /* 印刷時でも背景色や背景画像を表示 */
    width: 1400px;
    /* 印刷時の全ページ幅を統一 */
    zoom: 0.8;
    /* なるべく多くのブラウザで切れないようにするため */
    /*no animation*/
  }
  body header {
    position: absolute !important;
    max-width: 1400px;
    width: 1400px !important;
  }
  body .header--flex {
    width: 1400px !important;
  }
  body .btnBox {
    display: none;
  }
  body #btn_pagetop {
    display: none;
  }
  body .js-fadeUp,
  body .js-fadeIn,
  body .js-fadeUpSlow,
  body .js-fadeInSlow {
    opacity: 1;
  }
  body .js-fadeIn,
  body .js-fadeInSlow {
    transform: translateX(0);
  }
  body .js-fadeUp,
  body .js-fadeUpSlow {
    transform: translateY(0);
  }
  body .js-fadeUp.is-view,
  body .js-fadeIn.is-view,
  body .js-fadeUpSlow.is-view,
  body .js-fadeInSlow.is-view {
    animation-name: none;
  }
}
.header {
  background-color: #ffefe7 !important;
  box-shadow: 0px 3px 3.7px 0.3px rgba(90, 90, 90, 0.1);
}

.mv {
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 100px auto 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-top: 80px;
  }
}
.mv__bg {
  width: 100%;
  height: 220px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 40px;
  background-image: url("../img/access/bg_tmv.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
}
@media screen and (max-width: 479px) {
  .mv__bg {
    height: 160px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.mv__flex {
  width: 100%;
  height: 220px;
  margin: 0 auto;
  max-width: 1720px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 479px) {
  .mv__flex {
    height: 160px;
  }
}
.mv__cc {
  font: 400 60px/1.5 "Poiret One", sans-serif;
  color: #ff9a24;
  padding-left: 80px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 1279px) {
  .mv__cc {
    font-size: 48px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv__cc {
    font-size: 36px;
  }
}
@media screen and (max-width: 479px) {
  .mv__cc {
    padding-bottom: 60px;
  }
}
.mv__cc br {
  display: none;
}
@media screen and (max-width: 767px) {
  .mv__cc br {
    display: block;
  }
}
.mv__image {
  display: block;
  height: auto;
  max-width: 100%;
  position: absolute;
  bottom: 0;
  right: 40px;
}
@media screen and (max-width: 1279px) {
  .mv__image {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .mv__image {
    width: 200px;
  }
}
@media screen and (max-width: 479px) {
  .mv__image {
    width: 180px;
  }
}
@media screen and (max-width: 329px) {
  .mv__image {
    width: 48%;
  }
}

/*背景がある場合は、背景を指定するdivでsectionを囲む*/
section:not(section section) {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 120px;
}
@media screen and (min-width: 1441px) {
  section:not(section section) {
    max-width: 1680px;
  }
}
@media screen and (max-width: 1279px) {
  section:not(section section) {
    padding: 0 40px;
  }
}
@media screen and (max-width: 479px) {
  section:not(section section) {
    padding: 0 15px;
  }
}

/*only here*/
body section:first-of-type {
  margin-top: 50px;
}

body section:last-of-type {
  margin-bottom: 200px;
}

.hl__title1 {
  font: 500 32px/1.5 "M PLUS 1", sans-serif;
  color: #1d1d1d;
  display: block;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 767px) {
  .hl__title1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 479px) {
  .hl__title1 {
    font-size: 24px;
  }
}
.hl__title2 {
  margin-top: 100px;
  text-align: center;
  font: 500 28px/1.5 "M PLUS 1", sans-serif;
  color: #ff9a24;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 10px 25px;
  background-color: #fffaec;
  border-bottom: 4px dotted #ff9a24;
}
@media screen and (max-width: 479px) {
  .hl__title2 {
    font-size: 22px;
    padding: 15px 10px;
  }
}
@media screen and (max-width: 1279px) {
  .hl__title2.no-mt {
    margin-top: 0;
  }
}
.hl__title3 {
  font: 500 20px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  padding-left: 50px;
  margin-bottom: 25px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .hl__title3 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 479px) {
  .hl__title3 {
    font-size: 18px;
    padding-left: 20px;
  }
}
.hl__title3:last-child {
  margin-bottom: 0;
}
.hl__title3:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 39px;
  height: 100%;
  background-image: url("../img/common/headline-mark.png");
  background-size: 39px;
  background-repeat: no-repeat;
  background-position: top left;
}
@media screen and (max-width: 479px) {
  .hl__title3:before {
    width: 20px;
    background-size: 20px;
    background-position: top 6px left;
  }
}

.secHowto .map {
  margin-top: 60px;
}
@media screen and (max-width: 479px) {
  .secHowto .map {
    margin-top: 30px;
  }
}
.secHowto .map img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.secHowto__wrap {
  margin-top: 70px;
}
.secHowto__grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
  gap: 25px 50px;
}
@media screen and (max-width: 767px) {
  .secHowto__grid {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 479px) {
  .secHowto__grid {
    row-gap: 15px;
  }
}
.secHowto__grid dl {
  margin: 0;
  position: relative;
}
.secHowto__grid dt {
  position: absolute;
  top: 0;
  display: inline-flex;
  align-items: center;
  column-gap: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 10px 15px;
  border-radius: 5px;
  font: 500 16px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #fff;
  background-color: #ff9a24;
}
@media screen and (max-width: 479px) {
  .secHowto__grid dt {
    font-size: 14px;
  }
}
.secHowto__grid dt img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
.secHowto__grid dd {
  margin-top: 15px;
  margin-left: 10px;
  font: 500 16px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 55px 20px 40px 15px;
  background-color: #fffaec;
}
@media screen and (max-width: 479px) {
  .secHowto__grid dd {
    padding: 50px 10px 40px 10px;
    font-size: 14px;
  }
}
.secHowto__link {
  margin-top: 20px;
}
.secHowto__link--anchor {
  display: inline-flex;
  align-items: center;
  column-gap: 5px;
  text-decoration: none;
  font: 500 18px/1.5 "M PLUS 1", sans-serif;
  color: #ff4356 !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.secHowto__link--anchor img {
  margin-right: 5px;
}
.secHowto__link--anchor span {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 5px;
  padding-bottom: 5px;
}
.secHowto__link--anchor:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .secHowto__link--anchor:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: alpha(opacity=70);
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

.secGmap__wrap {
  padding-top: 50px;
}
.secGmap__wrap:first-child {
  margin-top: 0;
}
.secGmap__wrap iframe {
  display: block;
  max-width: 1050px;
  margin: 0 auto;
}
.secGmap__wrap:nth-of-type(2) {
  padding-top: 100px;
}

.secGuide__paragraph {
  margin-top: 40px;
  font: 500 16px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
  margin-bottom: 40px;
}
@media screen and (max-width: 479px) {
  .secGuide__paragraph {
    font-size: 14px;
  }
}
.secGuide__paragraph span {
  display: inline-block;
  font-size: 15px;
}
@media screen and (max-width: 479px) {
  .secGuide__paragraph span {
    font-size: 13px;
  }
}
.secGuide__grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px 70px;
}
@media screen and (max-width: 767px) {
  .secGuide__grid {
    grid-template-columns: 1fr;
  }
}
.secGuide__item figure {
  margin: 0;
}
.secGuide__item figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 340 / 215;
  /* 画像のアスペクト比を維持 */
  object-fit: cover;
}
@media screen and (max-width: 1279px) {
  .secGuide__item figure img {
    width: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 400px) {
  .secGuide__item figure img {
    width: 100%;
  }
}
.secGuide__item figure figcaption {
  text-align: left;
  font: 500 18px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #005739;
  margin-top: 10px;
}
@media screen and (max-width: 1279px) {
  .secGuide__item figure figcaption {
    text-align: center;
  }
}
@media screen and (max-width: 479px) {
  .secGuide__item figure figcaption {
    font-size: 16px;
  }
}
.secGuide__item p {
  font: 500 15px/1.5 "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "Meiryo UI", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  color: #1d1d1d;
  margin-top: 15px;
}
@media screen and (max-width: 479px) {
  .secGuide__item p {
    font-size: 14px;
    margin-top: 10px;
  }
}

.secRoute .secRosenzu .rosenzu {
  margin-top: 60px;
}
@media screen and (max-width: 479px) {
  .secRoute .secRosenzu .rosenzu {
    margin-top: 30px;
  }
}
.secRoute .secRosenzu .rosenzu sourse, .secRoute .secRosenzu .rosenzu img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.secWrap__btn {
  text-align: center;
  padding-top: 100px;
}
@media screen and (max-width: 479px) {
  .secWrap__btn {
    padding-top: 50px;
  }
}
.secWrap__btn--anchor {
  display: block;
  width: 260px;
  height: 60px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
  border-radius: 30px;
  border: 1px solid #fff;
  background: #ff9a24;
  font: 500 18px/1.5 "M PLUS 1", sans-serif;
  color: #fff !important;
  padding: calc(20px - (18px * 1.5 - 18px) / 2) 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
@media screen and (max-width: 479px) {
  .secWrap__btn--anchor {
    width: 240px;
    height: auto;
    min-height: 60px;
    max-width: 100%;
    font-size: 16px;
    padding: calc(20px - (16px * 1.5 - 16px) / 2) 10px;
  }
}
.secWrap__btn--anchor:hover {
  text-decoration: none;
}
@media (hover: hover) {
  .secWrap__btn--anchor:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: alpha(opacity=70);
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}
