@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap');


/* @docs
label: Core Remedies
version: 0.1.0-beta.2

note: |
  These remedies are recommended
  as a starter for any project.

category: file
*/


/* @docs
label: Box Sizing

note: |
  Use border-box by default, globally.

category: global
*/

*,
::before,
::after {
    box-sizing: border-box;
}


/* @docs
label: Line Sizing

note: |
  Consistent line-spacing,
  even when inline elements have different line-heights.

links:
  - https://drafts.csswg.org/css-inline-3/#line-sizing-property

category: global
*/

html {
    line-sizing: normal;
}


/* @docs
label: Body Margins

note: |
  Remove the tiny space around the edge of the page.

category: global
*/

body {
    margin: 0;
}


/* @docs
label: Hidden Attribute

note: |
  Maintain `hidden` behaviour when overriding `display` values.

  category: global
*/

[hidden] {
    display: none;
}


/* @docs
label: Heading Sizes

note: |
  Switch to rem units for headings

category: typography
*/

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.17rem;
}

h4 {
    font-size: 1.00rem;
}

h5 {
    font-size: .83rem;
}

h6 {
    font-size: .67rem;
}


/* @docs
label: H1 Margins

note: |
  Keep h1 margins consistent, even when nested.

category: typography
*/

h1 {
    margin: .67em 0;
}


/* @docs
label: Pre Wrapping

note: |
  Overflow by default is bad...

category: typography
*/

pre {
    white-space: pre-wrap;
}


/* @docs
label: Horizontal Rule

note: |
  1. Solid, thin horizontal rules
  2. Remove Firefox `color: gray`
  3. Remove default `1px` height, and common `overflow: hidden`

category: typography
*/

hr {
    overflow: visible;
    height: 0;
    border-width: 1px 0 0;
    border-style: solid;
    color: inherit;
}


/* @docs
label: Responsive Embeds

note: |
  1. Block display is usually what we want
  2. The `vertical-align` removes strange space-below in case authors overwrite the display value
  3. Responsive by default
  4. Audio without `[controls]` remains hidden by default

category: embedded elements
*/

.bl_content img,
.bl_content svg,
.bl_content video,
.bl_content canvas,
.bl_content audio,
.bl_content iframe,
.bl_content embed,
.bl_content object {
    display: block;
    max-width: 100%;
    vertical-align: middle;
}

.bl_content audio:not([controls]) {
    display: none;
}


/* @docs
label: Responsive Images

note: |
  These new elements display inline by default,
  but that's not the expected behavior for either one.
  This can interfere with proper layout and aspect-ratio handling.

  1. Remove the unnecessary wrapping `picture`, while maintaining contents
  2. Source elements have nothing to display, so we hide them entirely

category: embedded elements
*/

.bl_content picture {
    display: contents;
}

.bl_content source {
    display: none;
}


/* @docs
label: Aspect Ratios

note: |
  Maintain intrinsic aspect ratios when `max-width` is applied.
  `iframe`, `embed`, and `object` are also embedded,
  but have no intrinsic ratio,
  so their `height` needs to be set explicitly.

category: embedded elements
*/

.bl_content img,
.bl_content svg,
.bl_content video,
.bl_content canvas {
    height: auto;
}


/* @docs
label: Audio Width

note: |
  There is no good reason elements default to 300px,
  and audio files are unlikely to come with a width attribute.

category: embedded elements
*/

.bl_content audio {
    width: 100%;
}


/* @docs
label: Image Borders

note: |
  Remove the border on images inside links in IE 10 and earlier.

category: legacy browsers
*/

.bl_content img {
    border-style: none;
}


/* @docs
label: SVG Overflow

note: |
  Hide the overflow in IE 10 and earlier.

category: legacy browsers
*/

.bl_content svg {
    overflow: hidden;
}


/* @docs
label: HTML5 Elements

note: |
  Default block display on HTML5 elements.
  For oldIE to apply this styling one needs to add some JS as well (i.e. `document.createElement("main")`)

links:
  - https://www.sitepoint.com/html5-older-browsers-and-the-shiv/

category: legacy browsers
*/


/* @docs
label: Checkbox & Radio Inputs

note: |
  1. Add the correct box sizing in IE 10
  2. Remove the padding in IE 10

category: legacy browsers
*/

[type='checkbox'],
[type='radio'] {
    box-sizing: border-box;
    padding: 0;
}


/* ------------------------------------
//  base
// ----------------------------------*/

* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
}

body .bl_content {
    position: relative;
    width: 100%;
    height: 100%;
    color: #000;
    text-align: left;
    word-wrap: break-word;
    letter-spacing: 0;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.8;
    overflow-wrap: break-word;
}

html .bl_content {
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    background-color: transparent;
    vertical-align: bottom;
    font-family: inherit;
    cursor: pointer;
    transition: all .1s linear 0s;
    -webkit-appearance: none;
    appearance: none;
}

button:hover {
    opacity: .8;
}


/* ------------------------------------
//  見出し
// ----------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}


/* ------------------------------------
//  フォント
// ----------------------------------*/

em,
strong {
    font-weight: 800;
    font-style: normal;
}
.fontsm {
    font-size: 12px;
    line-height: 1.4em;
    margin: 7px 0;
}


/* ------------------------------------
//  リスト
// ----------------------------------*/

ol,
ul {
    list-style: none;
}

dl,
dt,
dd {
    margin: 0;
}


/* ------------------------------------
//  段落設定
// ----------------------------------*/

p {
    margin: 1em 0 0;
}


/* ------------------------------------
//  画像
// ----------------------------------*/

figure {
    margin: 0;
}

img,
svg {
    width: auto;
    height: auto;
    vertical-align: bottom;
    line-height: 1;
}

.og {
    max-width: 190px!important;
    width:100%;
}


/* ------------------------------------
//  リンク
// ----------------------------------*/

.bl_content a {
    display: inline-block;
    color: #000;
    text-decoration: none;
    transition: all .1s linear 0s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

a i {
    margin: 0 4px;
}

header a:link,
header a:visited,
footer a:link,
footer a:visited {
    color: #333;
    text-decoration: none;
}

header a:hover,
header a:active,
footer a:hover,
footer a:active {
    color: #333;
    opacity: 1;
}

.bl_content a img {
    opacity: 1;
}


/* ----------------------------------------------------------------
  ボタン
---------------------------------------------------------------- */

.bl_content .button {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    padding: 0 1em;
    min-width: 165px;
    height: 35px;
    border-radius: 999px;
    background-color: #000;
    font-weight: 800;
    line-height: 1.5;
    align-items: center;
    justify-content: center;
}

.bl_content .button:link,
.bl_content .button:visited {
    color: #fff;
}

.bl_content .button:hover {
    text-decoration: underline;
}

.bl_content .button:active {
    text-decoration: none;
}

.bl_content .button--more1::after {
    margin-left: 5px;
    width: 13px;
    height: 100%;
    background-image: url(../img/common/icon-blank1.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    content: '';
}

.bl_content .button--more2::after {
    margin-left: 5px;
    width: 15.5px;
    height: 100%;
    background-image: url(../img/common/icon-arrow1.svg);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
    content: '';
}

.bl_content .button--purple {
    background-color: #9b36a3;
}

.bl_content .button--brown {
    background-color: #6e3a3a;
}

.bl_content .button--brown02 {
    background-color: #9e6b6f;
}

.bl_content .button--gray {
    background-color: #717171;
}

.bl_content .button--green {
    background-color: #69c295;
}

.bl_content .button--blue {
    background-color: #7eabdf;
}

.bl_content .button--yellow {
    background-color: #abbb3c;
}

.bl_content .button--link::after {
    margin-left: 5px;
    width: 11px;
    height: 11px;
    background-image: url(../img/common/icon-blank1.svg);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: '';
}


/* ----------------------------------------------------------------
  その他
---------------------------------------------------------------- */

.on-pc {
    display: none;
}


/* ----------------------------------------------------------------
  ヘッダーのレイアウト
---------------------------------------------------------------- */

.header {
    padding: 11px 10px;
    background-color: #f0ffcc;
}

.header .header__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: center;
}

.header .header__title i {
    margin-right: 7px;
    flex-basis: 40px;
    -ms-flex-preferred-size: 40px;
}

.header .header__title i img {
    width: 100%;
}

.header .header__title span {
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.3;
}

.header .header__title span img {
    margin-bottom: 2px;
    width: 161px;
}


/* ----------------------------------------------------------------
  フッターのレイアウト
---------------------------------------------------------------- */

.page-footer {
    margin-top: 45px;
    padding: 0 15px 15px;
}

.page-footer__note {
    font-size: 1rem;
    line-height: 1.6;
}


/* ----------------------------------------------------------------
  各ページ共通
---------------------------------------------------------------- */

.main {
    padding-right: 15px;
    padding-left: 15px;
    text-align: center;
}

.page-title {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin-top: 30px;
    padding: 8px 10px;
    min-height: 86px;
    border-radius: 23px;
    color: #fff;
    font-size: 1.7rem;
    line-height: 1.4;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: center;
}

.page-title--orange {
    background-color: #f6a06e;
    margin-top: 20px!important;
}

.page-title--green {
    background-color: #96c966;
}

.page-title--pink {
    background-color: #f89fd0;
}

.page-intro {
    margin-top: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1.6;
}

.page-intro--l {
    font-size: 1.2rem;
}

.content-title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    padding: 3px 10px;
    min-height: 27px;
    border-radius: 999px;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.4;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: center;
}

.content-title img {
    margin: auto;
}

.content-title--orange {
    background-color: #f6a06e;
}

.content-title--blue,
.content-title--green,
.content-title--brown {
    padding: 4px 0 0;
}

.content-title--blue span,
.content-title--green span,
.content-title--brown span {
    display: inline-block;
    margin-right: 2px;
    padding-right: 5px;
    background-image: url(../img/plus/arror.svg);
    background-position: right center;
    background-size: 6px 16px;
    background-repeat: no-repeat;
    font-size: 8px;
}

.content-title--blue {
    background-color: #69a3d8;
}

.content-title--green {
    background-color: #69c295;
}

.content-title--brown {
    background-color: #9e6b6f;
}

.content-title--gold {
    background-color: #9a8b4b;
}

.content-title--pink {
    background-color: #f9a2d4;
}

.content-intro {
    margin-top: 10px;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.5;
}

.content-intro02 {
    margin-top: 10px;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.5;
}

.page-footer-link-wrap {
    margin-top: 50px;
    padding-bottom: 165px;
}

.text-attention {
    margin-top: 70px;
    text-align: left;
    font-size: 1.5rem;
    line-height: 1.6;
}


/* ----------------------------------------------------------------
  TOP
---------------------------------------------------------------- */

.kv {
    margin-top: -9px;
    padding-bottom: 15px;
    background-color: #f0ffcc;
    text-align: center;
}

.kv .kv__catchcopy-sub {
    position: relative;
    z-index: 1;
}

.kv .kv__catchcopy-sub::before {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 23.5%;
    background-color: #fff;
    content: '';
}

.kv .kv__catchcopy-sub img {
    margin: 0 auto;
    width: 63.7%;
}

.kv .kv__catchcopy-main {
    padding: 11px 0 8px;
    background-color: #fff;
}

.kv .kv__catchcopy-main img {
    margin: 0 auto;
    width: 92%;
}

.kv .kv__train {
    position: relative;
    z-index: 1;
}

.kv .kv__train::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 50%;
    background-color: #fff;
    content: '';
}

.kv .kv__train img {
    margin: 0 auto;
    width: 68%;
}

.kv .kv__text {
    margin-top: 12px;
    text-align: center;
    font-weight: 800;
    font-size: 2.95vw;
    line-height: 1.63;
}

.kv .kv__photos {
    margin: 11px auto 0;
    width: 92%;
}

.kv .kv__photos figcaption img {
    margin-top: 3px;
    width: 22px;
}

.link-tanoshimikata {
    margin-top: 20px;
    text-align: center;
}

.link-tanoshimikata img {
    padding: 0 13px;
}

.link-tanoshimikata .link-tanoshimikata__title {
    margin: 0 auto;
    max-width: 535px;
    width: 59%;
    text-align: center;
}

.link-tanoshimikata .link-tanoshimikata__navi {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-pack: justify;
    -ms-flex-align: stretch;
    margin: 9px auto 0;
    max-width: 827px;
    align-items: stretch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: flex-start;
    justify-content:  center;
}

.link-tanoshimikata .link-tanoshimikata__navi a {
    flex-basis: 30.5%;
    -ms-flex-preferred-size: 30.5%;
}

.link-tanoshimikata .link-tanoshimikata__navi a:hover {
    opacity: .8;
}

.sns {
    margin-top: 30px;
    padding: 20px 15px;
    background-color: #e0eff9;
}

.sns .sns__title {
    padding: 5px;
    border-radius: 15px;
    background-color: #5c92c9;
    color: #fff;
    font-weight: 800;
    font-size: 1.3rem;
    line-height: 1.38;
}

.sns .sns__block .sns__block__item {
    margin-top: 28px;
}

.sns .sns__block .sns__block__item:last-of-type {
    margin-top: 40px;
}

.sns .sns__block .sns__block__item .sns__block__item__icon img {
    margin: auto;
    width: 50%;
}

.sns .sns__block .sns__block__item .sns__block__item__icon figcaption {
    margin-top: 18px;
    font-weight: 600;
    font-size: 2.2rem;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 0.95;
}

.sns .sns__block .sns__block__item .sns__block__item__include {
    margin-top: 15px;
    /*border: 1px solid #000; */
}

.sns .sns__block .sns__block__item .sns__block__item__include.instagram {
    overflow-y: scroll;
}

.instagram-list-wrap {
    padding: 5px;
    background-color: #fff;
    height: 100%;
    /* border-radius: 12px; */
}

#instagram-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: stretch;
    margin: 0;
    padding: 0;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-start;
}

#instagram-list li {
    padding: 3px;
    width: 33.333%;
    list-style: none;
}

#instagram-list li a {
    position: relative;
    display: block;
}

#instagram-list img {
    max-width: 100%;
    height: auto;
}

.blank-link {
    padding: 15px 15px 20px;
}

.blank-link .blank-link__kei {
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    height: 12px;
}

.blank-link .blank-link__kei img {
    position: absolute;
    top: 0;
    left: 50%;
    max-width: none;
    width: auto;
    height: 100%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.blank-link .blank-link__kikan {
    margin-top: 12px;
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.5;
}

.blank-link .blank-link__text {
    font-size: 1.2rem;
    line-height: 1.5;
}

.blank-link .button {
    margin-top: 15px;
}

.blank-link--instaawrd {
    margin-top: 43px;
    background-color: #fde4ff;
}

.blank-link--instaawrd .blank-link__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    height: 46px;
    border-radius: 15px;
    background-color: #9b36a3;
    align-items: center;
    justify-content: center;
}

.blank-link--instaawrd .blank-link__title img {
    width: 70.5%;
}

.blank-link--syukuhakucp {
    margin-top: 20px;
    background-color: #e9e2cd;
}

.blank-link--syukuhakucp .blank-link__title img {
    margin-left: auto;
    width: 92.5%;
}

.related-links {
    margin-top: 40px;
}

.related-links .related-links__title {
    font-size: 1.6rem;
    line-height: 1.5;
}

.related-links .related-links__navi .related-links__navi__item {
    display: block;
    margin-top: 20px;
    color: inherit;
}

.related-links .related-links__navi .related-links__navi__item span {
    display: block;
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.5;
}

.related-links .related-links__navi .related-links__navi__item img {
    margin: 2px auto 0;
    max-width: 350px;
    width: 47.8%;
}


/* ----------------------------------------------------------------
  course
---------------------------------------------------------------- */

.icon-train {
    margin-top: 15px;
    font-size: 0;
}

.icon-train img {
    display: inline-block;
    margin: 0 5px;
    max-width: 55px;
    width: 16%;
}

.map {
    position: relative;
    margin-top: 20px;
 //   padding-top: 123%;
 padding-bottom: 123%;
    height: 0;
//    background-image: url(../img/course/bg-map.png);
    background-position: center;
    background-size: 100%;
    background-repeat: no-repeat;
}

.map p {
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 44%;
}

.map .map__text {
    position: absolute;
    right: 0;
    bottom: 10px;
    width: 44%;
}

.modelcource .content-title {
    margin-top: 30px;
}

.modelcource .hanrei {
    margin-top: 14px;
    /* border: 1px solid #000; */
}

.modelcource .hanrei img {
    width: 100%;
}

.bl_content .button-cource {
    margin-top: 10px;
}

.modelcource__content {
    display: none;
}

.modelcource__content .modelcource__content__item {
    margin-top: 10px;
}

.bnr-tabisurukitashinano {
    margin-top: 18px;
}

.bnr-tabisurukitashinano .txt-tabisurukitashinano {
    margin-right: auto;
    margin-left: auto;
    width: 309px;
}

.bnr-tabisurukitashinano a {
    margin-top: 10px;
}

.bnr-tabisurukitashinano a img {
    width: 252px;
}

.tanoshii-train {
    margin-top: 15px;
}

.harugentei-train {
    margin-top: 50px;
}

.train {
    margin-top: 21px;
    padding: 12px 12px 29px;
}

.content-title+.train {
    margin-top: 12px;
}

.train .train__header .train__header__name {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.train .train__header .train__header__name .train-type {
    margin-right: 10px;
    padding: 6px 10px;
    border: 4px solid #000;
    border-radius: 17px;
    background-color: #fff;
    white-space: nowrap;
    font-size: 2rem;
    line-height: 1;
}

.train .train__header .train__header__name .train__header__name__img {
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
}

.train .train__header .train__header__name .train__header__name__img img {
    margin: auto;
    width: 100%;
}

.train .train__header .train__header__name .train__header__name__text {
    text-align: left;
    font-size: 6.3vw;
    line-height: 1.1;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
}

.train .train__header .train__header__image {
    position: relative;
    margin-top: 20px;
}

.train .train__body {
    margin-top: 10px;
}

.train .train__body .train__body__text {
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #000;
    text-align: left;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.5;
}

.train .train__body .train__body__data {
    margin-top: 5px;
    padding-left: 1em;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.4;
}

.train .train__body .train__body__data dt {
    position: relative;
    text-indent: -1em;
    font-weight: 800;
}

.train .train__body .train__body__data dt::before {
    content: '●';
}

.train .train__body .train__body__data dd .train__body__data__image {
    margin-top: 3px;
    width: 200px;
}

.train .train__body .button {
    margin-top: 30px;
    width: 92%;
}

.train--furusato {
    background-color: #ecf5d9;
}

.train--furusato .train__header .train__header__name .train-type {
    border-color: #7ebe00;
}

.train--furusato .train__header .train__header__name .train__header__name__img img {
    width: 92%;
}

.train--furusato .train__body .train__body__data dt::before {
    color: #7ebe00;
}

.train--furusato .train__body .button {
    background-color: #7ebe00;
}

.train--oikotto {
    background-color: #f7efef;
}

.train--oikotto .train__header .train__header__name .train-type {
    border-color: #c99194;
}

.train--oikotto .train__body .train__body__data dt::before {
    color: #c99194;
}

.train--oikotto .train__body .button {
    background-color: #c99194;
}

.train--highrail1375 {
    background-color: #e3f3fd;
}

.train--highrail1375 .train__header .train__header__name .train-type {
    border-color: #42b1ef;
}

.train--highrail1375 .train__body .train__body__data dt::before {
    color: #42b1ef;
}

.train--highrail1375 .train__body .button {
    background-color: #42b1ef;
}

.train--nightviewobasute {
    background-color: #dee3f1;
}

.train--nightviewobasute .train__header .train__header__name .train-type {
    border-color: #2145a3;
}

.train--nightviewobasute .train__header .train__header__name .train__header__name__text {
    color: #2145a3;
}

.train--nightviewobasute .train__body .train__body__data dt::before {
    color: #2145a3;
}

.train--nightviewobasute .train__body .button {
    background-color: #2145a3;
}

.train--resortviewsuwako {
    background-color: #e6f4f3;
}

.train--resortviewsuwako .train__header .train__header__name .train-type {
    border-color: #59b7ad;
}

.train--resortviewsuwako .train__header .train__header__name .train__header__name__text {
    color: #59b7ad;
}

.train--resortviewsuwako .train__header .train__header__image .fixed-image {
    position: absolute;
    right: -3.5%;
    bottom: -10%;
    width: 46.5%;
}

.train--resortviewsuwako .train__body .train__body__data dt::before {
    color: #59b7ad;
}

.train--resortviewsuwako .train__body .button {
    background-color: #59b7ad;
}

.train--shinshu {
    background-color: #fcf0f6;
}

.train--shinshu .train__header .train__header__name .train-type {
    border-color: #e16ba7;
}

.train--shinshu .train__header .train__header__name .train__header__name__text {
    color: #e16ba7;
}

.train--shinshu .train__body .train__body__data dt::before {
    color: #e16ba7;
}

.train--shinshu .train__body .button {
    background-color: #e16ba7;
}

.train--shinonoi120s {
    background-color: #fcf0e0;
}

.train--shinonoi120s .train__header .train__header__name .train-type {
    border-color: #ea9d33;
}

.train--shinonoi120s .train__header .train__header__name .train__header__name__text {
    color: #ea9d33;
}

.train--shinonoi120s .train__body .train__body__data dt::before {
    color: #ea9d33;
}

.train--shinonoi120s .train__body .button {
    background-color: #ea9d33;
}

.harugentei-train .train__header .train__header__image {
    margin-top: 10px;
}


/* ----------------------------------------------------------------
  sightseeing events
---------------------------------------------------------------- */

.sightseeing {
    margin-top: 25px;
}

.title-sightseeing {
    width: 171px;
}

.events {
    margin-top: 85px;
}

.se-block {
    margin-top: 30px;
    border-top: 1px solid #000;
}

.se-block:first-of-type {
    margin-top: 15px;
}

.se-block .se-block__title {
    padding-top: 5px;
    text-align: left;
    font-size: 1.8rem;
    line-height: 1.5;
}

.se-block .se-block__title .img-title {
    margin-top: 5px;
    height: 26px;
}

.se-block .se-block__image figure {
    margin-top: 10px;
}

.se-block .se-block__image figure figcaption {
    margin-top: 3px;
    text-align: left;
}

.se-block .se-block__image figure figcaption img {
    width: auto;
    height: 10px;
}

.se-block .se-block__data {
    margin-top: 5px;
}

.se-block .se-block__data .se-block__data__text {
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.75;
}

.se-block .se-block__data .se-block__data__text:first-of-type {
    margin-top: 0;
}

.se-block .se-block__data .se-block__data__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    -ms-flex-align: stretch;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.75;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.se-block .se-block__data .se-block__data__list--nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.se-block .se-block__data .se-block__data__list .se-block__data__list__label {
    white-space: nowrap;
    font-weight: 800;
}

.se-block .se-block__data .se-block__data__list .se-block__data__list__label::before {
    content: '●';
}

.se-block .se-block__data .se-block__data__list .se-block__data__list__label::after {
    content: '：';
}

.se-block .se-block__data .se-block__data__list .se-block__data__list__data:first-of-type {
    margin-top: 0;
}

.se-block .se-block__link {
    margin-top: 30px;
}

.se-block .se-block__link .button {
    font-size: 1.2rem;
}

.se-block .se-block__link .button::after {
    width: 11px;
}

.se-block--sightseeing {
    border-top-color: #9a8b4b;
}

.se-block--sightseeing .se-block__data .se-block__data__list .se-block__data__list__label::before {
    color: #9a8b4b;
}

.se-block--sightseeing .se-block__link .button {
    background-color: #9a8b4b;
}

.se-block--events {
    border-top-color: #f89fd0;
}

.se-block--events .se-block__data .se-block__data__list .se-block__data__list__label::before {
    color: #f89fd0;
}

.se-block--events .se-block__link .button {
    background-color: #f89fd0;
}


/* ----------------------------------------------------------------
  plus
---------------------------------------------------------------- */

.page-intro__plus {
    margin-top: 0;
}

.page-title-slash {
    margin-top: 12px;
    margin-bottom: 8px;
    color: #69c295;
    font-weight: bold;
    font-size: 12px;
}

.page-title-slash::before,
.page-title-slash::after {
    display: inline-block;
    width: 1px;
    height: 12px;
    background-color: #69c295;
    content: '';
}

.page-title-slash::after {
    margin-left: 8px;
    -ms-transform: translateY(2px) rotate(30deg);
    transform: translateY(2px) rotate(30deg);
}

.page-title-slash::before {
    margin-right: 8px;
    -ms-transform: translateY(2px) rotate(-30deg);
    transform: translateY(2px) rotate(-30deg);
}

.page-lv4Ttl {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #000;
    color: #ad7fbb;
    text-align: center;
    letter-spacing: -1px;
    font-weight: bold;
    font-size: 15px;
}

.page-title__balloon {
    position: absolute;
    top: -10px;
    width: 220px;
    height: 28px;
    background-image: url(../img/plus/ttl-ballun.svg);
    background-size: cover;
    color: #000;
    font-size: 10px;
}

.page-title__img01 {
    position: absolute;
    bottom: -20px;
    left: 8px;
    width: 52px;
    height: 51px;
}

.page-title__img03 {
    position: absolute;
    right: 8px;
    bottom: -20px;
    display: block;
    width: 80px;
}

.content-sub-title {
    margin-top: 20px;
    margin-bottom: 5px;
}

.caseUnitItem {
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px;
    padding-bottom: 5px;
    border-top: 1px solid #69c295;
    text-align: left;
}

.caseUnitItem_meta {
    padding-top: 8px;
    -ms-flex: 1;
    flex: 1;
}

.caseUnitItem_meta_img {
    margin-left: 10px;
    width: 95px;
}

.caseUnitItem_head {
    font-size: 10px;
}

.caseUnitItem_ttl {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 10px;
    line-height: 1.4;
}

.caseUnitItem_list {
    display: -ms-flexbox;
    display: flex;
    font-size: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.caseUnitItem_list>div {
    display: -ms-flexbox;
    display: flex;
    margin-right: 10px;
}

.caseUnitItem_list>div:last-child {
    margin-right: 0;
}

.caseUnitItem_list dt {
    font-weight: bold;
    min-width: 70px;
}

.caseUnitItem_list dt::before {
    display: inline-block;
    margin-right: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #69c295;
    content: '';
}

.caseUnitItem_list dt::after {
    content: ':';
}

.page_small {
    display: block;
    margin-top: 20px;
    margin-bottom: 15px;
    padding-left: 1em;
    text-align: left;
    text-indent: -1em;
    font-size: inherit;
    font-size: 10px;
}

.bl_content .button-cource img {
    width: 100%;
    height: auto;
}

.stmpUnit {
    margin-top: 15px;
}

.stmp_item {
    margin-bottom: 20px;
}

.stmp_item__table {
    margin-bottom: 12px;
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    background-color: #fff;
    text-align: left;
    font-size: 14px;
}

.stmp_item__table thead {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    background-color: #d6bfdd;
    white-space: nowrap;
}

.stmp_item__table thead th {
    padding: 0 5px;

    text-align: center;
}

.stmp_item__table thead th:not(:first-child) {
    border-left: dotted 1px #000;
}

.stmp_item__table tbody {
    font-weight: bold;
}

.stmp_item__table tbody tr {
    border-bottom: 1px solid #000;
    counter-increment: table;
}

.stmp_item__table tbody .counter_rest-3 {
    counter-reset: table 2;
}

.stmp_item__table tbody .counter_rest-7 {
    counter-reset: table 6;
}

.stmp_item__table tbody .counter_rest-11 {
    counter-reset: table 10;
}

.stmp_item__table tbody td,
.stmp_item__table tbody th {
    vertical-align: middle;
}

.stmp_item__table tbody td {
    padding: 0 7px;
    border-left: dotted 1px #000;
}

.stmp_item__table tbody td:last-child {
    text-align: left;
}
.stmp_item__table tbody td p {
    text-align: left;
}

.stmp_item__table tbody td[colspan='3'] {
    border-left: none;
    background-color: #d6bfdd;
    letter-spacing: -1px;
    font-size: 10px;
}

.stmp_item__table tbody th {
    text-align: center;
}

.stmp_item__table tbody th::before {
    content: counter(table);
}

.stmp_item_ttl {
    background-color: #ad7fbb;
    color: #fff;
    font-size: 17px;
    line-height: 1.5;
}

.stmp_item__body {
    padding: 10px;
    background-color: #efe5f1;
}

.stmp_item__front img {
    margin-bottom: 10px;
    width: 100%;
}

.stmp_item__disc_ttl {
    text-align: left;
    font-weight: bold;
    font-size: 14px;
}

.stmp_item__disc_ttl::before {
    display: inline-block;
    margin-right: 2px;
    color: #ad7fbb;
    content: '●';
}
/*
.stmp_item__disc_ttl::before {
    display: inline-block;
    margin-right: 2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ad7fbb;
    content: '';
    vertical-align: middle;
    -ms-transform: translateY(-2px);
    transform: translateY(-2px); 
}
*/

.stmp_item__disc_ttl02 {
    text-align: left;
    font-weight: bold;
}

.stmp_item__disc_ttl02::before {
    display: inline-block;
    margin-right: 2px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #7eabdf;
    content: '';
    vertical-align: middle;
}

.stmp_item__back {
    text-align: left;
    font-size: 12px;
}

.stmp_item__back img {
    float:left;
    width:40%;
    margin: 0 10px 10px 0;
}

.stmp_item__back p {
    font-weight: normal;
    margin-bottom: 1em;
}

.stmp_item__back .stmp_item__disc_ttl {
    margin-top: 4px;
    font-size: 12px;
}

.stmp_item__back small {
    display: block;
    padding-left: 1em;
    text-indent: -1em;
}

.stmp_item__back .no-indent {
    padding-left: 0;
    text-indent: 0;
}

.stmp_item__back .stmp_item__txt {
    margin-top: 0;
}

.stmp_item__pl {
    padding-left: 14px;    
}

.text-idt {
    padding-left: 1em;
    text-indent: -1em;
    text-align: left;
    margin: 0;
}

.text-idt6 {
    padding-left: 6em;
    text-indent: -6em;
    text-align: left;
    margin: 0;
}

.outbox {
    display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

.prize {
    width: 75%;
}

.imgbox {
    width:25%;
    padding: 0 0 0 5px;
    text-align: center;
    font-size: 10px;
}

.prize table {
    border:1px solid #b3adad;
    border-collapse:collapse;
    padding:5px;
    margin: 5px 0;
}
.prize table th {
    border:1px solid #b3adad;
    padding:5px;
    background: #f0f0f0;
    color: #313030;
}
.prize table td {
    border:1px solid #b3adad;
    text-align:center;
    padding:5px;
    background: #ffffff;
    color: #313030;
}

.triangle_txt {
    font-weight: bold;
}

.triangle_txt a,
.triangle_txt a:link {
    color: inherit;
}

.triangle_txt span {
    font-weight: normal;
}

.triangle_txt::before {
    display: inline-block;
    margin-right: 2px;
    width: 0;
    height: 0;
    border-width: 6px 0 6px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #ad7fbb;
    content: '';
}

.wave_txt {
    margin-top: 20px;
    color: #ad7fbb;
    font-weight: bold;
    font-size: 12px;
}

.triangle_sub_txt {
    margin-top: 0;
    margin-bottom: 2px;
    padding-left: 10px;
}

.app_dwnBtn_txt {
    color: #ad7fbb;
    font-size: 12px;
}

.app_dwnBtnWrapper {
    background-color: #efe5f1;
    font-weight: bold;
}

.app_dwnBtns {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    padding: 2px 15px 15px;
    /* justify-content: space-between; */
    justify-content: center;
}

.app_dwnBtns a {
    margin: 0 16px;
    display: inline-block;
    /* padding: 10px 0;
    width: 48%;
    border-radius: 8px;
    background-color: #ad7fbb;
    font-weight: bold;
    font-size: 25px; */
}

.app_dwnBtns a img {
    height: 90px;
}

@media screen and (max-width: 750px) {
    .app_dwnBtns a img {
        height: 50px;
    }
    .app_dwnBtns a {
        margin: 0 8px;
    }
}

.app_dwnBtns a:link,
.app_dwnBtns a:visited {
    color: #fff;
}

.dedline>div {
    margin-top: 8px;
}

.dedline dt,
.dedline dd {
    display: inline-block;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4;
}

.dedline dt {
    width: 5em;
}

.dedline dd {
    width: 12em;
    text-align: left;
}

.sake_img {
    margin-top: 10px;
    margin-bottom: 10px;
}

.busITemUnit_item {
    margin-bottom: 10px;
}

.bl_content .buttonMores {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin: 0 auto;
    width: 345px;
    justify-content: space-between;
}

.yellowBox {
    margin-top: 20px;
    padding: 0 5px 10px;
    border-radius: 16px;
    background-color: #faffad;
}

.yellowBox_img {
    margin: 0 auto;
    padding: 0 5px 5px;
    width: 280px;
    height: auto;
}

.yellowBox_txt {
    font-weight: bold;
    font-size: 14px;
}

.yellowBox_list {
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 0;
    text-align: left;
    font-size: 10px;
}

.yellowBox_list li {
    font-weight: bold;
}

.yellowBox_list li small {
    display: block;
    text-indent: 1em;
}

.yellowBox_list li::before {
    display: inline-block;
    margin-right: 2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #abbb3c;
    content: '';
    vertical-align: middle;
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

.pinkbg {
    background-color: #FDF4F8;
}

.pinkbg img {
    width:100%;
}

.indent-6 {
    padding-left:6em;
	text-indent:-6em;
    margin: 0px!important;
}
@media only screen and (max-width: 768px) {
    .bl_content a img {
        transition: opacity .1s linear 0s;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    .bl_content a img:hover {
        opacity: .7;
    }
    .caseUnitItem_list dt {
        min-width: 45px;
    }
    .stmp_item__back img {
        float:none;
        width:100%;
    }
    .outbox {
        flex-direction: column;
    }
    .prize {
       width: 100%; 
    }
    .imgbox {
        width:100%;
        flex-direction: row;
    	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: baseline;
	align-items: baseline;
    margin-top: 15px;
    }
    .eachbox {
        width:50%;
        text-align: center;
        padding: 0 5px;
    }
    .text-idt {
        font-size:11px;
    }
    
    .text-idt6 {
        font-size:11px;
    }
    .prize table {
        font-size:11px;
    }
    .stmp_item__table {
        font-size: 12px;
    }
    .page-footer-link-wrap {
       padding-bottom: 40px;
       margin-top: 30px;
    }
    .page-title {
        margin-top: 60px;
    }
}


@media only screen and (min-width: 768px) {

    .button--link::after {
        width: 18px;
        height: 18px;
    }
    .button {
        min-width: 216px;
        height: 45px;
        font-size: 1.8rem;
    }
    .button--more1::after {
        margin-left: 6px;
        width: 17px;
    }
    .button--more2::after {
        margin-left: 6px;
        width: 18px;
    }
    .on-sp {
        display: none;
    }
    .on-pc {
        display: block;
    }
    .header {
        padding: 28px 0 26px;
    }
    .header .header__title i {
        margin-right: 17px;
        flex-basis: 103px;
        -ms-flex-preferred-size: 103px;
    }
    .header .header__title span {
        font-size: 2.8rem;
    }
    .header .header__title span img {
        margin-bottom: 8px;
        width: 385px;
    }
    .page-footer {
        margin-top: 70px;
        margin-right: auto;
        margin-left: auto;
        padding: 0 0 40px;
        padding-right: 15px;
        padding-left: 15px;
        max-width: calc(810px + 30px);
        width: 100%;
    }
    .page-footer__note {
        font-size: 1.4rem;
    }
    .main {
        margin-right: auto;
        margin-left: auto;
        padding-right: 15px;
        padding-left: 15px;
        max-width: calc(810px + 30px);
        width: 100%;
    }
    .page-title {
        margin-top: 70px;
        padding: 18px .5em;
        min-height: 189px;
        border-radius: 50px;
        font-size: 3.4rem;
        line-height: 1.5;
    }
    .page-title--pink {
        font-size: 4rem;
    }
    .page-intro {
        margin-top: 25px;
        font-size: 1.8rem;
        line-height: 1.8;
    }
    .content-title--blue span,
    .content-title--green span,
    .content-title--brown span {
        margin-right: 5px;
        padding: 6px 15px 6px 0;
        background-size: 15px 39px;
        font-size: 20px;
    }
    .content-title--blue,
    .content-title--green,
    .content-title--brown {
        margin-left: 0;
        padding-right: 0;
    }
    .content-title {
        padding: 9px .5em;
        min-height: 63px;
        font-size: 3.2rem;
    }
    .content-intro {
        margin-top: 16px;
        font-size: 1.8rem;
        line-height: 1.4;
    }
    .content-intro02 {
        margin-top: 16px;
        font-size: 16px;
        line-height: 1.6;
    }
    .page-footer-link-wrap {
        margin-top: 54px;
        padding-bottom: 54px;
    }
    .text-attention {
        margin-top: 30px;
    }
    .kv {
        margin-top: -28px;
        padding-bottom: 24px;
    }
    .kv .kv__catchcopy-sub::before {
        height: 21%;
    }
    .kv .kv__catchcopy-sub img {
        max-width: 568px;
    }
    .kv .kv__catchcopy-main {
        padding: 30px 0 20px;
    }
    .kv .kv__catchcopy-main img {
        max-width: 899px;
    }
    .kv .kv__train img {
        max-width: 421px;
    }
    .kv .kv__text {
        margin-top: 23px;
        text-align: center;
        font-weight: 800;
        font-size: 1.7rem;
        line-height: 1.94;
    }
    .kv .kv__photos {
        margin-top: 23px;
        max-width: 918px;
        width: calc(100% - 32px);
    }
    .kv .kv__photos figcaption img {
        margin-top: 5px;
        width: 29px;
    }
    .link-tanoshimikata {
        margin-top: 37px;
    }
    .link-tanoshimikata .link-tanoshimikata__navi {
        margin-top: 27px;
    }
    .sns {
        margin-top: 45px;
        padding: 35px;
    }
    .sns .sns__title {
        padding: 11px;
        border-radius: 36px;
        font-size: 2.8rem;
        line-height: 1.55;
    }
    .sns .sns__block {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: start;
        -ms-flex-pack: justify;
        -ms-flex-align: stretch;
        margin-top: 35px;
        align-items: stretch;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        justify-content: flex-start;
        justify-content: space-between;
    }
    .sns .sns__block .sns__block__item {
        margin-top: 0;
        flex-basis: 48%;
        -ms-flex-preferred-size: 48%;
    }
    .sns .sns__block .sns__block__item:last-of-type {
        margin-top: 0;
    }
    .sns .sns__block .sns__block__item .sns__block__item__icon img {
        width: 240px;
    }
    .sns .sns__block .sns__block__item .sns__block__item__icon figcaption {
        margin-top: 20px;
        font-size: 2.4rem;
    }
    .sns .sns__block .sns__block__item .sns__block__item__include {
        height: 412px;
    }
    .sns .sns__block .sns__block__item .sns__block__item__include iframe {
        height: 410px;
    }
    .blank-link {
        padding: 26px 32px;
    }
    .blank-link .blank-link__kei {
        margin-top: 20px;
        height: 26.4px;
    }
    .blank-link .blank-link__kikan {
        font-size: 2.1rem;
    }
    .blank-link .blank-link__text {
        margin-top: 10px;
        font-size: 1.9rem;
        line-height: 1.58;
    }
    .blank-link .button {
        margin-top: 12px;
    }
    .blank-link--instaawrd {
        margin-top: 54px;
    }
    .blank-link--instaawrd .blank-link__title {
        height: 108px;
        border-radius: 36px;
    }
    .blank-link--instaawrd .blank-link__title img {
        max-width: 522px;
    }
    .blank-link--syukuhakucp {
        margin-top: 27px;
    }
    .blank-link--syukuhakucp .blank-link__title img {
        max-width: 685px;
    }
    .related-links {
        margin-top: 50px;
    }
    .related-links .related-links__title {
        font-size: 3.5rem;
    }
    .related-links .related-links__navi .related-links__navi__item {
        margin-top: 35px;
    }
    .related-links .related-links__navi .related-links__navi__item:first-of-type {
        margin-top: 25px;
    }
    .related-links .related-links__navi .related-links__navi__item span {
        font-size: 2.1rem;
    }
    .related-links .related-links__navi .related-links__navi__item img {
        margin-top: 4px;
    }
    .icon-train {
        margin-top: 25px;
    }
    .icon-train img {
        margin: 0 9px;
        max-width: 67px;
        width: 15%;
    }
    .map {
        margin-top: 40px;
    }
    .map .map__text {
        bottom: 0;
        width: 321px;
    }
    .modelcource .content-title {
        margin-top: 70px;
    }
    .modelcource .hanrei {
        margin-top: 16px;
    }
    .button-cource {
        margin-top: 27px;
    }
    .modelcource__content .modelcource__content__item {
        margin-top: 27px;
    }
    .bnr-tabisurukitashinano {
        margin-top: 25px;
    }
    .bnr-tabisurukitashinano .txt-tabisurukitashinano {
        width: 473px;
    }
    .bnr-tabisurukitashinano a {
        margin-top: 20px;
    }
    .tanoshii-train {
        margin-top: 50px;
    }
    .harugentei-train {
        margin-top: 55px;
    }
    .train {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: justify;
        -ms-flex-align: stretch;
        margin-top: 27px;
        padding: 21px 27px 27px;
        align-items: stretch;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .content-title+.train {
        margin-top: 27px;
    }
    .train .train__header {
        flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
    }
    .train .train__header .train__header__name .train-type {
        padding: 7px 9.5px;
        border-radius: 20px;
        font-size: 2.4rem;
    }
    .train .train__header .train__header__name .train__header__name__text {
        font-size: 2.9rem;
    }
    .train .train__header .train__header__image {
        margin-top: 28px;
    }
    .train .train__body {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: end;
        -ms-flex-align: stretch;
        margin-top: 0;
        padding-left: 27px;
        align-items: stretch;
        flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        justify-content: flex-end;
    }
    .train .train__body .train__body__text {
        margin-top: 0;
        padding-bottom: 9px;
        width: 100%;
        font-size: 1.8rem;
    }
    .train .train__body .train__body__data {
        margin-top: 8px;
        font-size: 1.5rem;
    }
    .train .train__body .train__body__data dd .train__body__data__image {
        margin-top: 5px;
        margin-bottom: 25px;
        width: 195px;
    }
    .train .train__body .button {
        margin-top: auto;
        width: 100%;
    }
    .train--resortviewsuwako .train__header .train__header__image .fixed-image {
        right: -8.5%;
        bottom: -10%;
        width: 46%;
    }
    .harugentei-train .train__header .train__header__image {
        margin-top: 15px;
    }
    .harugentei-train .train__body {
        display: block;
    }
    .harugentei-train .train__body .train__body__data dd .train__body__data__image {
        margin-bottom: 0;
    }
    .sightseeing {
        margin-top: 60px;
    }
    .title-sightseeing {
        width: 400px;
    }
    .events {
        margin-top: 60px;
    }
    .se-block {
        margin-top: 25px;
    }
    .se-block:first-of-type {
        margin-top: 25px;
    }
    .se-block::after {
        display: block;
        clear: both;
        content: ' ';
    }
    .se-block .se-block__title {
        float: left;
        padding-top: 15px;
        width: calc(100% - 252px - 25px);
        font-size: 2.1rem;
    }
    .se-block .se-block__title .img-title {
        margin-top: 0;
        height: 30px;
    }
    .se-block .se-block__image {
        float: right;
        width: 252px;
    }
    .se-block .se-block__image figure {
        margin-top: 0;
    }
    .se-block .se-block__image figure:not(:first-of-type) {
        margin-top: 10px;
    }
    .se-block .se-block__image figure figcaption img {
        height: 7px;
    }
    .se-block .se-block__data {
        float: left;
        margin-top: 15px;
        width: calc(100% - 252px - 25px);
    }
    .se-block .se-block__data .se-block__data__text {
        font-size: 1.5rem;
        line-height: 1.667;
    }
    .se-block .se-block__data .se-block__data__list {
        font-size: 1.6rem;
        line-height: 1.667;
    }
    .se-block .se-block__link {
        margin-top: 18px;
        width: 252px;
    }
    .se-block .se-block__link .button {
        width: 100%;
        font-size: 1.8rem;
    }
    .se-block .se-block__link .button::after {
        width: 17px;
    }
    .u-hide-pc {
        display: none;
    }
    .page-intro__plus {
        margin-top: 0;
        font-size: 16px;
    }
    .page-title-slash {
        margin-top: 30px;
        font-size: 27px;
    }
    .page-title-slash::before,
    .page-title-slash::after {
        height: 22px;
    }
    .page-title-slash::after {
        margin-left: 15px;
    }
    .page-title-slash::before {
        margin-right: 15px;
    }
    .page-lv4Ttl {
        margin-bottom: 5px;
        padding-top: 15px;
        font-size: 25px;
    }
    .page-title__balloon {
        width: 460px;
        height: 57px;
        font-size: 20px;
    }
    .page-title__img01 {
        width: 115px;
        height: 112px;
    }
    .page-title__img03 {
        width: 167px;
        height: 67px;
    }
    .content-sub-title {
        margin-top: 25px;
        margin-bottom: 40px;
    }
    .caseUnitItem_meta {
        padding-top: 18px;
    }
    .caseUnitItem_meta_img {
        width: 241px;
    }
    .caseUnitItem_head {
        font-size: 16px;
    }
    .caseUnitItem_ttl {
        font-size: 21px;
        line-height: 1.6;
    }
    .caseUnitItem_list {
        font-size: 15px;
    }
    .caseUnitItem_list dt::before {
        width: 12px;
        height: 12px;
    }
    .page_small {
        margin-bottom: 30px;
        font-size: 16px;
    }
    .stmp_item {
        margin-top: 20px;
    }
    .stmp_item__table {
        letter-spacing: -1px;
        font-size: 14px;
    }
    .stmp_item__table tbody td[colspan='3'] {
        padding-top: 4px;
        padding-bottom: 4px;
        font-size: 11px;
    }
    .stmp_item_ttl {
        font-size: 21px;
        line-height: 1.75;
    }
    .stmp_item__body {
        overflow: hidden;
        padding: 10px 25px 25px;
    }
    .stmp_item__front {
        float: right;
        margin-left: 20px;
        width: 350px;
    }
    .stmp_item__disc_ttl {
        font-size: 15px;
    }
    .stmp_item__disc_ttl::before {
        width: 12px;
        height: 12px;
    }
    .stmp_item__disc_ttl02::before {
        width: 12px;
        height: 12px;
    }
    .stmp_item__back {
        font-size: 15px;
    }
    .stmp_item__back .stmp_item__disc_ttl {
        font-size: 15px;
    }
    .stmp_item__back small {
        font-size: 13px;
    }
    .wave_txt {
        font-size: 15px;
    }
    .app_dwnBtn_txt {
        margin-bottom: 5px;
        padding-top: 10px;
        font-size: 26px;
    }
    .dedline {
        margin-top: -25px;
        margin-bottom: 25px;
    }
    .dedline dt,
    .dedline dd {
        font-size: 21px;
    }
    .sake_img {
        margin-top: 20px;
        margin-bottom: 30px;
    }
    .busITemUnit_item {
        margin-bottom: 30px;
    }
    .buttonMores {
        width: 485px;
    }
    .yellowBox {
        margin-top: 50px;
        padding: 0 45px 30px;
    }
    .yellowBox_img {
        padding: 0 40px 5px;
        width: 580px;
    }
    .yellowBox_txt {
        font-size: 17px;
    }
    .yellowBox_list {
        margin-right: auto;
        margin-bottom: 20px;
        margin-left: auto;
        max-width: 600px;
        font-size: 16px;
    }
    .yellowBox_list small {
        font-size: 12px;
    }
    .yellowBox_list li::before {
        width: 12px;
        height: 12px;
    }
}

@media only screen and (min-width: 768px) and (min-width: 768px) {
    .page-footer {
        padding-right: 50px;
        padding-left: 50px;
        max-width: calc(810px + 100px);
    }
    .main {
        padding-right: 50px;
        padding-left: 50px;
        max-width: calc(810px + 100px);
    }
}

.text-lg {
    font-size: 4rem;
    line-height: 1;
}

@media only screen and (max-width: 768px) {
    .text-lg {
        font-size: 2.2rem;
    }
    .map p {
        font-size: 12px;
    }

}