@charset "UTF-8";
/* CSS Document */

html,
body {
    font-size: 62.5%;
    font-family: 'Noto Sans JP', sans-serif;
    font-feature-settings: "palt";
    line-height: 1.578;
    color: #000;
    position: relative;
}

body {
    position: relative;
    background-color: #fffded;
}

a {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    outline: none;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    color: #ea6d93;
    border-bottom: 1px solid #ea6d93;
}

a:hover {
    color: #000;
}

/*pcの時*/
a[href^="tel:"] {
    pointer-events: none;
}

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

    /*spの時*/
    a[href^="tel:"] {
        pointer-events: auto;
    }
}

img {
    width: 100%;
    height: auto;
}

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

input,
select {
    vertical-align: middle;
    border: 1px solid #999;
}

input,
select,
textarea {
    margin: 0;
    padding: 10px 10px;
    font-size: 16px;
    line-height: 1.5;
    box-sizing: border-box;
}

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

i.fas {
    margin: 0 10px;
}

br.pcbr {
    display: none;
}

img.pc-img {
    display: none;
}

.txt-center {
    text-align: center;
}

li {
    list-style-type: none;
}

.btn a {
    display: block;
    background-color: #ea6d93;
    border-radius: 30px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: #FFF;
    border: none;
}

.btn a:hover {
    background-color: #FFF;
    color: #ea6d93;
}

main li {
    font-size: 1.4rem;
    margin-bottom: 0.5em;
}

main p {
    font-size: 1.4rem;
    margin-bottom: 1em;
}

main dt,
main dd {
    font-size: 1.4rem;
}

main dd {
    margin-bottom: 1em;
}

@media screen and (min-width:480px) {
    img.pc-img {
        display: block;
    }

    img.sp-img {
        display: none;
    }

    br.spbr {
        display: none;
    }

    br.pcbr {
        display: block;
    }
}

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #FFF;
    text-align: center;
    color: #473E31;
}

/* Loading画像中央配置　*/
#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width: 346px;
    height: 127px;
}

.box {
    opacity: 0;
}

.floatshadow:hover {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 50px rgba(128, 128, 128, 0.1);
    border-color: transparent;
}

/* 左から */
.fadeLeftTrigger {
    opacity: 0;
}

.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 右から */
.fadeRightTrigger {
    opacity: 0;
}

.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeTrigger {
    opacity: 0;
}

.fade {
    animation-name: fadeAnime;
    animation-duration: 1.0s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fade2 {
    animation-name: fadeAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time05 {
    animation-delay: 0.5s;
}

.delay-time1 {
    animation-delay: 1s;
}

.delay-time15 {
    animation-delay: 1.5s;
}

.delay-time2 {
    animation-delay: 2s;
}

.delay-time25 {
    animation-delay: 2.5s;
}

.delay-time3 {
    animation-delay: 3s;
}

.delay-time35 {
    animation-delay: 3.5s;
}

.delay-time4 {
    animation-delay: 4s;
}

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

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

/*  ------ 基本設定 ------  */

.maintitle {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
}

.page .maintitle {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
}

.maintitle a {
    border: none;
}

main {
    max-width: 1210px;
    width: 100%;
    margin: 0 auto;
    background-image: url(images/pgbg.png);
    background-repeat: repeat-y;
    background-size: contain;
    padding-top: 100px;
    padding-bottom: 120px;
}

.page main {
    background-size: cover;
}

main section {
    max-width: 920px;
    margin: 0 15px 60px 15px;
}

main section:last-child {
    margin-bottom: 0px;
}

main section#schedule {
    margin: 0 15px 30px 15px;
}

@media screen and (min-width:480px) {
    main section {
        max-width: 770px;
        margin: 0 auto 120px auto;
        padding: 0 15px;
        box-sizing: border-box;
    }

    main section:last-child {
        margin-bottom: 0px;
    }
}

@media screen and (min-width:769px) {
    main section {
        max-width: 950px;
        margin: 0 auto 120px auto;
    }

    main section:last-child {
        margin-bottom: 0px;
    }
}

/*------

#about

------*/

#map .container {}

#map h2 {
    margin-bottom: 10px;
    width: 157px;
}

#map .container img {
    width: 330px;
    max-width: 920px;
    display: block;
    margin: 0 auto;
}

.separater {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto 60px auto;
    border-top: 1px solid #ea6d93;
}

@media screen and (min-width:480px) {
    #map h2 {
        margin-bottom: 10px;
        width: 246px;
    }

    #map .container img {
        width: 100%;
        max-width: 920px;
    }
}

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


#schdule h2 {
    margin-bottom: 30px;
    width: 179px;
}

#schdule ul li {
    margin-bottom: 30px;
}

#schdule ul .event-stamprally img {
    width: 173px;
}

#schdule ul .event-race img {
    width: 330px;
    /*0.85*/
}

#schdule ul .event-art img {
    width: 194px;
}

#schdule ul .event-pilates img {
    width: 185px;
}

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

    #schdule h2 {
        margin-bottom: 30px;
        width: 280px;
    }

    #schdule ul .event-stamprally img {
        width: 203px;
    }

    #schdule ul .event-race img {
        width: 388px;
    }

    #schdule ul .event-art img {
        width: 228px;
    }

    #schdule ul .event-pilates img {
        width: 231px;
    }

}

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

    #schdule ul {
        margin-bottom: 120px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    #schdule ul li {
        margin-bottom: 0px;
        margin: 0 30px 30px;
    }

}


#stamprally h2 {
    margin-bottom: 30px;
    width: 180px;
}

#stamprally .section-body {
    padding: 15px 5px 0;
    position: relative;
}

#stamprally .section-body h3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 95px;
    height: 79px;
}

#stamprally .section-body .text-column {
    background-color: rgba(0, 131, 200, 0.2);
    border-radius: 25px;
    width: 100%;
    padding: 80px 15px 15px 15px;
    box-sizing: border-box;
}

#stamprally .section-body .text-column ol {
    margin-left: 2.5em;
}

#stamprally .section-body .text-column ol li {
    list-style: decimal;
    font-size: 1.6rem;
    margin-bottom: 1em;
}

#stamprally .section-body .text-column ol li:last-of-type {
    margin-bottom: 0em;
}

/*
.section-imgslider .container {
    margin: 0px calc(50% - 50vw);
}
*/

.exhibitor {
    background-color: #FFF;
    border-radius: 20px;
    padding: 7px;
    margin: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.exhibitor h5 {
    text-align: center;
    font-size: 1.6rem;
}

.section-imgslider {
    text-align: center;
}

.section-imgslider h4 {
    color: #EA6D93;
    font-size: 2.4rem;
    font-weight: 600;
    margin: 2em auto 1em;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 90px;
}

.section-imgslider h4:before,
.section-imgslider h4:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 60px;
    height: 3px;
    background-color: #EA6D93;
}

.section-imgslider h4:before {
    left: 0;
}

.section-imgslider h4:after {
    right: 0;
}

@media screen and (min-width:480px) {
    #stamprally h2 {
        width: 281px;
    }

    #stamprally .section-body {
        padding: 15px 25px 0;
        position: relative;
    }

    .exhibitor {
        background-color: #FFF;
        border-radius: 20px;
        padding: 15px;
        margin: 20px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    }

    .exhibitor h5 {
        text-align: center;
        font-size: 2.1rem;
    }
}

@media screen and (min-width:768px) {
    #stamprally .section-body .text-column {
        padding: 15px 15px 15px 90px;
    }

    #stamprally .section-body .text-column ol li {
        font-size: 1.8rem;
    }

}


main section#hi2kata2race,
main section#ohirune-art {
    width: auto;
}

.event .section-header,
.event .section-body {
    width: 100%;
    max-width: 1030px;
    margin: 0 auto;
}

.event .section-header {
    margin-bottom: 30px;
}

.event .section-header .text-column {}

.event .section-header .image-column {}

#hi2kata2race.event .section-header .text-column {}

#ohirune-art.event .section-header .image-column {}

#hi2kata2race.event.event .section-header .text-column h2 {
    width: 345px;
    /*0.64*/
    max-width: 538px;
    margin-bottom: 30px;
}

#ohirune-art.event.event .section-header .text-column h2 {
    width: 224px;
    max-width: 350px;
    margin-bottom: 30px;
}

#pilates.event.event .section-header .text-column h2 {
    width: 142px;
    max-width: 222px;
    margin-bottom: 30px;
}

.event .section-header .text-column .summary {
    padding: 20px 20px 20px 20px;
    border-radius: 10px 10px 0px 0px;
}

#hi2kata2race .section-header .text-column .summary {
    background-color: rgba(234, 109, 147, 0.3);
}

#ohirune-art .section-header .text-column .summary {
    background-color: rgba(234, 109, 147, 0.3);
    padding: 20px 20px 20px 20px;
}

#pilates .section-header .text-column .summary {
    background-color: rgba(234, 109, 147, 0.3);
}

.section-header .text-column h3 {
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 1em;
}

.section-header .text-column .summary p {
    font-size: 1.8rem;
    line-height: 1.785;
}

.event .section-header .image-column img {
    border-radius: 0 0 10px 10px;
}

.event .section-body .text-column {
    box-sizing: border-box;
    padding-left: 0;
    margin-bottom: 50px;
}

.event .section-body .text-column h3 {
    color: #ea6d93;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}

.event .section-body .text-column ul {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 0.25em;
    margin-left: 1em;
}

.event .section-body .text-column ul li {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.5em;
    list-style-type: disc;
}

.event .section-body .text-column p {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1em;
}

.event .section-body .link-column {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ln-link a {
    width: 240px;
}

#stamprally .ln-link a {
    margin: 0 auto;
}

.event .ln-link {
    margin-bottom: 0;
}

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

    .event .section-header,
    .event .section-body {
        display: flex;
        justify-content: center;
    }

    .event .section-header .text-column {
        width: 49%;
        max-width: 500px;
        z-index: 10;
    }

    .event .section-header .image-column {
        width: 51%;
        max-width: 520px;
        padding-top: 50px;
    }

    #hi2kata2race.event.event .section-header .text-column h2 {
        width: 452px;
        /*0.84*/
        max-width: 538px;
    }

    #ohirune-art.event.event .section-header .text-column h2 {
        width: 294px;
        max-width: 350px;
    }

    #pilates.event.event .section-header .text-column h2 {
        width: 186px;
        /*0.84*/
        max-width: 222px;
    }

    .event .section-header .text-column .summary {
        padding: 30px 55px 30px 30px;
        border-radius: 10px;
    }

    #hi2kata2race .section-header .text-column .summary {
        padding: 30px 55px 30px 30px;
    }

    #ohirune-art .section-header .text-column .summary {
        padding: 30px 30px 30px 55px;
    }

    #pilates .section-header .text-column .summary {
        padding: 30px 55px 30px 30px;
    }

    .section-header .text-column .summary p {
        font-size: 1.8rem;
        line-height: 1.785;
    }

    .event .section-header .image-column img {
        border-radius: 15px;
    }

    .event .section-body .text-column {
        width: 50%;
        box-sizing: border-box;
        padding-left: 50px;
        margin-bottom: 0;
    }

    .event .section-body .text-column h3 {
        color: #ea6d93;
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 0.5em;
    }

    .event .section-body .text-column ul {
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 0.25em;
        margin-left: 1em;
    }

    .event .section-body .text-column ul li {
        font-size: 1.6rem;
        font-weight: 400;
        margin-bottom: 0.5em;
        list-style-type: disc;
    }

    .event .section-body .text-column p {
        font-size: 1.6rem;
        font-weight: 400;
        margin-bottom: 1em;
    }

    .event .section-body .link-column {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

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

    .event {
        margin-bottom: 120px;
        padding: 0;
    }

    .event .section-header,
    .event .section-body {
        display: flex;
        justify-content: center;
        width: 100%;
        max-width: 1030px;
        margin: 0 auto;
    }

    #ohirune-art.event .section-header {
        flex-direction: row-reverse;
    }

    .event .section-body {
        flex-direction: row-reverse;
    }

    #ohirune-art.event .section-body {
        flex-direction: row;
    }

    .event .section-header {
        margin-bottom: 30px;
    }

    main section:last-child .section-header {
        margin-bottom: 0px;
    }

    .event .section-header .text-column {
        width: 49%;
        max-width: 500px;
        margin-right: -2.7%;
        z-index: 10;
    }

    .event .section-header .image-column {
        width: 51%;
        max-width: 520px;
        padding-top: 50px;
    }

    #ohirune-art.event .section-header .text-column {
        margin-left: -2.7%;
    }

    #ohirune-art.event .section-header .image-column {
        padding-top: 0;
    }

    #hi2kata2race.event .section-header .text-column h2 {
        width: 538px;
        margin-bottom: 60px;
    }

    #hi2kata2race.event .section-header .image-column {
        padding-top: 100px;
    }

    #ohirune-art.event .section-header .text-column h2 {
        width: 350px;
        margin-bottom: 60px;
        margin-left: 55px;
    }

    #pilates.event .section-header .text-column h2 {
        width: 222px;
        margin-bottom: 30px;
    }

}

/*------

.page

------*/

.backtohome {
    width: 100%;
    padding: 30px 0;
    background-color: #EA6D93;
}

.backtohome p {
    margin: 0;
    padding: 0;
}

.backtohome p a {
    margin: 0 auto;
    display: block;
    border-radius: 30px;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: #FFF;
    border: 1px solid #FFF;
    background-color: #EA6D93;
    width: 240px;
}

.backtohome p a:hover {
    color: #EA6D93;
    background-color: #FFF;
}

.page main section {
    max-width: 670px;
    margin: 0 15px 60px 15px;
}

.page main section p {
    font-size: 1.6rem;
}

@media screen and (min-width:670px) {
    .page main section {
        max-width: 640px;
        margin: 0 auto 120px auto;
        text-align: center;
    }
}

#pgRace .event-title {
    width: 342px;
    /*0.64*/
    max-width: 535px;
    text-align: center;
    margin: 0 auto 60px auto;
}

#pgArt .event-title {
    width: 224px;
    max-width: 535px;
    text-align: center;
    margin: 0 auto 60px auto;
}

.page main section p.coverimg img {
    border-radius: 20px;
}

.page main section p.leadcopy {
    font-size: 2.1rem;
    font-weight: 600;
    margin-bottom: 100px;
}

.page h3 {
    color: #EA6D93;
    font-size: 2.4rem;
    font-weight: 600;
    margin-top: 2em;
    margin-bottom: 1em;
    text-align: center;
}

#pgRace .capacity-list {
    width: 350px;
    /*0.74*/
    max-width: 472px;
    margin: 0 auto;
}

#pgArt .capacity-list {
    width: 238px;
    max-width: 322px;
    margin: 0 auto;
}

.page .event-detail h4 {
    color: #EA6D93;
    font-size: 2.4rem;
    font-weight: 600;
    margin-top: 2em;
    margin-bottom: 1em;
    text-align: center;
    position: relative;
    display: inline-block;
    padding: 0 90px;
}

.page .event-detail h4:before,
.page .event-detail h4:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 60px;
    height: 3px;
    background-color: #EA6D93;
}

.page .event-detail h4:before {
    left: 0;
}

.page .event-detail h4:after {
    right: 0;
}

.page .event-detail p {
    font-size: 1.8rem;
}

.page .event-detail li {
    font-size: 2.1rem;
}

.page .event-detail .ln-link a {
    margin: 30px auto;
}

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

    #pgRace .event-title {
        width: 449px;
        /*0.84*/
    }

    #pgArt .event-title {
        width: 294px;
    }

}

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

    #pgRace .event-title {
        width: 535px;
    }

    #pgArt .event-title {
        width: 350px;
    }

}

/*------

footer

------*/

footer {
    background-color: #FFF;
    padding: 0 15px 50px 15px;
}

footer h3 {
    text-align: center;
}

footer h3 span {
    display: inline-block;
    text-align: left;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 40px;
    padding-left: 65px;
    background: url(images/icon-yamaguchipref.png) left center no-repeat;
    background-size: 50px auto;
}

footer .container {
    width: 100%;
    max-width: 1020px;
    margin: 0 auto 50px auto;
    padding-top: 50px;
}

footer .container div {
    margin-bottom: 30px;
}

footer .container div h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ea6d93;
    margin-bottom: 0.5em;
}

footer .container div h5 {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 0.5em;
}

footer .container div p {
    font-size: 1.4rem;
    font-weight: 300;
}

.copyright {
    font-size: 1.4rem;
    text-align: center;
}




.page footer {
    padding: 50px 15px 50px 15px;
}

ul.list-circle,
ul.list-dot {
    margin-left: 1em;
}

ul.list-circle li {
    list-style-type: circle;
}

ul.list-dot li {
    list-style-type: disc;
}

#pageTop {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    z-index: 150;
}

#pageTop a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ea6d93;
    color: #FFF;
}

#pageTop a i {
    color: #FFF;
    font-size: 2.1rem;
    margin: 0;
}

#pageTop a svg {
    height: 20px !important;
    width: 20px !important;
}

@media screen and (min-width:480px) {
    footer h3 {
        text-align: center;
    }

    footer h3 span {
        text-align: center;
        line-height: 34px;
        margin-bottom: 40px;
        padding-left: 65px;
        background: url(images/icon-yamaguchipref.png) left center no-repeat;
        background-size: 50px auto;
    }

    footer .container {
        display: flex;
        justify-content: space-between;
    }

    footer .container div {
        margin-bottom: 0;
        width: 50%;
    }
}

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



/*------------------------------------------

　　　「やまぐち結婚応縁センター」愛称募集

------------------------------------------*/

.page .separater {
    margin: 0 auto 30px auto;
}

#pagesummary .container {
    width: 100%;
    max-width: 1024px;
    padding: 25px 15px 0 15px;
    margin: 0 auto 70px auto;
    box-sizing: border-box;
}

#pagesummary h1 {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 50px auto;
}

#pagesummary .section-header .text-column .summary p {
    font-size: 1.8rem;
    font-weight: 500;
}

#pgnickname #pagesummary .section-header .text-column .summary p {
    color: #008c43;
}

#pagesummary .section-header .image-column img {
    border-radius: 15px;
}

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

    #pagesummary .section-header {
        display: flex;
        justify-content: center;
        gap: 25px;
    }

    #pagesummary .section-header .text-column {
        width: 50%;
    }

    #pagesummary .section-header .image-column {
        width: 50%;
    }

    #pagesummary .section-header .text-column .summary p {
        font-size: 1.8rem;
    }
}

@media screen and (min-width:768px) {
    .page .separater {
        display: none;
    }

    #pagesummary .section-header .text-column .summary p {
        font-size: 2.4rem;
    }
}

.points h2,
.profile h2,
.yoko h2 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: #ea6d93;
    margin-bottom: 1em;
}

.points .section-body,
.profile .section-body {
    width: 100%;
    max-width: 940px;
    padding: 0 15px;
    margin: 0 auto 100px auto;
    box-sizing: border-box;
}

.yoko .section-body {
    width: 100%;
    max-width: 832px;
    padding: 0 15px;
    margin: 0 auto 100px auto;
    box-sizing: border-box;
}

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

    .points h2,
    .profile h2,
    .yoko h2 {
        font-size: 2.4rem;
    }
}

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

    .points h2,
    .profile h2,
    .yoko h2 {
        font-size: 3.2rem;
    }
}


.points .point-list li {
    border-radius: 15px;
    background-color: #FFF;
    padding: 20px;
    box-sizing: border-box;
    font-size: 1.8rem;
    font-weight: 500;
    color: #008c43;
    text-align: center;
}

.points .point-list li br {
    display: none;
}

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

    .points .point-list {
        display: flex;
        gap: 30px;
    }

    .points .point-list li {
        width: 33.33%;
        font-size: 2.1rem;
    }

    .points .point-list li br {
        display: block;
    }
}

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


.profile-data dl {
    border-top: 1px solid #ea6d93;
    padding: 20px 0;
}

.profile-data dl:last-of-type {
    border-bottom: 1px solid #ea6d93;
}

.profile-data dt {
    padding: 0 1em;
    font-size: 1.6rem;
    font-weight: 500;
    color: #008c43;
    margin-bottom: 0.5em;
}

.profile-data dd {
    padding: 0 1em;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0;
}

.profile-data .locations {
    line-height: 2;
}

.profile-data .locations strong {
    font-size: 1.8rem;
    display: block;
}

.profile-data ul li {
    font-size: 1.4rem;
}

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

    .profile-data dl {
        display: flex;
    }

    .profile-data dt {
        width: 20%;
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .profile-data dd {
        width: 80%;
        font-size: 1.6rem;
    }

    .profile-data ul li {
        font-size: 1.6rem;
    }

    .photo-list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 5.4%;
    }

    .photo-list li {
        width: 47.3%;
        margin-bottom: 15px;
    }

    .profile-data .locations strong {
        display: inline;
    }
}

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

.section {}

.section {
    padding: 20px 0;
}

.section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ea6d93;
    margin-bottom: 0.5em;
}

.section-contents p,
.section-contents li {
    font-size: 1.6rem;
}

.section-contents .btn a {
    width: 100%;
    max-width: 240px;
}

.prizelist {}

.prizeitem {
    text-align: center;
    margin-bottom: 50px
}

.prizeitem dt {
    margin-bottom: 15px;
}

.prizeitem dt img {
    width: 100%;
    max-width: 150px;
    height: auto;
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.3);
}

.prize-name {
    margin-bottom: 0.5em;
    font-size: 1.6rem;
    font-weight: 500;
}

.prize-name strong {
    font-size: 2.4rem;
}

.prize01 .prize-name span {
    display: inline-block;
    font-size: 2.1rem;
    font-weight: 500;
    color: #FFF;
    background-color: #ea6d93;
    border-radius: 6px;
    padding: 0.25em 1em;
    margin-right: 0.5em;
}

.prize04 .prize-name span {
    display: inline-block;
    font-size: 2.1rem;
    font-weight: 500;
    color: #FFF;
    background-color: #9fa0a0;
    border-radius: 6px;
    padding: 0.25em 1em;
    margin-right: 0.5em;
}

.section-contents .footnote-sign,
.section-contents .footnote {
    font-size: 1.4rem;
    font-weight: 300;
    color: #000;
    padding: 0 0 0 0.5em;
    margin-bottom: 0;
}

.prize-name span.footnote-sign {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 300;
    color: #000;
    background-color: transparent;
    border-radius: 0px;
    padding: 0 0 0 0.5em;
}

.section11 .section-contents h4 {
    font-size: 1.6rem;
    margin-bottom: 1em;
}

.section11 .section-contents ul {
    margin: 0 0 2em 1.5em;
}

.section11 .section-contents li ul {
    margin: 0.5em 0 0 1.5em;
}

.section12 h5 {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 0.5em;
}

.section12 .footnote {
    margin: 2em 0;
    padding: 0;
}

@media screen and (min-width:480px) {
    .section {
        display: flex;
        padding: 20px 0;
    }

    .section h3 {
        width: 23%;
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .section .section-contents {
        width: 77%;
        font-size: 1.6rem;
    }

    .section-contents .btn a {
        width: 100%;
        max-width: 340px;
    }

    .prizeitem {
        display: flex;
        align-items: center;
        padding: 20px 0;
        margin-bottom: 0px;
        text-align: left;
    }

    .prizeitem dt {
        width: 32%;
        text-align: left;
        margin-bottom: 0;
    }

    .prizeitem dd {
        width: 68%;
    }

    .section-contents .prizeitem p {
        font-size: 1.5rem;
    }
}

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


/*------------------------------------------

　　　やまぐち結婚応縁フォトコンテスト

------------------------------------------*/

#pgphotocontest #pagesummary .section-header .text-column .summary p {
    color: #ea6d93;
}

.prize02 .prize-name span {
    display: inline-block;
    font-size: 2.1rem;
    font-weight: 500;
    color: #FFF;
    background-color: #4a74a2;
    border-radius: 6px;
    padding: 0.25em 1em;
    margin-right: 0.5em;
}

.prize03 .prize-name span {
    display: inline-block;
    font-size: 2.1rem;
    font-weight: 500;
    color: #FFF;
    background-color: #509d69;
    border-radius: 6px;
    padding: 0.25em 1em;
    margin-right: 0.5em;
}

.section-contents h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5em;
}

#pgphotocontest .section02 .list-circle,
#pgphotocontest .section02 .list-dot {
    margin-left: 3em;
}

#pgphotocontest .section02 .list-circle li {
    margin-bottom: 1em;
}

.entry-flow {
    margin-left: 1em;
}

.entry-flow dl dt {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 500;
    color: #FFF;
    background-color: #ea6d93;
    border-radius: 6px;
    padding: 0.25em 1em;
    margin-right: 0.5em;
    box-sizing: border-box;
}

.entry-flow dl dd {
    padding-top: 0.25em;
    box-sizing: border-box;
}

.entry-flow dd .instagram-account {
    background: linear-gradient(transparent 70%, #FAEE00 0%);
    display: inline;
    padding: 0px 3px 0px 3px;
    color: #036EB8;
    font-family: "roboto", sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    border-bottom: none;
}

.entry-flow dd .instagram-account span {}

.entry-flow .list-dot li .hashtaglist {
    margin-left: 0em;
    margin-top: 0.5em;
}

.entry-flow .list-dot li .hashtaglist li {
    list-style-type: none;
}

.hashtaglist strong {
    font-weight: 500;
    color: #ea6d93;
}

.hashtaglist .instagram-tag {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 500;
    color: #FFF;
    background-color: #ea6d93;
    border-radius: 6px;
    padding: 0.25em 1em;
    margin-left: 0.5em;
    border-bottom: none;
}

.list-footnote li {
    margin-left: 1em;
    text-indent: -1em;
    font-size: 1.4rem;
}

.entry-flow .ln-link {
    margin-left: 1em;
    margin-bottom: 2em;
}

.section07 .section-contents h4 {
    margin-bottom: 0.25em;
}

@media screen and (min-width:480px) {
    .entry-flow dl {
        display: flex;
        align-items: flex-start;
    }

    .entry-flow dl dt {
        width: 15%;
    }

    .entry-flow dl dd {
        width: 85%;
        flex: 1;
    }
}

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