

@import url('https://fonts.googleapis.com/css2?family=Dela+Gothic+One&family=Noto+Sans+JP:wght@100..900&display=swap');


:root
{
    --white:#fff;
    --black:#0D3446;
    --yelllow:#FFE30F;
    --sky-blue:#40B8E2;
    --light-blue:#ECF5F8;
}

.visually-hidden 
{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  body
  {
        background: var(--white);
  }
  .pc-only
  {
    display: block;
  }
  .sp-only
  {
    display: none;
  }
   .br-ipad
   {
    display: none;
   }

/* ------------------------------------------------------------------------ first-view */

section.fv
{
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr;
    /* height: 100vh; */
    height: 900px;
    width: 100%;
    position: relative;
}
section.fv .fv_left-side
{
    display: none;
    width: 3em;
    height: auto;
    /* height: 100%; */
    position: relative;
}
section.fv .fv_left-side p
{
    transform: rotate(90deg) translateX(-15em);
    white-space: nowrap;
    font-size: 0.8em;
    color: var(--sky-blue);
}


section.fv .fv_right-side
{
    height: 100%;
    position: relative;
}
section.fv .fv_right-side .flex-area
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}
section.fv .fv_right-side .flex-area img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
section.fv .fv_right-side .flex-area div:first-child img
{
    /*border-radius: 0 0 0 100px;*/
}


section.fv .fv_right-side .title-wrapper 
{
    position: absolute;
    top: 8%;
    left: 50%;
    transform: translate(-50%,0%);
}
section.fv .fv_right-side .logo-title 
{
  display: flex;
  flex-direction: column;
  gap: 0px; /* 行間の調整 */
  width: 580px;
}
section.fv .fv_right-side .line 
{
  display: flex;
  justify-content: space-between; /* 両端揃え */
  font-family: "Dela Gothic One", sans-serif;
  color: #FFE733;
  align-items: center;
  line-height: 1.1;
}
section.fv .fv_right-side .line span
{
    font-size: 9em;
}
section.fv .fv_right-side .line span img 
{
    height: 0.7em; 
}

section.fv .fv_right-side .sub-title_box
{
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    padding: 5px 0;
    margin: 0 0 0 -20px;
    width: 110%;
    color: white;
    background: var(--sky-blue);
    margin-bottom: 10px;
    /* box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2); */
}
section.fv .fv_right-side .sub-title_box h2
{
    margin: 0;
    padding: 0 15px 0 15px;
    font-size: 1.3em;
    /*line-height: 46px;*/
    line-height: 27px;
    text-align: center;
}
section.fv .fv_right-side .sub-title_box::after
{
    content: "";
    position: absolute;
    top: 0;
    /*right: -2%;*/
    right: -3%;
    width: 20px;    /* 実画像に応じて調整 */
    height: 100%;
    background: url('../img/fv/sub-title-ribon.png') no-repeat center right;
    background-size: contain;
}
section.fv .fv_right-side .sub-title_box::before
{
    position: absolute;
    content: '';
    top: 100%;
    left: 0;
    border: none;
    border-bottom: solid 15px transparent;
    border-right: solid 20px #0067B2;
}



section.fv .fv_right-side .point-wrapper
{
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 80%;
}
section.fv .fv_right-side .point-wrapper ul
{
    display: flex;
    gap: 30px;
}
section.fv .fv_right-side .point-wrapper ul li
{
    background: var(--white);
    width: 100%;
    border-radius: 5px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;

}
section.fv .fv_right-side .point-wrapper ul li img
{
    width: 15%;
}

section.fv .fv_right-side .scroll
{
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scrollBounce 1.2s infinite ease-in-out;
}
section.fv .fv_right-side .scroll span
{
    color: var(--yelllow);
    padding-bottom: 5px;
    padding-top: 10px;
}
section.fv .fv_right-side .scroll img
{
    width: 40px;
}
@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}



/* ------------------------------------------------------------------------ ページ内リンク */


section.anchor-link
{
    width: 1120px;
    max-width: 100%;
    margin: 50px auto;
    position: relative;
}
section.anchor-link ul
{
    display: flex;
    justify-content: center;
}
section.anchor-link ul li
{
    width: 33%;
}
section.anchor-link ul li a
{
    display: flex;
    border-left: 1px dotted var(--black);
    border-right: 1px dotted var(--black);
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    padding: 0 10px;
    text-align: center;
}
section.anchor-link ul li:first-child a
{
    border-right: 0;
}
section.anchor-link ul li a span
{
    color: var(--sky-blue);
    font-weight: 500;
}
section.anchor-link ul li .big-font
{
    /*font-size: 1.5em;*/
    font-size: 1.4em;
    color: var(--black);
    font-weight: 700;
    margin: 10px 0 5px 0;
}
section.anchor-link ul li .small-font
{
    color: var(--black);
}
section.anchor-link ul li a:after
{
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  /* margin-left: 6px; */
  margin-top: 20px;
  background-image: url('../img/aroow-bottom.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}


/* ------------------------------------------------------------------------ ご利用方法 */

section.intro
{
    width: 1120px;
    max-width: 100%;
    margin:  90px auto 0 auto;
    text-align: center;
}
section.intro .title
{
    font-family: "Dela Gothic One", sans-serif;
    color: var(--white);
    font-size: 1.6em;
    background-color: var(--sky-blue);
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 13px, rgba(84, 191, 229, 1) 13px, rgba(84, 191, 229, 1) 26px );
    display: inline-block;
    padding: 5px 30px;
    border-radius: 5px 5px 0 0;
}
section.intro .title img
{
    width: 35px;
}
section.intro .intro-box
{
    background: var(--light-blue);
    border-radius: 10px;
    border: 2px dotted var(--sky-blue);
    padding: 35px 0;
    margin:  0 auto;
}
section.intro .intro-box ul
{
    width: 90%;
    margin:  0 auto;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 60px;
}
section.intro .intro-box ul li
{
    display: grid;
    flex-direction: column;
    justify-items: center;
    grid-template-rows: auto 1fr 1fr;
    position: relative;
}
section.intro .intro-box ul li span
{
    font-size: 1.2em;
    color: var(--sky-blue);
    font-weight: bold;
}
section.intro .intro-box ul li div
{
    background: var(--white);
    width: 100%;
    border-radius: 10px;
    padding: 30px 0;
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    margin: 15px 0;

        display: flex;          
    align-items: center;      
    justify-content: center; 
}
section.intro .intro-box ul li:not(:last-of-type)::after
{
    content: "";
    background: url(../img/aroow-right.png)no-repeat;
    width: 10px;
    height: 20px;
    background-size: contain;
    position: absolute;
    bottom: 50%;
    right: -15%;
}
section.intro .intro-box ul li a
{
    color: var(--sky-blue);
}


/* ------------------------------------------------------------------------ ツアー */

section.tour
{
    margin-top: 170px;
    margin-bottom: 100px;
}
section.tour .tour-fv
{
    /* width: 100%;
    height: 550px; */
    width: 100%;
    position: relative;
}
section.tour .tour-fv .all-SimpleParallax
{
       width: 100%;
    height: 550px;
    position: relative;
    overflow: hidden;
}
section.tour .tour-fv .all-SimpleParallax img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    /* position: absolute;
    top: 0%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block; */
}
section.tour .tour-fv .sub-title
{
    width: 1000px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;

    position: absolute;
    top: 50px;
    right: 50%;
    transform: translate(50%, 0);
}
section.tour .tour-fv ul
{

    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-direction: row-reverse;
}
section.tour .tour-fv ul li
{
    background: var(--white);
    writing-mode: vertical-rl;
    white-space: nowrap;
    font-size: 1.3em;
    font-weight: bold;
    padding: 15px 5px;
    letter-spacing: 0.2em;
}
section.tour .tour-icon
{
    background: var(--white);
    position: absolute;
    top: -17%;
    left: 50%;
    transform: translate(-50%,0);
    border-radius: 50%;
    width: 170px;
    height: 170px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
section.tour .tour-icon p
{
    font-size: 1.3em;
    color: var(--sky-blue);
    font-weight: bold;
    padding-top: 7px;
}
section.tour .tour-icon img
{
    width: 60%;
}



/* コースタイトル等 */
section.tour .tour-detail
{
    width: 1000px;
    max-width: 100%;
    margin:  60px auto;
    text-align: center;
}
section.tour .tour-detail .title
{
    margin-bottom: 30px;
    color: var(--black);
    padding: 0em 1em;
    position: relative;
}
section.tour .tour-detail .title span
{
    font-size: 1em;
    font-weight: bold;
    color: var(--sky-blue);
    margin-bottom:10px;
    display: inline-block;
}
section.tour .tour-detail .title h2
{
     font-family: "Dela Gothic One", sans-serif;
     font-size: 3.8em;
     line-height: 70px;
}
section.tour .tour-detail p
{
    line-height: 30px;
}

section.tour .tour-detail .title::before,
section.tour .tour-detail .title::after 
{
    display: inline-block;
    position: absolute;
    width: 10px;
    height: 100%;
    border: 2px solid var(--black);
    box-sizing: border-box;
    content: '';
}
section.tour .tour-detail .title::before {
    top: 0;
    left: 0;
    border-right: none;
}
section.tour .tour-detail .title::after {
    bottom: 0;
    right: 0;
    border-left: none;
}

/* コース内容 */
section.tour .timeline-wrapper
{
   margin-top: 60px;
}
section.tour .timeline-wrapper .time
{
    font-size: 16px;
    color: var(--sky-blue);
    text-align: left;
    padding-bottom: 10px;
    font-weight: 500;
}
section.tour .timeline
{
    display: flex;
    align-items: stretch; 
    border: 2px solid #CBD6D9;
    border-radius: 5px;
    position: relative;
}
section.tour .timeline-title
{
    background: var(--sky-blue);
    padding: 20px 15px;
    border-radius: 3px 0 0 3px;

    display: flex;            
    flex-direction: column;    
    align-items: center;        
    justify-content: center;
}
section.tour .timeline-title img
{
    width: 2em;
    padding-bottom: 5px;
}
section.tour .timeline-title p
{
    writing-mode: vertical-rl;
    font-size: 1.2em;
    color: var(--white);
    letter-spacing: 0.1em;
}
section.tour .timeline-detail
{
  display: flex;
  align-items: flex-start;
   justify-content: flex-start;
   /* align-items: center; */
  flex-wrap: nowrap;
  gap: 20px;
  padding: 20px 50px 20px 20px;
  width: 100%;
  box-sizing: border-box;

  overflow: auto;
}
section.tour .step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
  position: relative;
}
section.tour .step::after
{
    position: absolute;
    top: 15px;
    left: 50%;
    z-index: -1;
    width: 100%;
    border: 1px dashed #CBD6D9;
    content: '';
}
section.tour .step:last-child:after
{
    border: none;
}

section.tour  .circle {
  background: var(--sky-blue);
  color: var(--white);
  border: 1px solid var(--sky-blue);
  border-radius: 50px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: 5px;
  padding: 5px 10px;
  width: 85px;
  font-size: 1.1em;
}
section.tour .no-spot
{
    background: var(--white);
    color: var(--sky-blue);
}

section.tour .label {
  font-weight: bold;
  font-size: 1.1em;
  color: #333;
  line-height: 1.4;
  padding-top: 10px;
}

section.tour .time 
{
  font-size: 1.3em;
  color: #45B8DE;
  font-weight: bold;
  margin-bottom: 2px;
    line-height: 1.2;
}
section.tour .time span
{
  font-size: 12px;
  font-weight: bold;
}







/* スポット紹介 */

section.tour .tour-spot
{
    width: 1120px;
    max-width: 100%;
    margin: 0 auto;
}
section.tour .tour-spot .tour-spot_title
{

    background-image: url('../img/wave.png');
    background-repeat: repeat-x; 
    background-position: left; 
    background-size: auto 30px;  
}
section.tour .tour-spot .tour-spot_title > div
{
    font-size: 1.9em;
    font-weight: 800;
    text-align: center;
    position: relative;
    background-color: var(--white);
    width: 50%;
    margin: 0 auto 120px auto;
}
section.tour .tour-spot .tour-spot_title > div span
{
    font-weight: 800;
    color: var(--sky-blue);
}



section.tour .tour-spot_box
{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
section.tour .tour-spot_box .spot
{
    display: flex;
    align-items: flex-start;
    gap:70px;
    position: relative;
}
section.tour .tour-spot_box .spot-image-left
{
 flex-direction: row-reverse;   
}
/* section.tour .tour-spot_box .spot:nth-of-type(2n)
{
 flex-direction: row-reverse;   
} */

section.tour .tour-spot_box .spot-number
{
    position: absolute;
    left: -20px;
    /* top: -75px; */
    top: -5vw;
    width: clamp(100px, 11vw, 130px);
    height: clamp(100px, 11vw, 130px);
    /* width: 130px;
    height: 130px; */
    background: url("../img/spot-number_bg.png")no-repeat;
    background-size:contain;
    background-position: center;
    color: var(--white);
    /* font-size: 50px; */
    font-size: clamp(35px, 5vw, 50px);
    line-height: 1;
    font-weight: bold;
    padding-bottom: 5px;
    padding-left: 15px;
    letter-spacing: 2px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
section.tour .tour-spot_box .spot-number span
{
    font-size: 12px!important;
    margin-right: 35px;
}
section.tour .tour-spot_box .spot-title
{
    padding: 25px 0;
    margin-top: 40px;
    text-align: center;
    border-top: 2px dotted var(--black);
    border-bottom: 2px dotted var(--black);
}
section.tour .tour-spot_box .spot .spot-title h3
{
    font-size: 2.5em;
    font-weight: 800;
}
section.tour .tour-spot_box .spot .spot-title span
{
    color: var(--sky-blue);
    font-size: 0.8em;
}
section.tour .tour-spot_box .spot .spot-desc
{
    position: relative;
    width: 35%;
}
section.tour .tour-spot_box .spot .spot-desc p
{
    padding-top: 30px;
    font-size: 1.1em;
    line-height: 35px;
}
section.tour .tour-spot_box .attention
{
    color: #F54545;
    font-size: 14px;
    line-height: 25px;
    margin-top: 10px;
}


.spot-taxi
{
    text-align: center;
    margin-bottom: 15px;
}
section.tour .tour-spot_box .spot-taxi:nth-child(4n+2)
{
    margin-bottom: 50px;
}
.spot-taxi img
{
    width: 390px;
    max-width: 100%;
}
section.tour .tour-spot_box .spot-image
{
    position: relative;
    width: 65%;
}
section.tour .tour-spot_box > .spot-image-right .spot-image
{
    transform: rotate(2deg);
}
section.tour .tour-spot_box > .spot-image-left .spot-image
{
    transform: rotate(-2deg);
}


section.tour .tour-spot_box .spot-image > img
{
    aspect-ratio: 608/400;
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    border: 10px solid var(--white);
    box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
}
/* クリップ */
section.tour .tour-spot_box > .spot-image-right .spot-image::before
{
    content: "";
    background: url("../img/spot-01_deco.png")no-repeat;
    width: 60px;
    height: 120px;
    background-size: contain;
    position: absolute;
    top: -4.3%;
    left: 15%;
}
/* マスキングテープ */
section.tour .tour-spot_box > .spot-image-left .spot-image::before
{
    content: "";
    background: url("../img/spot-02_deco.png")no-repeat;
    width: 130px;
    height: 85px;
    background-size: contain;
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translate(-50%,0);
}
section.tour .tour-spot_box > .spot-image-right .spot-image::after
{
    position: absolute;
    bottom: -15%;
    right: 5%;
}
section.tour .tour-spot_box > .spot-image-left .spot-image::after
{
    position: absolute;
    bottom: -13%;
    left: 5%;
}
/* カップル 1,9,17 */
section.tour .tour-spot_box > .spot:nth-child(8n+1) .spot-image::after
{
    content: "";
    background: url("../img/spot-01_couple.png")no-repeat;
    width: 140px;
    height: 220px;
    background-size: contain;
    transform: rotate(-2deg);
}
/* 家族連れ 3,11,19 */
section.tour .tour-spot_box > .spot:nth-child(8n+3) .spot-image::after
{
    content: "";
    background: url("../img/spot-02_family.png")no-repeat;
    width: 210px;
    height: 220px;
    background-size: contain;
    transform: rotate(2deg);
}
/* 一人旅 5,13,21 */
section.tour .tour-spot_box > .spot:nth-child(8n+5) .spot-image::after
{
    content: "";
    background: url("../img/spot-03_hitoritabi.png")no-repeat;
    width: 140px;
    height: 215px;
    background-size: contain;
    transform: rotate(-2deg);
}
/* 老夫婦 7,15,23 */
section.tour .tour-spot_box > .spot:nth-child(8n+7) .spot-image::after
{
    content: "";
    background: url("../img/spot-04_old-couple.png")no-repeat;
    width: 185px;
    height: 235px;
    background-size: contain;
    transform: rotate(2deg);
}





/* 予約ボタン */

.tour-fixed-btn
{
    background: var(--sky-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: var(--white);
    padding: 10px 5px;
    padding-right: 60px;
    width: 450px;
    margin:  0 auto;
    box-sizing: border-box;
    border-radius: 30px 30px 0 0;
    border: 2px solid var(--white);
    border-bottom: none;
    z-index: 100;
    transition: opacity .25s ease, transform .25s ease;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);

    position: fixed;
    right: 50%;
    bottom: 0;
    /* transform: translate(50%,0%); */
}
.tour-fixed-btn::after
{
    content: "";
    position: absolute;
    right: 7%;
    top: 50%;
    width: 15px;
    height: 20px;
    background: url(../img/aroow-right_02.png)no-repeat;
    background-size: contain;
    transform: translate(0,-50%);
}
.tour-fixed-btn span
{
    display: inline-block;
    font-size: 15px;
}
.tour-fixed-btn p
{
    font-size: 26px;
    font-weight: bold;
}
.tour-fixed-btn .btn-icon
{
    display: inline-block;
    position: relative;
}
.tour-fixed-btn img
{
    width: 70px;
    max-width: 100%;
    position: relative;
    display: block;
}
.tour-fixed-btn .btn-icon::after
{
    content: "";
    background: url("../img/yoyaku-icon_02.png")no-repeat;
    width: 25px;
    height: 25px;
    background-size: contain;
    position: absolute;
    top: 0;
    right: -5px;
}

.tour-fixed-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(50%,0);
}
/* .btn--green
{
  background: #34BEB8;   
} */



/* おすすめの撮影スポット */

.photo-spot > div
{
    background: var(--sky-blue);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 3px 5px;
    color: var(--white);
    margin-top: 20px;
}
.photo-spot > div img
{
    width: 22px;
    max-width: 100%;
}
.photo-spot > p
{
    color: var(--sky-blue);
    padding-top: 5px!important;
}


/* ------------------------------------------------------------------------ もっと見るボタン */

section.more-btn
{
    width: 800px;
    max-width: 100%; 
    margin: 0 auto;  
    margin-top: 130px;
}
section.more-btn a
{
    background: var(--sky-blue);
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: center;
    /* grid-template-columns: 1fr 1fr; */
    padding: 10px 30px;
    transition: 0.2s;
}
section.more-btn a:hover
{
    background: #12aae2;
}
section.more-btn a > div:nth-child(1),
section.more-btn a > div:nth-child(2)
{
    width: 50%;
}
section.more-btn a img
{
    width: 100%;
}
section.more-btn a p
{
    color: var(--white);
    font-size: 22px;
    font-weight: bold;
}
section.more-btn a div:first-child
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
section.more-btn a div > div
{
    color: var(--sky-blue);
    font-size: 20px;
    background: var(--white);
    border-radius: 50px;
    padding: 10px 70px 10px 40px;
    font-weight: bold;
    position: relative;
}
section.more-btn a div > div::after
{
    content: "";
    background: url(../img/aroow-right.png)no-repeat;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 10%;
    background-size: contain;
    transform: translate(0,-50%);
}


/* ------------------------------------------------------------------------ about */

section.about
{
    width: 1120px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 60px;
    padding-bottom: 100px;
    border-bottom: 2px dotted var(--black);
}
section.about > div
{
    box-sizing: border-box;
    padding: 30px 50px;
    background: #ECF5F8;
    border-radius: 10px;
}
section.about h3
{
    font-size: 26px;
    font-weight: bold;
    padding-bottom: 20px;
}
section.about p
{
    line-height: 30px;
}

/* ------------------------------------------------------------------------ banner */


section.banner
{
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 80px;
}
section.banner .b-title
{
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 30px;
    text-align: center;
}
section.banner img
{
    width: 100%;
}


/* 関連イベント */
section.banner .event
{
    display: grid;
    /*grid-template-columns: 1fr 1fr;*/
    grid-template-columns: 1fr;
    gap: 25px;
    /*margin-bottom: 80px;*/
    margin: 0 auto 80px;
    width: 800px;
}
section.banner .event .no-link
{
    display: flex;
/*    flex-direction: column;
    align-items: center;
    justify-content: center;*/
    background: #ECF6FA;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px;
    text-align: center;
}
section.banner .event .no-link img
{
    margin-top: 20px;
    width: calc((100% - 30px) / 2);
}
section.banner .event .no-link span,
section.banner .event .no-link h4,
section.banner .event .no-link p
{
    box-sizing: border-box;
    width: 100%;
}
section.banner .event .no-link span
{
    font-size: 18px;
    color: var(--sky-blue);
    font-weight: bold;
}
section.banner .event .no-link h4
{
    font-size: 24px;
    font-weight: bold;
    padding: 15px 0 20px 0;
    line-height: 40px;
}
section.banner .event .no-link p
{
    font-size: 20px;
}



/* 関連リンク */
section.banner ul
{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-bottom: 60px;
}
section.banner ul li.text-link a
{
    background: var(--sky-blue);
    box-sizing: border-box;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-weight: bold;
    height: 100%;
    width: 100%;
    font-size: 14px;
}
section.banner ul li.text-link a:hover
{
    background: #12aae2;;
}



/* ------------------------------------------------------------------------ copyright */

.copyright
{
    background: var(--sky-blue);
    width: 100%;
    color: var(--white);
    padding: 6px 0;
    text-align: center;
}







@media screen and (min-width:1440px){

section.tour .tour-spot_box .spot-number
{
    top: -75px;
}
}

@media screen and (max-width:850px)
{
    section.tour .tour-spot_box .spot,
    section.tour .tour-spot_box .spot:nth-of-type(2n)
    {
        flex-direction: column;
    }
    section.tour .tour-spot_box .spot .spot-desc
    {
        width: 100%;
    }
    section.tour .tour-spot_box .spot-image
    {
        width: 100%;
    }
    /* section.tour .tour-spot_box .spot-number
    {
        top: -40px;
    } */
    section.tour .tour-spot .tour-spot_title > div
    {
        margin: 0 auto 100px auto;
    }
    section.tour .tour-spot_box .spot-taxi:nth-child(4n+2)
    {
        margin-bottom: 0;
    }
    section.tour .tour-spot_box .spot-title
    {
        margin-top: 0;
    }
    section.banner ul
    {
        gap: 20px;
    }
    /* section.banner ul
    {
        margin-top: 30px;
    } */
    section.tour .tour-spot_box .spot-number
    {
        top: -10vw;
    }
    section.more-btn
    {
        width: 90%;
    }
}



@media screen and (max-width:1200px)
{


    section.tour .tour-detail,
    section.tour .tour-spot,
    section.about,
    section.banner,
    section.intro,
    section.tour .tour-fv .sub-title,
    section.anchor-link
    {
        width: 90%;
    }
    .br-none-ipad
    {
        display: none;
    }
    .br-ipad
    {
        display: block;
    }


/* ------------------------------------------------------------------------ first-view */

    section.fv .fv_right-side .logo-title
    {
        width: 450px;
    }
    section.fv .fv_right-side .line span
    {
        font-size: 7em;
    }
    section.fv .fv_right-side .sub-title_box h2
    {
        font-size: 1.1em;
        padding: 0 20px 0 15px;
        line-height: 25px;
    }
    section.fv .fv_right-side .sub-title_box::after
    {
        right: -5%;
		width: 27px;
    }
    section.fv .fv_right-side .point-wrapper ul
    {
        flex-direction: column;
        gap: 15px;
    }
    section.fv .fv_right-side .point-wrapper ul li
    {
        padding: 10px;
    }
    section.fv .fv_right-side .point-wrapper ul li img
    {
        /* width: 7%; */
        width: 40px;
    }

/* ------------------------------------------------------------------------ ページ内リンク */

    section.anchor-link ul li .big-font
    {
        font-size: 1.3em;
    }


/* ------------------------------------------------------------------------ ご利用方法 */

    section.intro
    {
         margin: 70px auto 0 auto;   
    }
    section.intro .intro-box ul
    {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 50px;
    }
    section.intro .intro-box ul li
    {
        grid-template-rows: auto auto auto;
    }
    section.intro .intro-box ul li:not(:last-of-type)::after
    {
         display: none;
    }

/* ------------------------------------------------------------------------ ツアー */

    section.tour
    {
        margin-top: 140px;
    }
        section.tour .tour-spot_box .spot
    {
        gap: 50px;
    }
    section.more-btn a div:first-child
    {
        gap: 15px;
    }

/* ------------------------------------------------------------------------ もっと見るボタン */

    section.more-btn a p
    {
        font-size: 20px;
    }
    section.more-btn a div > div
    {
            font-size: 18px;
    }

/* ------------------------------------------------------------------------ about */

    section.about
    {
        margin-top: 40px;
        padding-bottom: 80px;
    }

/* ------------------------------------------------------------------------ banner */

    section.banner .b-title
    {
        padding-bottom: 20px;
    }
    section.banner .event .no-link h4
    {
        font-size: 20px;
        line-height: 30px;
    }
    section.banner .event .no-link h4
    {
        padding: 10px 0 15px 0
    }
    section.banner .event .no-link
    {
        padding: 20px 10px;
    }

    section.banner .event
    {
        margin-bottom: 40px;
        width: auto;
    }


}