@charset "UTF-8";
/* [ ヤマハボート免許教室 ] components.css */
/*==================================================*
 *  [ 下線 ]
 *==================================================*/
.hd-ul {
  position: relative;
}
.hd-ul::after {
  content: "";
  position: absolute;
  bottom: -0.909em;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(136px, 9.69vw, 186px);
  height: auto;
  aspect-ratio: 93/5;
  background: #F3C300;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(/jp/ec/agent/img/line_wave.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(/jp/ec/agent/img/line_wave.svg);
}
@media only screen and (max-width: 768px) {
  .hd-ul::after {
    width: clamp(136px, 34.61vw, 186px);
  }
}

/*==================================================*
 *  [ リスト ]
 *==================================================*/
.check-list {
  list-style: none;
  color: #111273;
}
.check-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 0.625em;
}
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.1em;
  left: 0;
  width: 1.11em;
  height: auto;
  aspect-ratio: 1/1;
  background: url("/jp/ec/agent/img/icon_check.svg") center/cover no-repeat;
}

.note-numlist {
  list-style: none;
  counter-reset: note;
}
.note-numlist li {
  counter-increment: note;
  text-indent: -2.5em;
  padding-left: 2.5em;
}
.note-numlist li::before {
  content: "※" counter(note) "　";
}

.boxlist-yl {
  gap: 20px;
}
.boxlist-yl .box-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  background: #FEEFA9;
  border-radius: 20px;
  padding: clamp(26px, 1.56vw, 30px) clamp(22px, 1.35vw, 26px);
}
.boxlist-yl .box-item .box-item-ttl {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-bottom: clamp(30px, 2.08vw, 40px);
}
.boxlist-yl .box-item .box-item-ttl .item-icon {
  width: 30%;
}
.boxlist-yl .box-item .box-item-ttl .txt-main {
  position: relative;
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
}
.boxlist-yl .box-item .box-item-ttl.hd-ul::after {
  background: #fff;
}
.boxlist-yl .box-item > .flex {
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.04vw, 20px);
}
.boxlist-yl .box-item > .flex > .flex {
  gap: 5px;
  font-size: clamp(1.2rem, 0.73vw, 1.4rem);
}
.boxlist-yl .box-item > p {
  font-size: clamp(1.4rem, 0.83vw, 1.6rem);
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .boxlist-yl {
    flex-direction: column;
    gap: max(10px, 2.54vw);
  }
  .boxlist-yl .box-item {
    width: 100% !important;
    border-radius: 10px;
  }
  .boxlist-yl .box-item .box-item-ttl {
    justify-content: center;
    flex-direction: row;
    margin-bottom: clamp(36px, 9.16vw, 40px);
  }
  .boxlist-yl .box-item .box-item-ttl .item-icon {
    width: 24%;
  }
  .boxlist-yl .box-item .box-item-ttl .txt-main {
    font-size: clamp(1.8rem, 4.58vw, 2.4rem);
  }
  .boxlist-yl .box-item > .flex {
    gap: clamp(10px, 2.54vw, 20px);
  }
  .boxlist-yl .box-item > .flex > .flex {
    font-size: clamp(1.2rem, 3.05vw, 1.4rem);
  }
  .boxlist-yl .box-item > p {
    font-size: clamp(1.4rem, 3.56vw, 1.6rem);
  }
  .boxlist-yl .box-item:nth-of-type(1) .box-item-ttl {
    gap: 1em;
  }
}

.boxlist-wh {
  flex-wrap: wrap;
}
.boxlist-wh .box-item {
  flex-direction: column;
  position: relative;
  background: #fff;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 7px 5px rgba(45, 26, 26, 0.2);
}
.boxlist-wh .box-item .recom, .boxlist-wh .box-item .standard {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(70px, 4.69vw, 90px);
  height: auto;
  aspect-ratio: 1/1;
  z-index: 1;
}
.boxlist-wh .box-item .recom {
  background: url("/jp/ec/agent/img/icon_reccom.svg") center/contain no-repeat;
}
.boxlist-wh .box-item .standard {
  background: url("/jp/ec/agent/img/icon_standard.svg") center/contain no-repeat;
}
.boxlist-wh .box-item div[class=""] {
  display: none;
}
.boxlist-wh .box-item .box-item-ttl {
  flex-direction: column;
}
.boxlist-wh .box-item .box-item-ttl h4 {
  position: relative;
  width: fit-content;
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
  margin-left: 2.167em;
}
.boxlist-wh .box-item .box-item-ttl h4::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -2.167em;
  width: 1.667em;
  height: auto;
  aspect-ratio: 1/1;
  transform: translateY(-50%);
}
.boxlist-wh .box-item .box-item-ttl h4 span {
  font-size: clamp(2.2rem, 1.56vw, 3rem);
  font-weight: 900;
}
.boxlist-wh .box-item .item-detail {
  align-self: flex-start;
  font-size: clamp(1.4rem, 0.94vw, 1.8rem);
}
.boxlist-wh .box-item .item-detail span {
  font-size: clamp(1.2rem, 0.73vw, 1.4rem);
}
.boxlist-wh .box-item .item-area {
  align-self: flex-start;
  color: #666;
  font-size: clamp(1.2rem, 0.83vw, 1.6rem);
  line-height: 1.625;
}
.boxlist-wh .box-item .item-entry {
  margin-top: auto;
}
.boxlist-wh .box-item .item-entry .item-price {
  flex-wrap: wrap;
  gap: 0.25em 1.875em;
  margin-top: auto;
}
.boxlist-wh .box-item .item-entry .item-price > p {
  font-size: clamp(1.4rem, 1.15vw, 2.2rem);
}
.boxlist-wh .box-item .item-entry .item-price > p span {
  font-size: clamp(2.4rem, 1.56vw, 3rem);
}
.boxlist-wh .box-item .item-entry .item-price .item-cost {
  color: #CC0000;
}
.boxlist-wh .box-item .item-entry .item-price .item-date {
  color: #0990C2;
}
.boxlist-wh .online.box-item .box-item-ttl h4 {
  background: linear-gradient(transparent 70%, #FFF4CC 70%);
}
.boxlist-wh .online.box-item .box-item-ttl h4::before {
  background: url("/jp/ec/agent/img/icon_online.svg") center/contain no-repeat;
}
.boxlist-wh .online.box-item .box-item-ttl p {
  color: #E95513;
}
.boxlist-wh .regular.box-item .box-item-ttl h4 {
  background: linear-gradient(transparent 70%, #D2E5F6 70%);
}
.boxlist-wh .regular.box-item .box-item-ttl h4::before {
  background: url("/jp/ec/agent/img/icon_regular.svg") center/contain no-repeat;
}
.boxlist-wh .regular.box-item .box-item-ttl p {
  color: #0080CB;
}
@media only screen and (max-width: 768px) {
  .boxlist-wh {
    gap: 2.54vw;
  }
  .boxlist-wh .box-item {
    width: 100% !important;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.16);
    padding: max(30px, 7.63vw) max(24px, 6.11vw);
  }
  .boxlist-wh .box-item .recom {
    width: clamp(70px, 17.81vw, 90px);
  }
  .boxlist-wh .box-item .standard {
    width: clamp(70px, 17.81vw, 90px);
  }
  .boxlist-wh .box-item .box-item-ttl {
    gap: 6px;
  }
  .boxlist-wh .box-item .box-item-ttl h4 {
    font-size: clamp(1.8rem, 4.83vw, 2.4rem);
    margin-left: calc(clamp(30px, 7.63vw, 36px) + 0.5em);
  }
  .boxlist-wh .box-item .box-item-ttl h4::before {
    left: calc(-30px - 0.5em);
    width: clamp(30px, 7.63vw, 36px);
  }
  .boxlist-wh .box-item .box-item-ttl h4 span {
    font-size: clamp(2.2rem, 5.9vw, 3rem);
  }
  .boxlist-wh .box-item .box-item-ttl p {
    font-size: clamp(1.2rem, 3.22vw, 1.4rem);
  }
  .boxlist-wh .box-item .item-detail {
    font-size: clamp(1.4rem, 3.56vw, 1.8rem);
  }
  .boxlist-wh .box-item .item-detail span {
    font-size: clamp(1.2rem, 3.05vw, 1.4rem);
  }
  .boxlist-wh .box-item .item-area {
    font-size: clamp(1.2rem, 3.05vw, 1.6rem);
  }
  .boxlist-wh .box-item .item-entry .item-price {
    gap: 0.25em 0.938em;
  }
  .boxlist-wh .box-item .item-entry .item-price > p {
    font-size: clamp(1.4rem, 3.56vw, 2.2rem);
  }
  .boxlist-wh .box-item .item-entry .item-price > p span {
    font-size: clamp(2.4rem, 6.11vw, 3rem);
  }
  .boxlist-wh .online.box-item .item-name h4 {
    background: linear-gradient(transparent 70%, #FFF4CC 70%);
  }
  .boxlist-wh .regular.box-item .item-name h4 {
    background: linear-gradient(transparent 70%, #D2E5F6 70%);
  }
}

/*==================================================*
 *  [ ボタン ]
 *==================================================*/
.trial-btn {
  display: block;
  width: fit-content;
  color: #E95513;
  font-size: clamp(1.5rem, 1.15vw, 2.2rem);
  text-align: center;
  background: #FFF4CC;
  border-radius: 100vh;
  padding: 0.82em 1.5em;
  transition: all 0.4s ease;
}
.trial-btn b::before, .trial-btn b::after {
  content: "";
  display: inline-block;
  height: auto;
  transition: all 0.4s ease;
}
.trial-btn b::before {
  width: 0.682em;
  aspect-ratio: 5/9;
  vertical-align: text-bottom;
  background: #E95513;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(/jp/ec/agent/img/icon_sp.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(/jp/ec/agent/img/icon_sp.svg);
  margin-right: 0.1em;
}
.trial-btn b::after {
  width: 0.773em;
  aspect-ratio: 1/1;
  vertical-align: baseline;
  background: #E95513;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(/jp/ec/agent/img/icon_blank.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(/jp/ec/agent/img/icon_blank.svg);
  margin-left: 0.25em;
}
@media (hover: hover) {
  .trial-btn:hover {
    color: #fff;
    background: #E95513;
  }
  .trial-btn:hover b::before, .trial-btn:hover b::after {
    background: #fff;
  }
}
@media only screen and (max-width: 960px) {
  .trial-btn {
    font-size: clamp(1.4rem, 3.56vw, 1.8rem);
  }
  .trial-btn b::before {
    width: 0.786em;
  }
  .trial-btn b::after {
    width: 0.857em;
  }
}

.entry-btn {
  display: block;
  position: relative;
  width: fit-content;
  color: #fff;
  font-size: clamp(1.5rem, 1.15vw, 2.2rem);
  text-align: center;
  background: #4D9F3A;
  border-radius: 100vh;
  padding: 0.591em 2.455em 0.682em;
  margin: 0 auto;
  transition: background 0.4s ease;
}
.entry-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.409em;
  aspect-ratio: 3/5;
  vertical-align: baseline;
  background: #fff;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(/jp/ec/agent/img/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(/jp/ec/agent/img/icon_arrow.svg);
  transform: translateY(-50%);
}
@media (hover: hover) {
  .entry-btn:hover {
    background: #72CD33;
  }
}
@media only screen and (max-width: 960px) {
  .entry-btn {
    font-size: clamp(1.4rem, 3.56vw, 1.8rem);
  }
  .entry-btn::after {
    width: 0.6em;
  }
}

.service-btn {
  display: block;
  width: fit-content;
  color: #fff;
  font-size: clamp(1.5rem, 0.94vw, 1.8rem);
  text-align: center;
  background: #111273;
  border-radius: 100vh;
  padding: 0.818em 1.591em;
  transition: all 0.4s ease;
}
.service-btn b::before, .service-btn b::after {
  content: "";
  display: inline-block;
  height: auto;
  transition: all 0.4s ease;
}
.service-btn b::before {
  width: clamp(24px, 1.46vw, 28px);
  aspect-ratio: 51/37;
  vertical-align: text-bottom;
  background: #fff;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(/jp/ec/agent/img/icon_contact.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(/jp/ec/agent/img/icon_contact.svg);
  margin-right: 0.75em;
}
.service-btn b::after {
  width: clamp(12px, 0.89vw, 17px);
  aspect-ratio: 1/1;
  vertical-align: baseline;
  background: #fff;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(/jp/ec/agent/img/icon_blank.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(/jp/ec/agent/img/icon_blank.svg);
  margin-left: 0.5em;
}
@media (hover: hover) {
  .service-btn:hover {
    background: #4849C5;
  }
}
@media only screen and (max-width: 960px) {
  .service-btn {
    font-size: clamp(1.5rem, 3.82vw, 1.8rem);
  }
  .service-btn b::before {
    width: clamp(24px, 6.11vw, 28px);
  }
  .service-btn b::after {
    width: clamp(12px, 3.05vw, 19px);
  }
}

/*==================================================*
 *  [ 無限スクロール ]
 *==================================================*/
.scroll-bg {
  position: relative;
  width: 100%;
  height: auto;
  background-size: auto 100%;
  background-repeat: repeat-x;
  overflow: hidden;
}

/*==================================================*
 *  [ テーブル ]
 *==================================================*/
.dbl-table {
  width: 100%;
  text-align: center;
  border: 1px solid #A4A4A4;
}
.dbl-table th, .dbl-table td {
  border-right: 1px solid #A4A4A4;
  border-bottom: 1px solid #A4A4A4;
}
.dbl-table thead {
  color: #fff;
  background: #111273;
}
.dbl-table thead th {
  font-size: clamp(1.2rem, 0.83vw, 1.6rem);
  padding-top: 0.313em;
  padding-bottom: 0.313em;
}
.dbl-table tbody {
  background: #fff;
}
.dbl-table tbody th {
  font-size: clamp(1.4rem, 0.94vw, 1.8rem);
  padding-top: 0.889em;
  padding-bottom: 0.889em;
}
.dbl-table tbody th a {
  display: block;
  color: #111273;
  font-weight: 900;
}
.dbl-table tbody td {
  font-size: clamp(1.2rem, 0.83vw, 1.6rem);
  padding-left: 2em;
  padding-right: 2em;
}
.dbl-table tbody td span {
  display: inline-block;
}
@media only screen and (max-width: 960px) {
  .dbl-table thead th {
    font-size: clamp(1.2rem, 3.05vw, 1.6rem);
    padding-top: 0.667em;
    padding-bottom: 0.667em;
  }
  .dbl-table tbody th {
    font-size: clamp(1.2rem, 3.05vw, 1.6rem);
    padding: 0.667em;
  }
  .dbl-table tbody td {
    font-size: clamp(1.2rem, 3.05vw, 1.6rem);
    padding: 0.667em;
  }
}

/*==================================================*
 *  [ 境界線 ]
 *==================================================*/
.wave {
  position: relative;
}
.wave::after {
  content: "";
  position: absolute;
  top: -46px;
  left: 0;
  width: 100%;
  height: 47px;
  background: #29AECF;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url(/jp/ec/agent/img/bg_wave.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url(/jp/ec/agent/img/bg_wave.svg);
  mask-size: cover;
  -webkit-mask-size: cover;
}
@media only screen and (max-width: 960px) {
  .wave::after {
    top: -23px;
    height: 24px;
  }
}

/*==================================================*
 *  [ お問合せ ]
 *==================================================*/
.contact h2 {
  position: relative;
  width: fit-content;
  font-size: clamp(2rem, 1.46vw, 2.8rem);
  padding-left: 1.321em;
}
.contact h2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.071em;
  height: auto;
  aspect-ratio: 15/19;
  background: url("/jp/ec/agent/img/icon_operator.svg") center/contain no-repeat;
  transform: translateY(-50%);
}
.contact p {
  font-size: clamp(1.4rem, 0.94vw, 1.8rem);
}
.contact p span {
  display: inline-block;
}
.contact .list-tell {
  border-top: 1px solid #ECECEC;
  padding-top: 18px;
}
.contact .list-tell .listtell {
  display: flex;
  justify-content: space-between;
  padding: 12px;
}
.contact .list-tell .listtell dt span {
  display: inline-block;
  font-size: clamp(1.4rem, 0.83vw, 1.6rem);
}
.contact .list-tell .listtell dt span b {
  font-size: clamp(1.6rem, 0.94vw, 1.8rem);
  margin-right: 1em;
}
.contact .list-tell .listtell dd {
  font-size: clamp(2rem, 1.25vw, 2.4rem);
  min-width: 200px;
}
.contact .list-tell .listtell dd img {
  margin-right: 0.5em;
}
@media only screen and (max-width: 768px) {
  .contact h2 {
    font-size: clamp(2rem, 5.09vw, 2.8rem);
    padding-left: 30px;
  }
  .contact h2::before {
    width: 20px;
  }
  .contact p {
    font-size: clamp(1.2rem, 3.05vw, 1.8rem);
  }
  .contact p span {
    display: block;
  }
  .contact .list-tell {
    padding-top: 18px;
  }
  .contact .list-tell .listtell {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    padding: 15px;
  }
  .contact .list-tell .listtell dt {
    text-align: center;
  }
  .contact .list-tell .listtell dt span {
    display: block;
    font-size: clamp(1.2rem, 3.05vw, 1.4rem);
  }
  .contact .list-tell .listtell dt span b {
    font-size: clamp(1.6rem, 4.07vw, 1.8rem);
  }
  .contact .list-tell .listtell dd {
    font-size: clamp(2rem, 5.09vw, 2.4rem);
  }
}/*# sourceMappingURL=components.css.map */
