@charset "utf-8";

/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
}
.visible-pc {
    display: block;
}
.visible-sp {
    display: none;
}

/* Noto Sans JP - Regular (400) */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('/fonts/NotoSansJP-Regular.ttf') format('truetype');
  font-display: swap;
}
/* Noto Sans JP - Medium (500) */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 500;
  src: url('/fonts/NotoSansJP-Medium.ttf') format('truetype');
  font-display: swap;
}
/* Noto Sans JP - Bold (700) */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('/fonts/NotoSansJP-Bold.ttf') format('truetype');
  font-display: swap;
}
/* Noto Sans JP - Black (900) */
@font-face {
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 900;
  src: url('/fonts/NotoSansJP-Black.ttf') format('truetype');
  font-display: swap;
}
/* Poppins - Bold (700) */
@font-face {
    font-family: 'Poppins'; 
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-display: swap;
}
@media screen and (max-width: 767.9px){
    .visible-pc {
        display: none;
    }
    .visible-sp {
        display: block;
    }
}
header {
    margin-top: 40px;
}
.container {
    max-width: 700px;
    margin: auto;
    padding: 70px 0 120px;
}
header .container {
    padding: 0 0 120px;
}
.logo {
    position: absolute;
    left: 0;
    top: 0;
}
.title-h1 {
    text-align: center;
    margin-top: -70px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.46;
    margin-bottom: 20px;
}
.title-h1 span {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    line-height: 1.4;
}
.header_note {
    border-bottom: 4px solid #191919;
    border-left: 4px solid #191919;
    border-radius: 30px 30px 30px 0px;
    border-right: 4px solid #191919;
    border-top: 4px solid #191919;
    box-shadow: 10px 10px 0px #191919;
    padding: 20px 0;
    background: #F9F9F9;
}
.header_note > p {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.8;
}
.header_note > p + p {
    margin-top: 15px;
}
@media screen and (max-width: 767.9px){
    header {
       margin-top: 20px;
    }
    .container {
        max-width: 700px;
        margin: auto;
        padding: 40px 20px 70px;
    }
    header .container {
        padding: 10px 0 70px;
    }
    .kv img {
        display: block;
        margin: auto;
    }
    .logo {
        width: 58px;
        height: 35px;
        left: 20px;
    }
    .title-h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .title-h1 span {
        font-size: 28px;
    }
    .header_note {
        padding: 21px 18px;
        margin: 0 16px;
        box-shadow: 5px 5px 0px #191919;
    }
    .header_note > p {
        text-align: left;
        font-size: 15px;
        letter-spacing: -0.01em;
        line-height: 1.68;
    }
}
.previous {
    background: rgba(247,247,247,0.75);
}
.previous::before {
    content: '';
    width: 130px;
    height: 130px;
    background: url(../img/icon01.webp) no-repeat center / contain;
    position: absolute;
    left: 0;
    right: 0;
    top: -65px;
    margin: auto;
}
.title-h2 {
    font-size: 28px;
    text-align: center;
    padding-bottom: 26px;
    margin-bottom: 44px;
}
.title-h2::before {
    content: '';
    width: 70px;
    height: 3px;
    background: #CCCCCC;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.youtube iframe {
    display: block;
    margin: auto;
}
@media screen and (max-width: 767.9px){
    .previous::before {
        width: 80px;
        height: 80px;
        top: -40px;
    }
    .title-h2 {
        font-size: 20px;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }
    .title-h2::before {
        width: 50px;
        height: 3px;
    }
    .youtube iframe {
        width: 100%;
        height: inherit;
        aspect-ratio: 16 / 9;
    }
}
.previous-winners::before {
    content: '';
    width: 130px;
    height: 130px;
    background: url(../img/icon02.webp) no-repeat center / contain;
    position: absolute;
    left: 0;
    right: 0;
    top: -65px;
    margin: auto;
}
.previous-winners_list {
    display: flex;
    flex-wrap: wrap;
    gap: 27px 30px;
}
.previous-winners_item {
    width: calc((100% - 30px) / 2);
    border-radius: 20px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.10);
    margin-top: 78px;
    transition: 0.3s;
}
.previous-winners_item:hover {
    box-shadow: 0 3px 20px rgba(0,0,0,0.30);
    transition: 0.3s;
}
.previous-winners_item > a {
    text-decoration: none;
    color: #000000;
    width: 100%;
    height: 100%;
    display: block;
    padding: 30px;
}
.previous-winners_item h3 > img{
    width: 160px;
    height: 157px;
    position: absolute;
    left: 0;
    right: 0;
    top: -108px;
    margin: auto;
    z-index: 1;
}
.previous-winners_item h3 + img {
    margin-bottom: 20px;
}
.previous-winners_item h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.55;
}
.previous-winners_item p {
    font-size: 16px;
    line-height: 1.575;
}
@media screen and (max-width: 767.9px){
    .previous-winners .title-h2 {
        margin-bottom: 20px;
    }
    .previous-winners::before {
        width: 80px;
        height: 80px;
        top: -40px;
    }
    .previous-winners_list {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    .previous-winners_item {
        width: 100%;
        max-width: 335px;
        margin-top: 70px;
    }
    .previous-winners_item > a {
        padding: 25px 30px 20px;
    }
    .previous-winners_item h3 > img {
        width: 140px;
        height: 138px;
        top: -94px;
    }
    .previous-winners_item h3 + img {
        margin-bottom: 15px;
    }
    .previous-winners_item p {
        font-size: 15px;
    }
}
footer {
    background: #F5F2ED;
}
footer h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.tel-box dt {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}
.tel-box dd {
    font-family: 'Poppins', sans-serif;
    font-size: 46px;
    text-align: center;
    color: #F07800;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px dashed #CCCCCC;
    line-height: 1.4;
}
.tel-box dd address span {
    padding-left: 65px;
}
.tel-box dd address span::before {
    content: '';
    width: 50px;
    height: 50px;
    background: url(../img/icon_tell.webp) no-repeat center / contain;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.tel-box dd address span a {
    text-decoration: none;
    color: #F07800;
}
.tel-box dd address {
    font-style: normal;
}
.copyright {
    text-align: center;
    font-size: 12px;
}
footer .container {
    padding-bottom: 60px;
}
@media screen and (max-width: 767.9px){
    footer h2 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .tel-box dt {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .tel-box dd {
        font-size: 32px;
        padding-bottom: 15px;
        margin-bottom: 20px;
    }
    .tel-box dd address span {
        padding-left: 45px;
    }
    .tel-box dd address span::before {
        width: 35px;
        height: 35px;
    }
    footer .container {
        padding-bottom: 35px;
    }
}