@charset "utf-8";

body {
    background-size: 200% 200%;
    /*サイズを大きくひきのばす*/
    animation: bggradient 40s ease infinite;
    background-image: linear-gradient(90deg, rgb(153, 204, 51) 0%, rgb(102, 204, 255) 100%);
    width: 100%;
    height: 100vh;
}

@keyframes bggradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.top_link {
    /* width: 80%; */
    margin: 24px auto 0 auto;
}

.top_link,
.top_link a {
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    max-width: 1100px;
    width: 94%;
}

.inner_brock {
    background-color: #FFF;
    width: 94%;
    margin: 20px auto 0 auto;
    border-radius: 15px;
    max-width: 1100px;
}

header {
    height: 98px;
    background-color: rgba(255, 255, 255, 0.85);
    /*position: fixed;
     width: 80%; */
    border-radius: 15px;
    z-index: 999;
    width: 100%;
    max-width: 1100px;
    position: relative;
}

header.fixed {
    position: fixed;
    top: 0px;
    width: 94%;
    max-width: 1100px;
}

h1 {
    width: 300px;
    padding-left: 20px;
}

/*-------HEADER MENU-------*/

.header_menu {
    margin: 0 70px 0 auto;
    border-radius: 35px;
    min-width: 335px;
    height: 44px;
    opacity: 1.00;
    box-shadow: 0 0 6px rgba(0, 0, 0, .4);
    position: relative;
    font-size: 20px;
    font-weight: 700;
    gap: 25px;
    padding: 0 30px;
}

.arrow {
    position: absolute;
    width: 65px;
    right: -77px;
}

.header_menu a {
    display: inline-block;
    text-decoration: none;
    transition: .3s;
}

.header_menu li {
    height: 100%;
    display: flex;
    align-items: center;
}

.header_menu a:hover {
    transform: rotate(5deg);
}

.header_menu li {
    position: relative;
}

.header_menu>li>ul {
    display: none;
    position: absolute;
    width: 250px;
    top: 100%;
    left: 0;
    background-color: #ffffffc9;
    padding: 10px 10px 20px;
}

.header_menu>li>ul li a {
    display: block;
    font-size: 16px;
    padding: 15px 0 0;
    letter-spacing: 0.5;
    transition: 0s;
}

.header_menu>li>ul li a:hover {
    color: rgb(255, 60, 0);
    transform: rotate(0deg);
}

.header_menu>li:hover,
.header_menu>li:hover>ul {
    cursor: pointer;
}

.header_menu>li:hover>ul {
    display: block;
}

#P_01,
#P_02,
#NEWS {
    padding-top: 120px;
    margin-top: -120px;
}

.section_top {
    position: relative;
    background-image: url(https://hiroshima-greenocean.jp/scrum5/assets/img/back-1140-1.webp);
    margin-top: -85px;
}

.top_font {
    width: 41px;
    padding: 100px 20px;
    display: inline-block;
}

.position01 {
    position: absolute;
    display: inline-block;
    top: 100px;
}

.icon01 {
    width: 100px;
    display: inline-block;
    position: absolute;
    left: 60px;
    top: 18px;
}

.photo01 {
    position: absolute;
    left: 180px;
    width: 180px;
    top: 0%;
}

.position02 {
    position: absolute;
    top: 140px;
    right: 100px;
}

.icon02 {
    width: 72px;
}

.photo02 {
    width: 214px;
}

.position03 {
    flex-flow: column;
    display: inline-block;
    position: absolute;
    bottom: 60px;
    left: 90px;
}

.photo03 {
    width: 170px;
}

.icon03 {
    width: 126px;
    margin-left: 60px;
}

.position04 {
    flex-flow: column;
    display: inline-block;
    position: absolute;
    bottom: 10px;
    right: 40px;
}

.icon04 {
    width: 120px;
    margin: 0px 0 -40px 140px;
}

.photo04 {
    width: 290px;
}


/* アニメーション */
@keyframes fuwafuwa {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.anime-fuwafuwa {
    animation: 3s fuwafuwa infinite;
}

.scroll_wrapper {
    position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    padding-left: 50px;
}

.scroll {
    position: relative;
    /*リンクの形状*/
    color: #333;
    padding: 10px 0;
    display: inline-block;
    text-decoration: none;
    outline: none;
    width: 125px;
    transform: rotate(90deg);
    font-size: 18px;
}

.scroll span {
    display: block;
    padding: 0 0 5px 25px;
}

.scroll::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #333;
    left: 18px;
}

.scroll::after {
    content: "";
    position: absolute;
    bottom: -9px;
    width: 18px;
    height: 18px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
}

@media screen and (max-width: 920px) {

    .scroll_wrapper {
        bottom: 80px;
    }

    .scroll {
        width: 100px;
        font-size: 16px;
    }

    .scroll span {
        padding: 0 0 5px 20px;
    }
}

@media screen and (max-width: 510px) {

    .scroll_wrapper {
        bottom: 80px;
        padding-left: 25px;
    }

    .scroll {
        width: 80px;
        font-size: 15px;
    }

    .scroll::before {
        left: 19px;
    }

    .scroll::after {
        bottom: -9px;
    }
}

/*アニメーション*/
.scroll::before {
    animation: arrowlong01 2s ease infinite;
}

.scroll::after {
    animation: arrowlong02 2s ease infinite;
}

@keyframes arrowlong01 {
    0% {
        width: 0;
        opacity: 0
    }

    20% {
        width: 0;
        opacity: 1
    }

    80% {
        width: 105%;
        opacity: 1
    }

    100% {
        width: 105%;
        opacity: 0
    }
}

@keyframes arrowlong02 {
    0% {
        left: 0;
        opacity: 0
    }

    20% {
        left: 0;
        opacity: 1
    }

    80% {
        left: 103%;
        opacity: 1
    }

    100% {
        left: 103%;
        opacity: 0
    }
}


.center {
    display: inline-block;
    position: relative;
    left: 80px;
    top: -100px;
}

.main_font {
    font-size: 40px;
    text-align: center;
    font-weight: 800;
    display: block;
}

.main_logo {
    width: 782px;
    margin: 0 auto;
}

.top_message {
    max-width: 500px;
    width: 483px;
    margin: 0 auto;
}

.gradient {
    height: 65px;
    background-image: linear-gradient(0deg, rgba(192, 192, 192, 0) 0%, rgb(192, 192, 192) 100%);
    opacity: 0.40;
}

.section_news {
    position: relative;
}

.news_title_img {
    position: absolute;
    top: 105px;
    width: 140px;
    left: 55px;
}

.title_img {
    position: absolute;
    top: -15px;
    width: 140px;
    left: 55px;
}

.title_news,
.title_concept,
.title_contact,
.title_sche {
    font-size: 40px;
    text-align: center;
    font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", Lato, Arial, Helvetica, sans-serif;
    font-weight: 900;
    margin-bottom: 16px;
}

.title_concept {
    padding-top: 50px;
}

.news_topics {
    flex-wrap: wrap;
    margin: 40px auto 100px;
    align-items: inherit;
    width: 90%;
    justify-content: space-between;
}

.news_topics:after {
    display: block;
    content: "";
    width: 32%;
}

.news_topics li {
    width: 32%;
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, .4);
    margin-bottom: 30px;
}

.news_topics dl {
    padding: 0 15px 15px;
}

.news_topics dl dt {
    font-size: 16px;
    margin: 10px 0;
    padding: 0;
}

.news_topics dd {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.flex_sp a {
    color: inherit;
    text-decoration: none;
    line-height: 1.5;
}

.flex_sp a {
    background:
        linear-gradient(to right,
            rgb(0, 0, 0),
            rgb(0, 0, 0)),
        linear-gradient(to right,
            rgb(153, 204, 51) 0%, rgb(102, 204, 255) 100%);

    background-size: 100% 2px, 0 2px;
    background-position: 100% 100%, 0 100%;
    background-repeat: no-repeat;
    transition: background-size 400ms;
}

.flex_sp a:hover {
    background-size: 0 2px, 100% 2px;
    color: #000;
}


.none {
    display: none;
}

.news_img img {
    border-radius: 6px 6px 0px 0px;
    width: 100%;
    height: auto;
}

.news_topics p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.section_concept {
    position: relative;
}

.section_concept::before {
    position: absolute;
    content: url(https://hiroshima-greenocean.jp/scrum5/assets/img/earthidea-312-1.webp);
    vertical-align: middle;
    transform: scale(0.6);
    right: -63px;
    top: -31px;
}

.concept_inner {
    padding: 0 60px;
}

.ttl_message {
    font-size: 24px;
    font-size: clamp(1.25rem, 1.1649rem + 0.4255vw, 1.5rem);
    text-align: center;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.14em;
    max-width: 620px;
    margin: 0 auto;
    width: 80%;
}


.title_message {
    font-size: 24px;
    text-align: center;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.14em
}

.content_f {
    justify-content: space-around;
    width: 95%;
    margin: 0 auto;
    box-sizing: border-box;
    gap: 45px;
}

.content {
    font-size: 16px;
    width: 55%;
    position: relative;
    margin-top: 60px;
    letter-spacing: 0.06em;
    text-align: justify;
}

.content::before {
    position: absolute;
    content: url(https://hiroshima-greenocean.jp/scrum5/assets/img/pict05-192.webp);
    vertical-align: middle;
    transform: scale(0.6);
    top: -155px;
    left: -41px;
}

.content_2 {
    width: 40%;
    margin-top: 145px;
    text-align: center;
    position: relative;
}

.content_2 p {
    margin-top: 45px;
    font-size: 14px;
    letter-spacing: 0.2px;
    color: #000;
    z-index: 99 !important;
}

.content_2 .BK_logo {
    position: absolute;
    content: url(https://hiroshima-greenocean.jp/scrum5/assets/img/scrum_back01-1024.webp);
    width: 450px;
    display: block;
    top: -225px;
    right: -40px;
}

.content_2::after {
    position: absolute;
    content: url(https://hiroshima-greenocean.jp/scrum5/assets/img/photo05-360.webp);
    transform: scale(0.45);
    top: 120px;
    right: 150px;
    z-index: 0 !important;
}

.content_2 img {
    width: 100%;
}

@media screen and (max-width: 1140px) {
    .content_f {
        width: 100%;
        gap: 25px;
    }

    .content_2 {
        margin-top: 100px;
        width: 45%;
    }

    .content_2 p {
        font-size: 13px;
    }

    .content_2::after {
        right: 120px;
        top: 160px;
    }
}

@media screen and (max-width: 920px) {
    .content_f {
        width: 90%;
        gap: 0;
        flex-direction: column;
    }

    .content {
        font-size: 16px;
        width: 100%;
        position: relative;
        margin-top: 60px;
        letter-spacing: 0.06em;
    }

    .content::before {
        transform: scale(0.5);
        top: -155px;
        left: -50px;
        display: none;
    }

    .content_2 {
        width: 100%;
        margin-top: 25px;
    }

    .content_2 img {
        width: 100%;
    }

    .content_2 .BK_logo {
        width: 90%;
        top: -250px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
    }

    .content_2::after {
        transform: scale(0.4);
        top: 120px;
        left: -300px;
        z-index: 0 !important;
    }

    .content_2 p {
        font-size: 16px;
        margin-top: 25px;
    }
}

@media screen and (max-width: 750px) {

    .ttl_message br {
        display: none;
    }

    .content {
        margin-top: 30px;
    }

    .content::before {
        transform: scale(0.4);
        top: -125px;
        left: -85px;
    }

    .content_2 .BK_logo {
        top: -180px;
        width: 120%;
    }

    .content_2 {
        margin-bottom: 50px;
    }

    .content_2::after {
        content: none;
    }

    .content_2 p {
        font-size: 15px;
    }
}

@media screen and (max-width: 510px) {

    .content::before,
    .content_2::after {
        content: none;
    }
}

@media screen and (max-width: 400px) {
    .content_2 p {
        font-size: 14px;
    }
}

.merit00 {
    width: 250px;
    margin: 120px auto 0;

}

.merit_all {
    margin-top: 50px;
    gap: 40px;
    justify-content: center;
}

.merit02 {
    margin-left: 6%;
}

.merit_all li {
    height: 200px;
}

.merit_all img {
    width: 100%;
    margin: 0 auto;
}

.content_3 {
    text-align: center;
    padding-top: 20px;
}

.content_3 span {
    font-weight: 700;
}

.recommend {
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, .4);
    max-width: 806px;
    margin: 100px auto 75px auto;
    padding: 40px;
}

.pict_message {
    width: 380px;
    position: relative;
    margin: 0 auto;
    margin-bottom: 35px;
}

.pict_message::before {
    position: absolute;
    content: url(https://hiroshima-greenocean.jp/scrum5/assets/img/pict06-128.webp);
    transform: scale(0.6);
    left: -140px;
    top: -50px;
}

.recommend p {
    font-size: 18px;
    margin: 15px auto;
    font-weight: 600;
    line-height: 1.5;
    max-width: 720px;
}

.section_program {
    position: relative;
}

.program_inner {
    width: 90%;
    margin: 0 auto;
}

.pro_content {
    padding: 0;
    margin: 40px auto 0;
    width: 90%;
}

.pro_content img {
    width: 350px;
    display: block;
    margin: 0 auto 30px;
}

.pro_content p {
    max-width: 680px;
    text-align: justify;
    margin: 0 auto;
}

.pro_content p span {
    font-weight: bold;
}

.pro_title {
    width: 240px;
    margin: 10px 0 20px;
}

.program_pic {
    width: 1300px;
    margin-left: 20px;
    margin-top: 40px;
}

.program_01,
.program_02 {
    text-align: center;
    padding-top: 75px;
}

.box_grd {
    display: inline-block;
    background: linear-gradient(90deg, rgb(153, 204, 51) 0%, rgb(102, 204, 255) 100%);
    background: -webkit-linear-gradient(140deg, rgb(153, 204, 51) 0%, rgb(102, 204, 255) 100%);
    font-size: 40px;
    text-align: center;
    padding: 20px;
    max-width: 750px;
    width: 80%;
    box-sizing: border-box;
}

.box_grd p {
    font-size: 20px;
    color: #FFF;
    line-height: 1.4;
    margin-bottom: 10px;
}

.box_grd p br {
    display: none;
}

.box_grd h4 {
    font-weight: 800;
    color: #FFF;
    margin-bottom: 10px;
}

.prg01_text {
    margin: 60px auto 70px;
    max-width: 680px;
    text-align: justify;
}

.p_02 {
    margin: 60px auto;
    max-width: 680px;
    text-align: justify;
    width: 90%;
}

.c_all {
    flex-wrap: wrap;
    margin: 60px auto;
    align-items: baseline;
    max-width: 960px;
}

.c_all li {
    width: 48%;
    margin: 0 auto;
}

.c_title {
    width: 100%;
    justify-content: flex-start;
    gap: 20px;
}

.c_title span {
    font-size: 60px;
    color: #a2a7ac;
    font-weight: 900;
}

.c_img {
    width: 40%;
}

.content_top {
    font-size: 23px;
    font-weight: 800;
    text-align: left;
    line-height: 1.2;
}

.content_top small {
    font-size: 18px;
    color: #3A3A3C;
}

.c_text {
    width: 58%;
    text-align: justify;
    margin: 20px 0;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.mrt_co {
    margin-bottom: 80px;
    align-items: stretch;
    justify-content: space-between;
}

.mrt_co h6 {
    font-weight: 800;
    padding: 15px 10px 0px;
    font-size: 20px;
    line-height: 1.5;
}

.mrt_co li {
    background-color: #EAF9F7;
    padding: 0 0 10px 0;
    width: 32%;
}

.merit_img {
    margin: 0 auto;
    object-fit: cover;
}

.mrt_co p {
    font-size: 15px;
    text-align: justify;
    padding: 10px 15px;
}

.contents_text {
    margin: 50px auto 40px;
    max-width: 680px;
    text-align: justify;
}

.event_all {
    gap: 20px;
    margin-bottom: 70px;
    align-items: inherit;
}

.event_title {
    font-weight: 800;
    padding: 20px 10px 0;
    font-size: 20px;
    line-height: 1.5;
}

.event {
    width: 45%;
    background-color: #EAF9F7;
}

.event p {
    padding: 10px 20px 20px;
    font-size: 15px;
    text-align: justify;

}

/*--------タイムライン-------*/

.sch_top {
    position: relative;
    max-width: 800px;
    width: 80%;
    height: 100%;
    margin: 0 auto 90px;
}

.timeline li {
    overflow: hidden;
    margin: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.no_cicle {
    float: left;
    border-left: 1px #CECECE solid;
    padding: 10px 0 10px 40px;
    position: relative;
}

.black_circle,
.white_circle,
.white_circle_L {
    float: left;
    border-left: 1px #CECECE solid;
    padding: 20px 0 20px 40px;
    position: relative;
}

.black_circle::after,
.white_circle::after,
.white_circle_L::after {
    content: "";
    width: 15px;
    height: 15px;
    background-color: #000;
    position: absolute;
    left: -8px;
    top: 45%;
    margin-top: -3px;
    border-radius: 100%;
}

.white_circle::after {
    background-color: #FFF;
}

.white_circle_L::after {
    background-color: #FFF;
    top: 50%;
}

li.span_none {
    height: 30px;
}


.sch_top {
    position: relative;
    width: 900px;
    height: 100%;
    margin: 70px auto 90px;
}

.blue_01,
.blue_04 {
    background: #0192c7;
}

.blue_02 {
    background: #0bc9cf;
}

.blue_03 {
    background: #cdf7f2;
}

.sch_top li {
    /* height: 80px; */
    text-align: left;
}

.sch_top dl {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin: 0;
    height: 100%;
    border-radius: 10px;
}

.sch_top dt {
    margin: 0;
    padding: 25px 28px 25px 0;
    width: 180px;
    text-align: right;
    font-size: 18px;
    white-space: nowrap;
    letter-spacing: 0.06em;
    font-weight: 700;
    line-height: 1.4;
}

.sch_top dd {
    margin: 0;
    padding: 25px 0 25px 38px;
    width: 570px;
    font-size: 18px;
    font-weight: 700;
    color: #00283C;
    line-height: 1.2;
    box-sizing: border-box;
}

.blue_01 dt,
.blue_02 dt,
.blue_04 dt,
.blue_01 dd,
.blue_02 dd,
.blue_04 dd {
    color: white;
}

.blue_01 b {
    font-size: 28px;
    display: block;
    color: white;
}

.blue_02 b,
.blue_04 b {
    font-size: 22px;
    display: block;
    color: white;
}

    {
    font-size: 22px;
    display: block;
    color: white;
}

.sch_top dd span {
    display: block;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.6;
    margin-top: 15px;
}

.blue_01 dd b,
.blue_01 dd span {
    color: white;
}

.sch_top li:last-child dl dd.no_cicle {
    padding-top: 100px;
}

@media screen and (max-width: 920px) {

    .sch_top {
        width: 100%;
    }

    .sch_top dt {
        font-size: 16px;
        width: 30%;
    }

    .sch_top dd {
        width: 70%;
        padding-right: 10px;
    }
}

@media screen and (max-width: 750px) {

    .no_cicle::after,
    .black_circle::after,
    .white_circle::after,
    .white_circle_L::after,
    .span_none {
        display: none;
    }

    .no_cicle,
    .black_circle,
    .white_circle,
    .white_circle_L {
        border: none;
    }

    .no_cicle span,
    .white_circle_L span {
        display: none;
    }

    .sch_top {
        width: 100%;
        box-sizing: border-box;
    }

    .sch_top li {
        margin: 15px 0;
        padding-bottom: 15px;
    }

    .sch_top dl {
        width: 100%;
        margin: 0 auto;
        display: inline-block;
        padding: 10px 0;
        box-sizing: border-box;
    }

    dl.blue_01,
    dl.blue_02,
    dl.blue_03,
    dl.blue_04 {
        padding: 20px 0;
    }

    .sch_top dt {
        width: 100%;
        white-space: normal;
        text-align: left;
        line-height: 1.8;
        padding: 0 20px 10px 20px;
        box-sizing: border-box;
    }

    .sch_top dd {
        padding: 0 15px 0 20px;
        width: 100%;
        box-sizing: border-box;
        padding-left: 20px !important;
        letter-spacing: 0.5px;
    }

    .sch_top dd span {
        padding: 0;
        width: 100%;
    }

    .sch_top li:last-child dl dd.no_cicle {
        padding-top: 50px;
    }
}


.sp_only {
    display: none;
}

.section_support {
    position: relative;
}

.sr_inner {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 20px;
    align-items: baseline;
}

.sr_inner::after {
    content: "";
    display: block;
    width: 25%;
}

.sr_inner p {
    line-height: 1.4;
}

.people {
    margin-bottom: 20px;
}

.people img {
    width: 150px;
    border-radius: 50%;
}

.class {
    font-weight: 700;
    font-size: 16px;
    display: block;
    margin-bottom: 3px;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.name {
    font-weight: 700;
    font-size: 20px;
    display: block;
    margin-bottom: 7px;
    line-height: 1.2;
}

.t_left {
    text-align: left;
    width: 88%;
}

.other {
    font-size: 13px;
    text-align: justify;
    margin-bottom: 6px;
    display: block;
    line-height: 1.5;
    letter-spacing: 0.1px;
}

.s_t {
    letter-spacing: 0.05rem;
}

.sr_inner li {
    width: 25%;
    margin-bottom: 30px;
    flex-flow: column;
    text-align: center;
}

.border-gradation {
    border-top: 3px solid;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, rgb(153, 204, 51) 0%, rgb(102, 204, 255) 100%);
    border-image-slice: 1;
    width: 200px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin: 50px auto 40px;
    padding: 7px 0;
}

.banner {
    align-items: baseline;
}

.banner li {
    text-align: center;
    padding: 0px 20px 60px;
    width: 20%;
}

.banner p {
    margin-top: 5px;
    line-height: 1.5;
}


.banner li img {
    width: 165px;
    padding-bottom: 10px;
}

.section_contact {
    margin-top: 40px;
}

.img_line {
    width: 517px;
    margin: 0 auto 18px;
}

.section_contact h3,
.section_contact p,
footer,
small {
    color: #FFF;
    text-align: center;
}

.section_contact p {
    font-size: 19px;
    letter-spacing: 0;
}

.section_contact a {
    color: white;
}

footer {
    margin: 80px 0 30px 0;
    padding-bottom: 15px;
}

.hamburger-menu {
    display: none;
}

.section_news,
.section_concept,
.section_program {
    margin-bottom: 120px;
}

.entry {
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 0 6px rgba(0, 0, 0, .4);
    max-width: 780px;
    margin: 60px auto 75px;
    padding: 40px 40px 60px;
    background-image: url(https://hiroshima-greenocean.jp/scrum5/assets/img/back-1140-1.webp);
}

.entry_title {
    position: relative;
    font-size: clamp(1.25rem, 0.9947rem + 1.2766vw, 2rem);
    font-weight: 700;
    padding-bottom: 20px;
    color: #27bd6a;
    line-height: 1.2;
    max-width: 720px;
    margin: 0 auto;
}

.entry_title span small {
    display: inline;
    font-size: clamp(1.25rem, 1.0798rem + 0.8511vw, 1.75rem);
}

.entry img {
    padding: 25px 0;
    max-width: 680px;
}

.entry_title::after {
    position: absolute;
    content: "";
    color: #000;
    background: linear-gradient(90deg, rgb(153, 204, 51) 0%, rgb(102, 204, 255) 100%);
    width: 40%;
    height: 3px;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.entry p {
    margin: 30px 0 30px;
}

table {
    border-collapse: separate;
    border-spacing: 5px;
    width: 100%;
}

table th {
    border-radius: 5px;
    padding: 10px 5px;
    font-size: 14px;
    line-height: 1.4;
}

table td {
    background-color: #EAF9F7;
    vertical-align: middle;
    line-height: 1.3;
    letter-spacing: 1px;
}

table td span {
    font-size: 13px;
    display: inline-block;
    line-height: 1.2;
}

table td:first-child {
    width: 140px;
    border-radius: 5px;
    padding: 10px 5px;
    font-size: 14px;
}

table td:nth-child(2) {
    width: calc(60% - 140px);
    text-align: left;
    padding: 10px 15px 10px 10px;
    font-size: 15px;
}

table td:nth-child(3) {
    width: 40%;
    text-align: left;
    padding: 10px 15px 10px 10px;
    font-size: 15px;
}

table th {
    background-color: #39CAB9;
    color: white;
}

table td small {
    font-size: 15px;
    color: #3A3A3C;
}

table td br {
    display: block;
    content: "";
    margin: 5px 0 8px;
}

table td small br {
    margin: 0;
}

/* 1140以下 */

@media screen and (max-width: 1140px) {

    .inner_brock {
        width: 912px;
    }

    .header {
        width: 912px;
    }

    header.fixed {
        position: fixed;
        width: 912px;
    }

    .header_menu {
        font-size: 16px;
    }

    .top_link,
    .top_link a {
        width: 912px;
    }

    h1 {
        width: 274px;
    }

    .top_font {
        width: 31px;
    }

    .icon01 {
        left: 30px;
        width: 80px;
    }

    .photo01 {
        left: 150px;
        width: 144px;
    }

    .position02 {
        right: 40px;
    }

    .icon02 {
        width: 62px;
    }

    .photo02 {
        width: 171px;
    }

    .photo03 {
        width: 136px;
    }

    .icon03 {
        width: 101px;
    }

    .photo04 {
        width: 232px;
    }

    .icon04 {
        width: 96px;
    }

    .main_font {
        font-size: 32px;
    }

    .main_logo {
        width: 624px;
    }

    .top_message {
        width: 387px;
    }

    .center {
        left: 60px;
        top: -100px;
    }

    .title_img {
        width: 112px;
        top: -12px;
    }

    .news_title_img {
        top: 107px;
        width: 112px;
    }

    .title_news,
    .title_concept,
    .title_contact {
        font-size: 32px;
    }

    .news_topics dt {
        font-size: 14px;
    }

    .news_topics dd,
    .name {
        font-size: 16px;
    }

    .mrt_co h6 {
        font-size: 18px;
    }

    .news_topics p,
    .class {
        font-size: 14px;
    }

    .title_message {
        font-size: 19px;
    }

    .img_line {
        width: 414px;
    }

    /* プログラム */
    .c_all {
        justify-content: space-between;
    }

    .c_title {
        justify-content: flex-start;
    }

    .c_all li {
        width: 45%;
    }

    .content_top {
        font-size: 23px;
        font-weight: 800;
    }

    .c_pict {
        justify-content: space-between;
        align-items: flex-start;
    }

    .c_text {
        font-size: 14px;
    }

    /* 共通 */

    .sp_only {
        display: block;
    }

    .pro_inner p {
        font-size: 16px;
    }

    .people img {
        width: 120px;
    }

    .sr_inner li {
        margin-bottom: 20px;
    }

    .sr_inner p {
        line-height: 1.2;
    }

    .section_contact p,
    small {
        font-size: 15px;
    }

    .pc_only_L {
        display: none;
    }
}

@media screen and (max-width: 920px) {

    .top_link,
    .top_link a,
    .header {
        width: 730px;
    }

    .inner_brock {
        width: 730px;
    }

    header.fixed {
        position: fixed;
        width: 730px;
    }

    h1 {
        width: 220px;
    }

    .header_menu {
        font-size: 15px;
        min-width: 300px;
        margin: 0px 60px 0 auto;
        gap: 15px;
        padding: 0 15px;
    }

    .arrow {
        position: absolute;
        width: 60px;
        right: -66px;
    }

    .center {
        left: 40px;
        top: -50px;
    }

    .icon01 {
        width: 64px;
    }

    .photo01 {
        width: 115px;
    }

    .icon02 {
        width: 50px;
    }

    .photo02 {
        width: 137px;
    }

    .icon03 {
        width: 81px;
    }

    .photo03 {
        width: 109px;
    }

    .icon04 {
        width: 76px;
    }

    .photo04 {
        width: 150px;
    }

    .main_font {
        font-size: 25px;
    }

    .main_logo {
        width: 500px;
    }

    .top_message {
        width: 408px;
    }

    .top_font {
        width: 26px;
    }

    .news_topics dt {
        font-size: 15px;
    }

    .recommend p {
        font-size: 15px;
    }

    .news_topics dd,
    .name,
    .section_contact p,
    small {
        font-size: 16px;
    }

    .news_topics p,
    .class,
    .news_more {
        font-size: 14px;
    }

    .title_img {
        width: 90px;
        top: -10px;
    }

    .news_title_img {
        top: 111px;
        width: 90px;
    }

    .title_news,
    .title_concept,
    .title_contact {
        font-size: 33px;
    }

    .title_sche {
        font-size: 32px;
    }

    .img_line {
        width: 331px;
    }

    .title_message {
        font-size: 15px;
    }

    /* メリット */
    .mrt_co {
        display: block;
    }

    .mrt_co li {
        width: 100%;
        margin: 0 auto 30px;
    }

    .event_all {
        display: block;
        margin: 0 auto;
        width: 90%;
    }

    .event {
        width: 100%;
        margin-bottom: 30px;
    }

    .pro_inner p {
        font-size: 16px;
    }

    .program_pic {
        width: 930px;
        margin-top: 0px;
    }

    .sr_inner li {
        width: 32%;
    }

    .people img {
        width: 115px;
    }

    .sr_inner p {
        line-height: 1;
    }

    .section_concept::before {
        transform: scale(0.4);
        right: -93px;
        top: -41px;
    }

    .concept_inner {
        padding: 0 45px;
    }

    .merit_all li {
        height: 120px;
    }

    .content_3 {
        font-size: 10px;
    }

    .pict_message {
        width: 246px;
    }

    .pict_message::before {
        transform: scale(0.4);
    }

    .recommend {
        padding: 30px;
    }

    .merit00 {
        margin-top: 60px;
    }

    /* プログラム */
    .block {
        margin-bottom: 60px;
    }


    .box_grd p {
        font-size: 20px;
    }

    .prg01_text {
        font-size: 14px;
    }

    .c_title span {
        font-size: 50px;
    }

    .content_top {
        font-size: 18px;
    }

    .content_top small {
        font-size: 16px;
    }

    .c_text {
        font-size: 13px;
    }

    .c_all li {
        width: 48%;
    }

    .c_title {
        gap: 10px;
    }

    .pc_only {
        display: none;
    }

    /* メリット */
    .mrt_co {
        align-items: baseline;
    }

    .banner li {
        width: 30%;
    }

    .table {
        overflow-x: scroll;
    }

    table {
        border-collapse: separate;
        border-spacing: 5px;
        width: 860px;
        margin: 0 auto;
        padding-left: 10px;
    }
}

/* 760以下 */
@media screen and (max-width: 750px) {

    .top_link,
    .top_link a,
    .inner_brock,
    .header {
        width: 490px;
    }

    .header {
        /* display: block; */
        padding: 15px 0;
        height: auto;
        justify-content: flex-start;
    }

    header.fixed {
        position: fixed;
        width: 490px;
    }

    .header_menu {
        display: none;
    }

    .photo01 {
        left: 40px;
    }

    .icon01 {
        left: -5px;
    }

    .icon04 {}

    .position02 {
        right: 10px;
        top: 110px;
    }

    .position03 {
        left: 60px;
    }

    .position04 {
        right: 20px;
        bottom: 0;
    }

    .center {
        left: -18px;
    }

    .main_logo {
        width: 400px;
    }

    .news_topics {
        display: block;
    }

    .news_topics dl {
        width: 90%;
        max-width: 380px;
        margin: 0 auto;
    }

    .news_topics li {
        width: 90%;
        margin: 0 auto;
        min-height: auto;
    }

    .flex_sp {
        /* display: flex; */
        margin-bottom: 25px;
    }

    .news_img {
        width: 100%;
    }

    .news_topics p {
        margin-top: 9px;
    }

    .sr_inner li {
        width: 48%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .section_concept::before {
        transform: scale(0.3);
        right: -109px;
        top: -111px;
    }

    .merit00 {
        width: 200px;
        margin: 70px auto 0;
    }

    .merit_all {
        gap: 10px;
    }

    .merit_all li {
        height: 80px;
    }

    .event p {
        text-align: left;
    }

    .recommend {
        margin: 30px auto 55px auto;
    }

    .pict_message::before {
        left: -81px;
        top: -61px;
        transform: scale(0.3);
    }

    .pict_message {
        width: 226px;
    }

    .recommend p {
        margin-top: 17px;
        font-size: 15px;
    }

    .block {
        display: block;
    }

    .program_pic {
        width: 85%;
    }

    .pro_inner p {
        margin-bottom: 30px;
    }

    /* プログラム */
    .pro_content {
        padding: 0;
    }

    .pro_inner p {
        text-align: left;
        padding: 0 45px;
    }

    .program_pic {
        margin: 0 auto;
    }

    .box_grd {
        padding: 7px;
    }

    .box_grd p {
        font-size: 16px;
    }

    .box_grd p br {
        display: block;
    }

    .box_grd h4 {
        font-size: 28px;
        letter-spacing: 0.5px;
    }

    .pro_title {
        margin: 10px auto 20px;
    }

    .prg01_text {
        font-size: 16px;
        padding: 0 40px;
        text-align: justify;
    }

    .prg_02 {
        padding: 0 20px;
    }

    .content_top {
        margin: 0;
        text-align: left;
    }

    .sp_only {
        display: none;
    }

    .other {
        font-size: 14px;
        text-align: justify;
    }

    .sp_none {
        display: none;
    }

    .content_top {
        font-size: 22px;
    }

    /* コンテンツ */
    .contents_text {
        margin: 20px 50px;
        font-size: 16px;
        text-align: justify;
    }

    .c_all {
        display: block;
    }

    .c_all li {
        width: 85%;
        margin: 0 auto 15px;
    }

    .c_title {
        gap: 20px;
        margin-bottom: 10px;
    }

    .c_text {
        font-size: 15px;
        width: 60%;
        font-size: 14px;
        margin: 0px 30px 10px 0
    }

    .c_img {
        width: 30%;
    }

    .p_02 {
        margin: 60px auto;
        font-size: 16px;
        text-align: justify;
    }

    .entry {
        padding: 40px 20px 40px;
    }

    .entry p {
        text-align: justify;
    }

    .dotted {
        background-image: linear-gradient(to right, #000, #000 2px, transparent 2px, transparent 8px);
        /* 幅2の線を作る */
        background-size: 8px 2px;
        /* グラデーションの幅・高さを指定 */
        background-position: left bottom;
        /* 背景の開始位置を指定 */
        background-repeat: repeat-x;
        /* 横向きにのみ繰り返す */
    }

    .people {
        margin-bottom: 8px;
    }

    .t_left {
        width: 100%;
    }

    /* 主催 */

    .banner {
        align-items: baseline;
    }

    .banner li {
        padding: 20px 0;
    }

    .banner {
        justify-content: space-between;
        flex-wrap: wrap;
        margin: 30px;
    }

    .banner p {
        font-size: 2.4vw;
    }

    .banner li {
        width: 43%;
    }

    .banner li img {
        width: 100%;
    }
}


@media screen and (max-width: 510px) {

    body {
        overflow-x: hidden;
    }

    .section_top {
        background-size: contain;
        margin-top: -40px;
    }

    .top_link,
    .top_link a,
    .inner_brock,
    .header {
        width: 96%;
    }

    .header {
        padding: 0;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .header.fixed {
        width: 96%;
    }

    .menu-btn {
        margin-left: 10px;
    }

    .position01 {
        top: 70px;
    }

    .icon01 {
        width: 12vw;
    }

    .photo01 {
        width: 24vw;
        left: 19px;
    }

    .position02 {
        top: 70px;
    }

    .photo02 {
        width: 31vw;
    }

    .icon02 {
        width: clamp(2.5rem, 3.5vw, 4rem);
    }

    .position03 {
        left: 30px;
    }

    .photo03 {
        width: 26vw;
    }

    .icon03 {
        margin-left: 30px;
        width: clamp(3.7rem, 3.5vw, 4rem);
    }

    .icon04 {
        width: clamp(3.4rem, 2.5vw, 2rem);
        margin: 0px 0 -30px 70px;
    }

    .photo04 {
        width: clamp(8rem, 2.5vw, 2rem);
    }

    .position04 {
        right: 10px;
    }

    .main_logo {
        padding: 10px 0;
    }

    .top_message {
        width: 75vw;
        padding-left: 10px;
        box-sizing: border-box;
    }

    .main_font {
        font-size: clamp(0.9rem, 5.1vw, 2.8rem);
    }

    .gradient {
        height: 35px;
    }


    .top_font {
        width: 6vw;
        padding: 60px 13px 30px;
    }

    .main_logo {
        width: 65vw;
    }

    .img_line {
        width: 230px;
    }

    .title_img {
        left: 15px;
    }

    .news_title_img {
        left: 15px;
    }

    .center {
        position: absolute;
        left: 11%;
        top: 180px;
    }

    .news_topics dd,
    .name,
    .news_more {
        font-size: 16px;
    }

    .section_contact p {
        padding: 0 20px;
        font-size: 15px;
    }

    small {
        font-size: 10px;
    }

    .sr_inner {
        padding: 30px 20px;
    }

    .sr_inner li {
        flex-flow: column;
        text-align: center;
        margin-bottom: 10px;
    }

    .pict_message {
        width: 51vw;
    }

    .people {
        margin: 0 0 7px 0;
    }

    .section_concept::before {
        transform: scale(0.2);
        right: -124px;
        top: -131px;
    }

    .title_message {
        font-size: 20px;
    }

    .recommend {
        padding: 25px;
    }

    /* コンセプト */
    .merit_all {
        margin-top: 30px;
        margin-bottom: 8%;
    }

    .merit_all li {
        height: 55px;
    }

    .mrt_co li {
        width: 100%;
        margin: 0 auto 30px;
    }

    .content_3 {
        padding-top: 9;
    }

    .concept_inner {
        padding: 0px 20px;
    }

    /* プログラム */
    .box_grd {
        padding: 20px 0;
        width: 90%;
    }

    .box_grd p {
        font-size: 14px;
    }

    .pro_inner p {
        padding: 0 20px;
    }

    .block {
        margin-bottom: 30px;
    }

    .prg01_text {
        padding: 0 20px;
    }

    .contents_text {
        margin: 20px;
    }

    .p_02 {
        margin: 60px auto;
    }

    .c_all li {
        width: 95%;
    }

    .c_title {
        justify-content: left;
    }

    .content_top {
        font-size: 20px;
    }

    .c_text {
        font-size: 14px;
    }

    .sp_only {
        display: block;
    }

    .c_text {
        margin: 20px 30px 10px 0;
    }

    .banner {
        margin: 20px;
    }

    .pro_content img {
        width: 90%;
    }

}

@media screen and (max-width: 400px) {

    .position02 {
        top: 57px;
    }

    .position03 {
        bottom: 32px;
    }

    .icon03 {
        margin-left: 18px;
    }

    .icon04 {
        width: clamp(3rem, 2.5vw, 2rem);
        margin: 0px 0 -50px 70px;
    }

    .position04 {
        bottom: 5px;
    }

    .photo04 {
        width: 30vw;
    }

    .top_font {
        width: 6vw;
    }

    .center {
        top: 175px;
    }

    .news_topics dl {
        height: 100%;
        padding-bottom: 20px;
    }

    .news_img img {
        height: 180px;
    }

    /* コンセプト */
    .merit_all li {
        height: 55px;
    }

    /* プログラム */
    .c_title {
        gap: 20px;
    }

    .c_pict {
        display: block;
    }

    .c_img {
        width: 50%;
        margin: 0 auto;
    }

    .c_text {
        margin: 0 auto;
        width: 90%;
    }

    .c_all li {
        margin-bottom: 30px;
    }
}

/*======= YOUTUBE setting =======*/

.youtube_wrapper {
    width: 90%;
    max-width: 860px;
    margin: 0 auto 50px;
}



.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/*======= FONT_decoration setting =======*/

p.slash {
    position: relative;
    padding: 0px 60px;
    white-space: nowrap;
    text-align: center;
    font-size: 22px;
    width: fit-content;
    margin: 0 auto;
    font-weight: bold;
    line-height: 1.5;
}

.slash:before,
.slash:after {
    content: "";
    position: absolute;
    top: 0px;
    display: block;
    width: 2px;
    height: 95%;
    background: black;
}

.slash:before {
    left: 29px;
    transform: rotate(-30deg)
}

.slash:after {
    right: 29px;
    transform: rotate(30deg)
}

#APPLY {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 100px;
    height: 100px;
    border: 3px solid white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 18px;
    font-weight: bold;
    color: white;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.5px;
    background-image: linear-gradient(125deg, rgb(48, 194, 35) 0%, rgb(39, 155, 212) 50%);
    filter: drop-shadow(1px 1px 2px rgb(161, 159, 159));
}

#APPLY a {
    color: white;
}

#APPLY span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: white;
    margin-top: 3px;
}

/*カテゴリーラベル*/

#news dl dt {
    font-size: 15px;
    width: 100%;
    padding: 0;
    margin-top: 15px;
    margin-bottom: 0;
}

#news ol.news_topics dl dt span.cat_,
.category {
    color: white;
    font-weight: bold;
    font-size: 13px;
    padding: 5px 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    line-height: 1;
    display: inline-block;
    width: fit-content;
}

span.label_01 {
    background: #69C2ED;
}

span.label_02 {
    background: #d36d66;
}

@media screen and (max-width: 1140px) {
    #news dl dt {
        margin-bottom: 10px;
    }

    #news ol.news_topics dl dt span.cat_ {
        color: white;
        display: block;
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 740px) {

    span.cat_ {
        display: inline-block !important;
    }
}

@media screen and (max-width: 375px) {

    span.cat_ {
        display: block !important;
        ;
    }

    span.cat_ {
        font-size: 12px;
    }
}


.inner_brock {
    position: relative;
}

.inner_brock .category {
    position: absolute;
    top: 80px;
    right: 3%;
    font-size: 15px;
    opacity: 1 !important;
    z-index: 99;
    padding: 8px;
}

@media screen and (max-width: 740px) {
    .inner_brock .category {
        position: absolute;
        top: 75px;
        right: 10px;
        font-size: 14px;
        opacity: 1 !important;
        z-index: 99;
        padding: 8px;
    }

}

/*NEWSページにpaginationを追加___2024.4*/

.news_topics {
    margin-bottom: 30px !important;
}

.pagination {
    width: 90%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap: 20px;
}

.pagination span {
    background: #83cee9;
    padding: 10px;
    border-radius: 5px;
    color: white;
}

.pagination a {
    padding: 10px;
    border-radius: 5px;
}

.pagination a:hover {
    background: #83cee9;
    padding: 10px;
    border-radius: 5px;
    color: white;
}


#SCHEDULE {
    width: 90%;
    margin: 50px auto;
}

#SCHEDULE td:first-child {
    text-align: center;
    min-width: 10em;
}

#SCHEDULE td:nth-child(2) {
    min-width: 400px;
    font-weight: bold;
}

#SCHEDULE h4 {
    border-left: solid 8px #39CAB9;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 10px 5px;
    padding-left: 10px;
}

#SCHEDULE .table dl {
    display: flex;
    flex-flow: row wrap;
    padding: 5px 0;
    font-weight: normal;
    font-size: 15px;
}

#SCHEDULE td dl dt {
    width: 3.5em;
}

#SCHEDULE td dl dd {
    flex: 1;
    line-height: 1.4;
}

#SCHEDULE td dl dd br {
    margin: 0 0 3px;
}