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

:root {
    --primary-color: #91763A;
}
html,body{
  color: #000;
  font-size: 16px;
  font-family: "游明朝体","游明朝", "Yu Mincho", "Noto Serif JP", serif;
}
.ff-gothic{
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
}

h1,h2,h3,h4,h5,h6{
  color: var(--primary-color);
  line-height: 1.4em;
}
p{
  line-height: 2em;
}
p:last-child{
  margin-bottom: 0;
}

section{
  padding: clamp(80px,16vw,160px) 0;
}

.fv{
  background: url(./img/fv_sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 160vw;
  position: relative;
}
.fv-ttl{
  max-width: 520px;
  width: 50%;
  min-width: 280px;
  position: absolute;
  transform: translate(-50%,-50%);
  top: 50%;
  left: 50%;
}
.hr-img{
  height: clamp(120px,16vw,160px);
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hr-img1{
  background-image: url(./img/bg-img1.jpg);
}
.hr-img2{
  background-image: url(./img/bg-img2.jpg);
}
.deco{
  position: absolute;
}
.deco1{
  width: 90px;
  transform: translateY(-50%);
  left: 5%;
}
.deco2{
  width: 60px;
  transform: translateY(-50%);
  right: 5%;
}

@media screen and (min-width: 375px) {
  .fv-ttl{
    min-width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .fv{
    background-image: url(./img/fv.jpg);
    height: 57vw;
    max-height: 690px;
    background-repeat: repeat;
    background-position: center;
  }
  .fv-ttl{
    width: 30%;
  }
  .deco1{
    width: 120px;
    left: 10%;
  }
  .deco2{
    width: 80px;
    right: 10%;
  }
}
@media screen and (min-width: 1200px) {
  .fv{
    background-size: 2050px;
  }
}
@media screen and (min-width: 1400px) {
  .fv{
    min-height: 700px;
    background-size: 2100px;
  }
}

.bg{
  background: url(./img/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.introduction{
  text-align: left;
  overflow: hidden;
}
.introduction h2{
  letter-spacing: .1em;
  font-size: clamp(28px,4vw,40px);
  line-height: 1.4em;
  margin-bottom: 0.5em;
  margin-right: -0.1em;
}
.introduction p{
  margin-top: clamp(40px,8vw,80px);
}

@media screen and (min-width: 450px) {
  .introduction h2 span{
    display: inline-block;
  }
}
@media screen and (min-width: 576px) {
  .introduction{
    text-align: center;
  }
  .introduction h2{
    margin-bottom: 0;
    margin-right: -0.8em;
  }
}



.timetable{
  max-width: 1000px;
  margin: 0 auto;
}
.tt-item{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.tt-item:not(:last-child){
  margin-bottom: 40px;
}
.tt-content{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: fit-content;
  flex-direction: column;
  margin: 0 auto;
  width: 100%;
}
.tt-point{
  background: url(./img/point-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 110px;
  height: 110px;
}
.tt-point span{
  font-size: 24px;
  line-height: 1.3em;
  color: var(--primary-color);
}
.tt-point span.tt-point-no{
  margin-top: -8px;
}
.tt-point span.tt-point-ttl_s{
  font-size: 21px;
}
.tt-text{
  padding: 40px 16px;
}
.tt-text-img{
  background: #F7F5F0;
  border-radius: 24px;
  margin-top: 30px;
  width: 100%;
  max-width: 380px;
}
.tt-text-img .tt-thum-img{
  border-radius: 24px 24px 0 0;
  height: 200px;
}
.tt-time{
  font-size: 16px;
  margin-bottom: 16px;
}
.tt-time span{
  text-decoration: underline;
}
.icon-clock{
  width: 20px;
  vertical-align: sub;
  margin-right: 8px;
}
.tt-heading{
  width: 100%;
}
.tt-heading h3{
  color: #000;
  font-size: 16px;
  margin: 0;
  width: fit-content;
}
.tt-thum-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
  overflow: hidden;
}


.tt-items{
  position: relative;
  z-index: 0;
}
.tt-items::before{
  width: 2px;
  height: 100%;
  position: absolute;
  left: calc(50% - 1px);
  background: var(--primary-color);
  content: '';
  display: block;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .tt-content{
    flex-direction: row;
    margin: 0;
    width: auto;
    flex: 1;
  }
  .tt-items::before{
    left: 54px;
  }
  .tt-point{
    margin-right: 16px;
  }
  .tt-text{
    padding: 0;
  }
  .tt-text-img{
    width: auto;
    background: none;
    border-radius: 0;
    padding: 0;
    margin-top: 0;
    max-width: none;
  }
  .tt-thum{
    width: 240px;
    height: 150px;
  }
  .tt-heading h3{
    font-size: 20px;
  }
}
@media screen and (min-width: 992px) {
  .tt-thum{
    width: 320px;
    height: 200px;
  }
  .tt-heading h3{
    font-size: 24px;
  }
}


.heading-h2{
  font-size: clamp(30px,4vw,40px);
  text-align: center;
}

.detail-wrap{
  background: #F7F5F0;
  padding: clamp(40px,6vw,60px) clamp(20px,4vw,40px);
  border-radius: 24px;
  max-width: 1000px;
  width: 100%;
  margin: 40px auto 0;
}
.detail-wrap th,.detail-wrap td{
  width: 100%;
  display: block;
}
.detail-wrap th{
  padding-top: 1em;
  font-size: 16px;
  color: #91763A;
  padding-bottom: 0.5em;
}
.detail-wrap td{
  padding-bottom: 1em;
  font-size: 14px;
  border-bottom: 1px solid #fff;
  font-family: "游ゴシック体", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
}
.detail-wrap ul{
  padding: 0 0 0 1em;
  margin: 0;
}
.detail-wrap li{
  padding: 0;
}
.detail-wrap a{
  color: #91763A;
}

@media screen and (min-width: 768px) {
  .detail-wrap th,.detail-wrap td{
    border-bottom: 1px solid #fff;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    width: auto;
    display: table-cell;
  }
  .detail-wrap th{
    padding-right: 1em;
    width: 200px;
    border-bottom: 1px solid #fff;
    color: #000;
  }
}
@media screen and (min-width: 992px) {
  .detail-wrap{
    padding: 90px 100px;
  }
}

.cv-btn{
  border-radius: 24px;
  border: 2px solid #91763A;
  display: block;
  line-height: 3em;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 0;
  color: #fff;
  background: #91763A;
  text-decoration: none;
  font-size: clamp(20px,2.4vw,24px);
  transition: .3s;
}
.cv-btn:hover{
  background: #fff;
  color: #91763A;
}



.footer-cv{
  margin-top: clamp(80px,16vw,160px);
  text-align: center;
}
.cv-qr{
  margin-top: clamp(40px,8vw,80px);
}
.cv-qr h2{
  font-size: clamp(18px,2.4vw,24px);
  margin-bottom: 20px;
}
.cv-qr img{
  display: inline-block;
  width: 200px;
  margin: 0 auto 0;
  transition: .3s;
}
.cv-qr img:hover{
  opacity: 0.7;
}


footer .copyright{
  display: block;
  text-align: center;
  padding: 5px 0;
  font-size: 12px;
}
