
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');
    @media (min-width: 576px) { .container { max-width: 540px; } }
    @media (min-width: 768px) { .container { max-width: 720px; } }
    @media (min-width: 992px) { .container { max-width: 960px; } }
    @media (min-width: 1200px) { .container { max-width: 1140px; } }

body{
    height:100vh;
    line-height: 1.7;
    color:var(--body);
}

.process-row {
  --bs-gutter-x: 0em !important;
}

:root{
    --primary:#37321e;
    --dark:#21252f;
    --body:#1e1e1e;
    --linkdark:#fff;
    --darkgreen:#37321e;
    --box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    --gold:#9f7a36;
    --bgbody:#faf5f5;
}

* {
    font-family: 'Noto Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    line-height: 1.3em;
    
}



b{
    margin: 1em 0;
}

section{
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

section:nth-child(odd) {
  background-color: #faf5f5!important;
    color:var(--dark)!important;
}

@media (min-width: 835px){
    .smp{
        display: none !important;
    }

    h1{
        font-size: 28px!important;
        font-weight: 700!important;
    }
    
    h2{
        font-size: 24px!important;
    }
    
    h3{
        font-size: 20px;
    }
    h4{
        font-size: 16px!important;
    }
    h5{
        font-size: 16px!important;
    }
    p{
        font-size: 16px!important;
    }

    .pcgrid2{
        display: grid;
        gap:26px;
        grid-template-columns: repeat(2,1fr);
        margin-top:3%;
        margin-bottom:50px;
    }

    .smpgrid2{
        display: none;
    }

    .grid2{
        display: grid;
        gap:26px;
        grid-template-columns: repeat(2,1fr);
    }

    .pcgrid4{
        display: grid;
        gap:26px;
        grid-template-columns: repeat(4,1fr);
        margin-top:3%;
        margin-bottom:50px;
    }

    .smpgrid4{
        display: none;
    }
    

    .navbar-brand{
        margin-left: 35px;
    }

    .navbar .nav-link{
        font-size: 14px;
        font-weight: 700;
        padding-top:16px;
    }
    
    .navbar li{
        padding: 0 2px;
    }

    .list{
        display: flex;
        flex-wrap: wrap;
    }
    
    .list li{
        width: calc(100%/3);
        padding: 0 5px;
        box-sizing: border-box;
        list-style: none;
    }
    
    .list li img{
        max-width: 100%;
        height: auto;
        border: solid 1px #ccc;
    }

    .iconbox{
        width: 54px;
        height: 54px;
        font-size: 38px;
        margin-top: 5px;
    }

    .boxicons{
      width: 54px; /* 必要に応じて調整 */
      height: 54px; /* 必要に応じて調整 */
    }

    .boxicons i {
      font-size: 38px; 
    }
    
    .golfflow ul {
        padding: 0;
      }
    .golfflow li {
        list-style-type: none;
      }
    .golfflow dd {
        margin-left: 0;
      }
      
      .golfflow {
        display: flex;
        justify-content: space-between;
      }
      .golfflow > li {
        -ms-flex-preferred-size: 22%;
        flex-basis: 22%;
      }
      .golfflow > li .icon {
        line-height: 50px;
        width: 50px;
        color: #fff;
        background: var(--gold);
        margin: 0 auto 20px;
        display: block;
        border-radius: 100%;
        text-align: center;
        position: relative;
        letter-spacing: 2px;
      }
      .golfflow > li .icon::before {
        content: "";
        border: solid transparent;
        border-top-color: var(--gold);
        position: absolute;
        top: calc(100% - 2px);
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
      }
      .golfflow > li dl {
        padding: 30px 20px;
        margin: 0;
        border: 3px solid var(--gold);
        position: relative;
      }
      .golfflow > li:not(:last-child) dl::before {
        content: "";
        width: 14px;
        height: 14px;
        margin-right: 10px;
        display: inline-block;
        border-top: 4px solid var(--gold);
        border-right: 4px solid var(--gold);
        position: absolute;
        top: calc(50% - 14px);
        left: 104%;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
      }
      .golfflow > li dl dt {
        font-size: 20px;
        font-weight: 600;
        color: var(--gold);
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        margin-bottom: 1vh;
        text-align: center;
      }

      .beginner-img{
        background-image: url(/golf/images/beginner.jpg);
        background-size: cover;
        position: relative;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .sitenavi{
        background-color: #134288;
        top: 50%;
        right: 20px;
        width: 250px;
        z-index: 10;
        padding: 10px;
        border-radius: 10px;
    }
    .sitenavi a{
        color: #444;
    }

    


}

@media (max-width: 834px){
    .pc{
        display: none;
    }
    h1{
        font-size: 24px!important;
        font-weight: 700!important;
    }
    
    h2{
        font-size: 20px!important;
    }
    
    h3{
        font-size: 16px!important;
    }
    h4{
        font-size: 16px!important;
    }
    h5{
        font-size: 16px!important;
    }

    p{
        font-size: 15px!important;
        line-height: 1.8!important;
    }

    .pcgrid2{
        display: none;
    }

    .smpgrid{
        display: grid;
        gap:26px;
        grid-template-columns: repeat(2,1fr);
        margin-top:3%;
        margin-bottom:50px;
    }

    .grid2{
        display: grid;
        gap:26px;
        grid-template-columns: repeat(2,1fr);
        margin-top:10px;
        margin-bottom:10px;
    }

    .pcgrid4{
        display: none;
    }

    .smpgrid4{
        display: grid;
        gap:26px;
        grid-template-columns: repeat(4,1fr);
        margin-top:3%;
        margin-bottom:50px;
    }

    .fair{
        font-size: 14px;
    }

    th{
        font-size: 14px!important;
    }

    .smphero{
      padding-top: 300px;
    }
    

    .golfflow h3{
        font-size: 16px;
      }
      
      .golfflow > li {
        position: relative;
      }
      .golfflow > li:not(:last-child) {
        margin-bottom: 40px;
      }
      .golfflow > li:not(:first-child)::before {
        content: "";
        height: 60px;
        display: block;
        border-left: 4px dotted #e5e5e5;
        position: absolute;
        top: -40px;
        left: -webkit-calc(10% + 30px - 2px);
        left: calc(10% + 30px - 2px);
        z-index: 10;
      }
      .golfflow > li dl {
        width: 100%;
        padding: 20px 30px;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        border: 2px solid #dbb7bb;
        border-radius: 10px;
        position: relative;
      }
      .golfflow > li:not(:last-child) dl::before,
      .golfflow > li:not(:last-child) dl::after {
        content: "";
        border: solid transparent;
        position: absolute;
        top: 100%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
      }
      .golfflow > li:not(:last-child) dl::before {
        border-width: 22px;
        border-top-color: #dbb7bb;
      }
      .golfflow > li:not(:last-child) dl::after {
        border-width: 20px;
        border-top-color: #fff;
      }
      .golfflow > li dl dt {
        font-size: 20px;
        font-weight: 600;
        color: rgb(107,144,219);
        -ms-flex-preferred-size: 20%;
        flex-basis: 20%;
        margin-right: 2vw;
        text-align: center;
      }
      .golfflow > li dl dt .icon {
        font-size: 12px;
        color: #fff;
        background: rgb(107,144,219);
        background: -moz-linear-gradient(left, rgba(107,144,219,1) 0%, rgba(102,213,233,1) 100%);
        background: -webkit-linear-gradient(left, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
        background: linear-gradient(to right, rgba(107,144,219,1) 0%,rgba(102,213,233,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6b90db', endColorstr='#66d5e9',GradientType=1 );
        padding: 5px 10px;
        margin-bottom: 10px;
        display: block;
        border-radius: 20px;
        position: relative;
        z-index: 100;
      }

      .beginner{
        padding: 20px;
    }

    .slidetop{
        text-align: right;
    }
    .slidetop a{
        color: black;
    }

    .navbar .nav-link{
        font-size: 14px;
        font-weight: 700;
        padding-top:10px;
    }
    
    .navbar li{
        padding: 0 2px;
    }

    .iconbox{
        width: 38px;
        height: 38px;
        font-size: 21px;
        margin-top: 7px;
    }

    .boxicons{
      width: 38px; /* 必要に応じて調整 */
      height: 38px; /* 必要に応じて調整 */
    }

    .boxicons i {
     font-size: 21px; /* アイコンのサイズを調整 */
    }

    .i{
        display:flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
    }
    .btn-center {
        display: flex;
        justify-content: center;
    }

    .sitenavi{
        justify-content: space-between;
        text-align: center;
        height: 3rem;
        z-index: 1;
        top: 0;
        width: 100%;
    }

    
.sitenavi ul{
    margin: 0 ;
    padding: 0 ;
    }
    .sitenavi li{
    list-style: none;
    display: inline-block;
    padding: 0 0.5rem 0 0.5rem;
    }
    .sitenavi li:not(:last-child){
    border-right: 1px solid #ddd;
    }
    .sitenavi a{
    text-decoration: none;
    }
    
}

.row_image{
  align-items: center;
}

.line{
    position: fixed;
    z-index: 9999;
    height: auto;
    width: auto;
    bottom: 10px;
    right: 10px;
}

.application{
  position: fixed;
  bottom: 0;
  width: 100%;
}

.application_body{
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, .7);
}
.application_col {
  width: calc((100% - 10px) / 2);
  border-radius: 4px;
  padding: 20px 15px 15px;
  display: flex;
  align-items: center; /* 縦方向の中央揃え */
  justify-content: center; /* 横方向の中央揃え */
  flex-wrap: wrap;
}

.swing{
    background-image: url(https://gozarla.com/golf/images/swing.jpg);
}

.img{
    display: block;
    background-repeat: no-repeat;
}

.warninglist ul{
    padding: 0;
    position: relative;
}

.warninglist ul li{
 color: white;
 background: #1cb57b;
  line-height: 1.5;
  padding: 0.5em 0.5em 0.5em 2em;
  border-bottom: 2px solid white;
  list-style-type: none!important;
  font-weight: bold; 
}

.warninglist ul li:before {
    content: "！";
    position: absolute;
    left : 0.5em; 
    color: white; 
  }

.attention ul{
    list-style: none;
    padding-left: 0;
}

.attention a{
    color: #1e1e1e;
    text-decoration: none;
    font-size: 110%;
    font-weight: bold;
}

.attention ul li:before{
  content: "※";
  position: relative;
}

.accent h1:first-letter{
    font-size: 1.5em;
    color: var(--gold);
}

.images{
  position: relative;
}


/*==================================================
スライダーのためのcss
===================================*/
.slider {
    margin:0 auto;
    padding-top: 10px;
    position: relative;
    text-align: center;
}

@media (min-width: 835px){
  .slider img {
    width:400px;
}
}

@media (max-width: 834px){
  .slider img {
    width: 300px;
    display: block;
}
}
.slider img {
  display: block;
  margin: 0 auto;
  height: auto;
}

.slider .slick-slide {
  transform: scale(0.9);
  transition: all .7s;
  opacity: 0.5;
}

.slider .slick-slide.slick-center{
  opacity: 1;
}
.slider .slick-slide.slick-center{
    transform: scale(1);
  }

  .absolute_city{
    position: absolute;
    display: inline-block;
    padding: 0.5rem 0.5rem;
    color: #fff;
    background: var(--gold);
    
  }

  @media (min-width: 835px){
    .absolute_city{
      margin: 1rem 0 1rem -10px;
      left: 5%;
      top: 5%;
    }
  }

  @media (max-width: 834px){
    .absolute_city{
      left: 1px;
      top: 1px;
    }
  }

.slick-prev, 
.slick-next {
    position: absolute;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 5px solid var(--gold);
    border-right: 5px solid var(--gold);
    height: 15px;
    width: 15px;
}

.slick-prev {
  left: 10px; /* 左からの距離を調整 */
  transform: rotate(-135deg);
  z-index: 1; /* 矢印がスライダーの上に表示されるように */
}

.slick-next {
  right: 10px; /* 右からの距離を調整 */
  transform: rotate(45deg);
  z-index: 1; /* 矢印がスライダーの上に表示されるように */
}

@media (min-width: 835px){
.slick-prev {
    left: 25%;
    transform: rotate(-135deg);
}
}
@media (max-width: 834px){
  .slick-prev {
    left: 10px;
    transform: rotate(-135deg);
}
}
@media (min-width: 835px){
.slick-next {
    right: 25%;
    transform: rotate(45deg);
}
}
@media (max-width: 834px){
  .slick-prev {
    right: 25%;
    transform: rotate(45deg);
}
}
.slick-dots {
    text-align:center;
  margin:5px 0 0 0;
}

.slick-dots li {
  display:inline-block;
  margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:10px;
    height:10px;
    display:block;
    border-radius:50%;
    background:#ccc;
    margin-left: 5px;
}

.slick-dots .slick-active button{
    background:var(--gold);
}

.grid{
    display: grid;
    gap:26px;
    grid-template-columns: repeat(3,1fr);
    margin-top:10px;
    margin-bottom:10px;
}


.grid4{
    display: grid;
    gap:26px;
    grid-template-columns: repeat(4,1fr);
    margin-top:10px;
    margin-bottom:10px;
}

.feature h3:first-letter {
    font-size: 2em;
    color: var(--gold);
  }

  .feature h2:first-letter {
    font-size: 2em;
    color: var(--gold);
  }

.clause{
    list-style-type: cjk-ideographic;
    margin-left: 2em;
}

.terms{
    margin-left: 2em;
}


a{
    text-decoration: none;
    color: #000;
}

.centered-image {
    text-align: center;
  }

.bg-body{
    background-color: var(--bg-body)!important;
    color:var(--dark)!important;
}

.bg-pink{
    background-color: #faf5f5!important;
    color:var(--dark)!important;
}




h1,h2,h3,h4,h5,h6{
    font-weight: 700!important;
}

a{
    text-decoration: none;
    color: #000;
}



.iconbox{
    display: flex;
    justify-content: center;
    align-items: center;
    color:white;
    background-color: var(--gold);
    border-radius: 100px;
    flex: none;
}

.boxicons {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: var(--gold);
  border-radius: 50%; /* これで丸くなります */
  margin: 0 auto 20px auto; /* アイコンを中央に配置し、下にスペースを追加 */
}

.icon-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .icon-text-container .iconbox  {
    margin-bottom: 10px;
  }
  

.slide-content{
    margin:0 40px;
}
.slide-container{
    max-width:1120px;
    width: 100%;
    background-color: gray;
    padding: 40px ;
}

.hr{
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
  }

.breadcrumb{
    font-size: 14px;
    font-weight: 700;
}
.breadcrumb a{
    color: var(--dark);
}

.slidetop{
    text-align: right;
}

.slidetop a{
    color: black;
}


.service{
    position: relative;
    overflow: hidden;
}
.service::after{
    content:"";
    position: absolute;
    top:-100%;
    left:0;
    background-color: var(--primary);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.35s ease;
    z-index: -1 ;
}

.service:hover h3,
.service:hover h4,
.service:hover h5,
.service:hover p{
    color: white;
}
.service:hover::after{
    opacity: 1;
    top: 0;
}

img{
    width: 100%;
}

.image-content,
.card-content{
    display:flex;
    flex-direction: column;
    align-items:center;
    padding:10px 14px;
}
.image-content{
    position: relative;
    row-gap:5px;
}
.top{
    text-align: right;  
}
.top a{
    color: var(--darkgreen)
}

.company a {
    text-decoration: none;
  }

  .card{
    width: 300px;
    border-radius: 35px;
    background-color: white;
}

.card-effect {
    box-shadow: var(--box-shadow);
    background-color: #fff;
    padding: 25px;
    transition: all 0.35s ease;
  }

.card-effect h3{
    font-size: 20px;
    text-align: center;
}


.card-effect:hover{
    box-shadow:none;
    transform: translateY(5px);
}

.card-image{
    position:relative;
    background-color: var(--gold);
    padding: 3px;
}
.card-image .card-img{
    height:100%;
    width:100%;
    object-fit:cover;
    border-radius:  10%;
    border: 4px solid var(--darkgreen);
}

.heightcenter{
    width: 100%;
  display: flex;
  align-items: center;
}

.simple_footer-top{
  background-color: var(--darkgreen);
  padding-top: 10px;
  padding-bottom: 90px;
}
.simple_footer-top a{
  color: var(--linkdark);
}
.simple_footer-end{
  background-color: var(--darkgreen);
  padding-bottom: 30px;
}
.simple_footer-end a{
  color: var(--linkdark);
}


.footer-top{
    background-color: var(--darkgreen);
    padding-top: 60px;
    padding-bottom: 10px;
}
.footer-top a{
    color: var(--linkdark);
}
.footer-end{
    background-color: var(--darkgreen);
    padding-bottom: 10px;
}
.footer-end a{
    color: var(--linkdark);
}

.sitemenu ul{
  margin: 0 ;
  padding: 0 ;
  }
.sitemenu li{
  list-style: none;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  }
  .sitemenu li:not(:last-child){
  border-right:1px solid #ddd;
  }
  .sitemenu a{
  text-decoration: none;
  }

.beginner h3{
    padding: 0.25em 0.5em;
    background: transparent;
    border-left: solid 5px var(--gold);
}

.sitenavi{
    position: fixed;
}




@media (max-width: 834px) {

    .pickup_ul {
        grid-template-columns: 1fr;
        padding: 30px 0 40px;
        
    }

    .pickup_item:first-of-type {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--darkgreen);
    }

    .pickup_item:last-of-type {
        padding-top: 20px;
    }

    .pickup_body {
        grid-column: 2 / 3;
    }
}

@media (min-width: 840px) {
  .pickup {
      max-width: 1340px;
      width: 100%;
      margin: 0 auto 50px;
  }

  .pickup_ul {
    grid-template-columns: repeat(2, 1fr);
}
}

.pickup_body {
border-top: 1px dotted var(--darkgreen);
padding-top: 10px;
}

.pickup_item {
display: grid;
grid-template-columns: 33.3% 1fr;
-moz-column-gap: 15px;
column-gap: 15px;
row-gap: 15px;
}

.pickup_ul {
display: grid;
padding: 30px 0 50px;
-moz-column-gap: 30px;
column-gap: 30px;
}

.pickup {
background-color: #ebe4d6;
position: relative;
padding: 10px 30px 0;

}

.pickup .pickup_section:before {
background: #ebe4d6;
top: -21px;
content: "";
position: absolute;
width: 172px;
height: 22px;
background-size: contain;
left: 50%;
transform: translateX(-50%);
}


.pickup_subtitle {
display: flex;
align-items: center;
justify-content: center;
max-width: 1340px;
width: 100%;
margin: 0 auto;
display: block;
font-size: 1.5em!important;
margin-block-start: 0.83em;
margin-block-end: 0.83em;
margin-inline-start: 0px;
margin-inline-end: 0px;
font-weight: bold;
}

.pickup_style {
grid-row: 1 / 3;
}
.pickup_title {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 15px;
}

.pickup_subtitle span {
  position: relative;
  display: block;
  flex-shrink: 0;
  min-width: 170px;
  padding: 0 30px;
  box-sizing: border-box;
  text-align: center;
  line-height: 1;
}

.notes{
    background: var(--stripe);
  }
  
    .notes h3 {
    padding: 4px;
    border-bottom: solid 3px #eddbdb;
    position: relative;
    }
    
    .notes h3:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #bf7f7f;
    bottom: -3px;
    width: 20%;
    }

    
ol.flow{
    counter-reset:list;
    list-style-type:none;
    font-size: 14px;
    line-height : 1.6 ;
    padding:0;
    }
  
    ol.flow_pink li{
    border-bottom: dashed 1px #e1c2c2;
  }
  
  ol.flow_gold li{
    border-bottom: dashed 1px var(--gold);
  }
  
  ol.flow li{
    position:relative;
    padding: 0 0 0 30px;
    margin: 7px 0 7px 0px;
    font-size:14px;
    line-height: 29px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    }
    ol.flow li:before{
    counter-increment: list;
    content: counter(list);
    position: absolute;
    left: -10px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    line-height:30px;
    border-radius: 50%;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    }
  
  ol.flow_pink li:before{
    background: #e1c2c2;
  }
  ol.flow_gold li:before{
    background: var(--gold);
  }
  
  ol.flow_gold li:hover{
    border-bottom-color: var(--gold);
  }

  ol.flow{
    counter-reset:list;
    list-style-type:none;
    font-size: 14px;
    line-height : 1.6 ;
    padding:0;
    }
  
    ol.flow_pink li{
    border-bottom: dashed 1px #e1c2c2;
  }
  
  ol.flow_gold li{
    border-bottom: dashed 1px var(--gold);
  }
  
  ol.flow li{
    position:relative;
    padding: 0 0 0 30px;
    margin: 7px 0 7px 0px;
    font-size:14px;
    line-height: 29px;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    transition: 0.3s;
    }
    ol.flow li:before{
    counter-increment: list;
    content: counter(list);
    position: absolute;
    left: -10px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #fff;
    line-height:30px;
    border-radius: 50%;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    }
  
  ol.flow_pink li:before{
    background: #e1c2c2;
  }
  ol.flow_gold li:before{
    background: var(--gold);
  }
  
  ol.flow_gold li:hover{
    border-bottom-color: var(--gold);
  }

  ul.pinkline{
    counter-reset:list;
    list-style-type:none;
    font-size: 14px;
    line-height: 1.6 ;
    padding:0;
    }
    ul.pinkline li{
    position:relative;
    padding: 0 0 0 10px;
    margin: 7px 0 7px 0px;
    font-size:14px;
    line-height: 30px;
    border-bottom: dashed 1px #e1c2c2;
    }

    
  ul.goldpoint{
    counter-reset:list;
    list-style-type:none;
    font-size: 14px;
    line-height:1.6;
    padding:0;
    }
  ul.goldpoint li{
    position:relative;
    padding: 0 0 0 20px;
    margin: 7px 0 7px 0px;
    font-size:14px;
    line-height: 30px;
    border-bottom: dashed 1px var(--gold);
    }
  ul.goldpoint li:before{
    counter-increment: list;
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--gold);
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    }
  
    ul.point{
    counter-reset:list;
    list-style-type:none;
    font-size: 14px;
    line-height: 1.6 ;
    padding:0;
    }
    ul.point li{
    position:relative;
    padding: 0 0 0 20px;
    margin: 7px 0 7px 0px;
    font-size:14px;
    line-height: 30px;
    border-bottom: dashed 1px #e1c2c2;
    }
    ul.point li:before{
    counter-increment: list;
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #e1c2c2;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    }

    

    .suggest{
        margin: 0;
        padding: 0;
        border: 0;
        outline: 0;
        font-size: 100%;
        vertical-align: baseline;
    }

    .suggest a{
        border: none;
        color: #333;
        outline: none;
        text-decoration: none;
    }

    .suggest div{
        display: block;
    }

    .suggest *, ::after, ::before {
        box-sizing: inherit;
    }

    .panel-list {
        display: flex;
        flex-wrap: wrap;
    }
  
    .suggest ul{
        box-sizing: border-box;
        list-style: none;
        margin-block-start: 1em;
        margin-block-end: 1em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
    }

    .suggest li{
        border-radius: 10px;
    }

    .panel-list .panel {
        margin-bottom: 1%;
        width: calc(96% / 2);
        margin-right: 1%;
    }




    @media (max-width: 768px){
        .index .suggest .panel-list .panel a {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            padding: 4vw;
            margin-bottom: 0;
            width: 100%;
        }

        .index .suggest .panel-list .panel:not(:first-child)::before {
            background: #DBDBDB;
            content: "";
            display: block;
            height: 1px;
            margin-right: auto;
            margin-left: auto;
            position: relative;
            width: 92%;
            z-index: 2;
        }
    }
    
    @media (min-width: 769px){
        .index .suggest .panel-list .panel:not(:nth-of-type(5n)) {
            margin-right: 2%;
        }
        .panel-list .panel {
        margin-bottom: 2vw;
        width: calc(92% / 4);
        }

    }


    .panel-list .panel {
        background: #FFF;
        position: relative;
    }

    

    
.category ul{
  text-align: center;
}

.category li{
  display: inline-block;
  margin: auto;
}



.check {
    position: relative;
    margin: 2em 0;
    padding: 0.5em 1em;
    border: solid 3px var(--gold);
    border-radius: 8px;
}
.check .box-title {
    position: absolute;
    display: inline-block;
    top: -13px;
    left: 10px;
    padding: 0 9px;
    line-height: 1;
    font-size: 19px;
    background: #FFF;
    color: var(--gold);
    font-weight: bold;
}
.check b,p {
    margin: 0; 
    padding: 0;
}

  /* time-schedule */
  
  
  @media (max-width: 768px){
    .time-box{
      width: 90%;
    }
  
    .time-schedule {
      width: 90%;
  
    }
  
    .time-schedule span.time::after {
      right: -17px;
    }

    
  .time-schedule .sch_box {
    width: 90%;
    margin-left: 20px;
    padding: 10px 5px 10px 5px;
  }
  
  .time-schedule span.time {
    width: 5em;
    margin-left: -8em;
    padding: 0 0 2.5px;
    margin-top: 15px;
  }

  .time-schedule {
    margin: 0 auto 0 3em;
    padding-left: 30px;
    border-left: 5px solid #a7be18;
  }

  .time-schedule span.time::after {
    width: 15px;
    height: 15px;
  }
  
  }
  
  @media (min-width: 769px){
    .time-box{
      min-width: 450px;
      max-width: 450px;
    }
  
    .time-schedule {
      min-width: 400px;
      max-width: 400px;
  
    }
  
    .time-schedule span.time::after {
      right: -35px;
    }

    .time-schedule .sch_box {
      width: 100%;
      margin-left: 30px;
      padding: 15px 10px 15px 10px;
    }

    .time-schedule span.time {
      width: 5em;
      margin-left: -8em;
      padding: 0 0 5px;
      margin-top: 15px;
    }

    .time-schedule {
      margin: 0 auto 0 6em;
      padding-left: 20px;
      border-left: 6px solid #a7be18;
    }

    .time-schedule span.time::after {
      width: 20px;
      height: 20px;
    }
  
  }
  
  
  .time-schedule {
    list-style: none;
    box-sizing: border-box;
  }
  
  .time-schedule li {
    width: 100%;
    margin: 0 0;
    padding: 5px 0;
    position: relative;
  }
  
  .time-schedule span.time {
    display: inline-block;
    vertical-align: top;
    position: relative;
    text-align: right;
    box-sizing: border-box;
  }
  
  .time-schedule span.time::after {
    content: "";
    position: absolute;
    top: 0;
    background: #a7be18;
    border-radius: 10px;
  }
  
  .time-schedule .sch_box {
    display: inline-block;
    vertical-align: middle;
    background: #efefef;
    box-sizing: border-box;
    border-radius: 6px;
  }
  
  .time-schedule .sch_title {
    font-size: 16px;
    font-weight: 700;
  }
  
  .time-schedule .sch_tx {
    font-size: 14px;
    font-weight: normal;
  }
  
  .menu {
    display: flex;
    list-style: none;
  }
  
  .menu li {
    padding: 4px 12.5px;
  }
  
    /* 朝のスタイル */
    .morning::before {
      content: "朝食: ";
      font-weight: bold;
    }
  
    /* 昼のスタイル */
    .noon::before {
      content: "昼食: ";
      font-weight: bold;
    }
  
    /* 夕のスタイル */
    .evening::before {
      content: "夕食: ";
      font-weight: bold;
    }
    
  
    .flow_design03 {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-left: 20px;
    }
    
    .flow_design03 ul {
      padding: 0;
    }
    
    .flow_design03 li {
      list-style-type: none;
    }
    
    .flow_design03 dd {
      margin-left: 0;
    }
    
    .flow03 {
      position: relative;
    }
    
    .flow03::before {
      content: "";
      width: 15px;
      height: 100%;
      background: #eee;
      margin-left: -129px;
      display: block;
      position: absolute;
      top: 0;
      left: 120px;
      border-radius: 20px;
    }
    
    .flow03 > li {
      position: relative;
    }
    
    .flow03 > li:not(:last-child) {
      margin-bottom: 60px;
    }
    
    .flow03 > li .icon03 {
      font-size: 0.8em;
      width: 2em;
      height: 2em;
      line-height: 2;
      text-align: center;
      font-weight: bold;
      border-radius: 100vh;
      color: #fff;
      background: #a7be18;
      display: inline-block;
      margin-right: 0.3em;
    }
    
    .flow03 > li dl {
      padding-left: 70px;
      position: relative;
    }
    
    .flow03 > li dl::before,
    .flow03 > li dl::after {
      content: "";
      display: block;
      position: absolute;
      top: 15px;
    }
    
    .flow03 > li dl::before {
      width: 7px;
      height: 7px;
      margin-top: -3px;
      background: #a7be18;
      border-radius: 50%;
      left: -4px;
    }
    
    .flow03 > li dl::after {
      width: 50px;
      border-bottom: 1px dashed #999;
      position: absolute;
      left: 5px;
    }
    
    .flow03 > li dl dt {
      font-size: 1.3em;
      font-weight: 600;
      color: #a7be18;
      margin-bottom: 0.5em;
      display: flex;
      align-items: center;
    }


.wrappertop h1 {
  margin-bottom: 10px;
  line-height: 1.15;
  text-align: center;
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8), 0px 0px 2px rgba(0, 0, 0, 0.8), 0px 0px 2px rgba(0, 0, 0, 0.8);
  color: #FFFFFF;
}

.wrappertitle {
  position: absolute;
  top: 0px;
  left: 0%;
  z-index: 2;
  height: auto;
  box-sizing: border-box;
}



.item table{
  margin: 0 auto;
  background-color: whitesmoke;
  width: 90%;
  font-size: 14px;
}

.item table th{
  background-color: #617800;
  color: #FFFFFF;
  text-align: center;
  width: 100px;
}


.column_EffectPrice {
  line-height: 1.00;
  font-weight: bold;
}



.titleimg{
  background-position: center top;
  background-size: cover;
  position: relative;
  background-repeat: no-repeat;

}


.wrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 100;
}

.wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.wrap ul {
  list-style: none;
}

.wrap h1 span {
  display: block;
  line-height: 1.15;
}



.package_sub_title h1 {
  margin-bottom: 10px;
  line-height: 1.15;
  text-align: center;
  color: #FFFFFF;
}

.item{
  position: relative;
}



@media (min-width: 840px){

  .wrap{
    height: 80vh;
  }



  .item {
    width: 50%;
  }

  .item h1{
    font-size: 46px!important;
    margin-bottom: 30%;
    margin-right: 10%;
    padding: 12% 0% 0% 0%;
  }

  .item h1 span{
    font-size: 30px;
  }


  .package_sub_title {
    padding: 12% 0% 0% 0%;
    margin-left: 10%;
  }

  
.item table{
  margin-top: 10%;
}

  

}

@media (max-width: 834px){

  .wrap{
    height: 100vh;
  }

  .item {
    width: 100%;
  }

  .titleimg{
    height: 300px;
  }

  .package_sub_title h1 {
    margin-bottom: 10px;
    line-height: 1.15;
    text-align: center;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.8), 0px 0px 2px rgba(0, 0, 0, 0.8), 0px 0px 2px rgba(0, 0, 0, 0.8);
    color: #FFFFFF;
}

  .package_sub_title {
    margin-top: 15%;
    font-size: 48px;
    font-weight: bold;
    z-index: 2;
  }

  .package_sub_title::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  .smppadding{
    margin-top: 110%;
  }

  .pricetable{
    font-size: 11px!important;
  }

  .item table{
    margin-top: 10px;
  }

  
  .package_sub_title::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0, 0.5);
    z-index: -1;
  }

}

.schedule {
  position: relative;
  font-size: 14px;
}
.schedule::before {
  position: absolute;
  top: 0px;
  left: 6.3em;
  width: 6px;
  height: 100%;
  background-color: #eddbdb;
  content: "";
}

.schedule ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

.schedule li {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.schedule li + li {
  margin-top: 2em;
}

.schedule_time {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 5em;
  height: 2em;
  border-radius: 6px;
  background-color: #bf7f7f;
  color: #fff;
  text-align: center;
}
.schedule_time::before {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateX(50%) translateY(-50%) rotate(45deg);
  width: 0.5em;
  height: 0.5em;
  z-index: -1;
  background-color: #bf7f7f;
  content: "";
}
.schedule_time::after {
  position: absolute;
  top: 50%;
  left: 6em;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  border: 2px solid #fff;
  border-radius: 50%;
  background-color: #bf7f7f;
  content: "";
}

.schedule_content_title {
  font-weight: bold;
}

.schedule_content {
  margin: 0px 0px 0px 3em;
  width: calc(100% - 10em);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4列のグリッド */
  gap: 20px; /* アイテム間の隙間 */
  padding: 0 15px; /* ギャラリーの左右に余白 */
}

.gallery img {
  width: 100%;
  height: auto;
  vertical-align: bottom; /* 画像の下にできる余白を削除 */
}

.gallery ul{
  padding-left:0;
}
.gallery li{
  list-style:none;
}

/* 横幅900px以下で3列に変更 */
@media only screen and (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 横幅768px以下で2列に変更 */
@media only screen and (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 834px) {
.sns{
  width: 400px;
}
}
@media (max-width: 834px) {
.snslogo img {
  width: 50px;
}
}
@media (min-width: 835px) {
  .snslogo img {
    width: 80px;
  }
  }

.orderform li{
  padding: 5px!important;
}

/* ボタンを囲むコンテナのスタイル */
.button-container {
  display: flex;
  justify-content: center; /* 水平方向に中央揃え */
  align-items: center; /* 垂直方向に中央揃え */
  margin: 20px 0; /* 上下に余白を追加 */
}

/* 「ゴルフ回数を追加」ボタンのスタイル */
#add-golf-form , #add-user-form {
  text-align: center;
  background-color: #4CAF50; /* 緑色 */
  color: white; /* 白文字 */
  font-size: 16px; /* フォントサイズ */
  padding: 10px 20px; /* パディング */
  border: none; /* ボーダーを消す */
  border-radius: 5px; /* 角を丸める */
  cursor: pointer; /* ポインターを変更 */
  transition: background-color 0.3s; /* 背景色をスムーズに変更 */
}

#add-golf-form:hover , #add-user-form:hover {
  background-color: #45a049; /* ホバー時の色 */
}

/* 「削除」ボタンのスタイル */
.delete-form , .remove-user-form {
  background-color: #f44336; /* 赤色 */
  color: white; /* 白文字 */
  font-size: 16px; /* フォントサイズ */
  padding: 10px 20px; /* パディング */
  border: none; /* ボーダーなし */
  border-radius: 4px; /* 角を丸く */
  cursor: pointer; /* マウスポインター */
  margin-top: 10px; /* 上に余白 */
  transition: background-color 0.3s ease; /* スムーズな背景色変更 */
}

.delete-form:hover , .remove-user-form:hover {
  background-color: #d32f2f; /* ホバー時に濃い赤色 */
}

.delete-form:active , .remove-user-form:active {
  transform: scale(0.95); /* クリック時に縮小 */
}

.modelplan_slide_hero {
  padding-left: 0!important;
}

.item_view li{
  padding: 10px 10px;
}


