@charset "utf-8";
/******************************************************

        PCサイト用

******************************************************/
@media screen and (width >= 768px) {


/******************************************************/
/* main 共通  */
/******************************************************/
#main h2:not(.mv_title) {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 58px;
    display: inline-block;
    background: linear-gradient( 90deg, rgb(43,123,197) 0%, rgb(22,65,160) 47%, rgb(41,26,138) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#main h2:not(.mv_title) .sub {
    color: #000000;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    margin: 0px auto 18px;
    position: relative;
    -webkit-text-fill-color: initial;
    -webkit-background-clip: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}
#main h2:not(.mv_title) .sub::before {
    content: "";
    display: block;
    background: #0075c2;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin:3px 7px 0 0;
}


/******************************************************/
/* TOP メインビジュアル */
/******************************************************/
#main_image {
    width: 100%;
    position: relative; 
}

#main_image::after {
    content: "";
    width: 100%;
    height: 100%;
    background: radial-gradient(#ffffff 1%, transparent 1%);
    background-size: 7px 7px;
    position: absolute;
    display: block;
    inset: 0;
    opacity: 0.4;
}

#main_image .background_img {
    width: 100%;
    height: auto;
}

#main_image .mv_title {
    position: absolute;
    inset: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

#main_image .mv_title .main {
    width: 538px;
    height: auto;
    opacity: 0.9;
    margin-right: 66px;
}

#main_image .mv_title .sub {
    display: flex;
    flex-direction: column;
    margin-top: 38px;
}


#main_image .mv_title .sub .text_wrap {
    background: #ffffff;
    display: inline-block;
    padding: 9px 0 9px 18px;
    line-height: 1;
}
#main_image .mv_title .sub .text_wrap.upper {
    margin: 0 110px 14px 0;
}

#main_image .mv_title .sub .text_wrap.lower {
    margin-left: 110px;
}

#main_image .mv_title .sub .text_wrap .text {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient( 90deg, rgb(43,123,197) 0%, rgb(22,65,160) 47%, rgb(41,26,138) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#main_image .scroll {
    position: absolute;
    inset: auto 0 90px 0;
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
}

#main_image .scroll::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 40px;
    inset: 34px 0 0 0;
    margin: 0 auto;
    background: #ffffff;
    z-index: 10;
    animation: move_bar 3s ease infinite;
}

@keyframes move_bar {
    0% {
        top: 34px;
    }
    100% {
        top: 74px;
    }
}

#main_image .scroll::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 80px;
    inset: 34px 0 0 0;
    margin: 0 auto;
    background: #ffffff;
    opacity: 0.5;
}



/******************************************************/
/* news  */
/******************************************************/
#top_news {
  background: #eff2f4;
    padding: 100px 0 0;
    margin-bottom: 290px;
    position: relative;
}

#top_news::after {
    content: "";
    background:#ffffff url("../media/back_1.jpg") no-repeat bottom;
    background-size: cover;
    position: absolute;
    bottom: -485px;
    left: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 485px;
}

#top_news .tab_list {
    display: flex;
    justify-content: space-between;
    /* ドロップシャドウが途切れるので左右の幅を100%より少し大きくする */
    width: calc(100% + 40px);
    max-width: 1100px;
    gap: 10px;
    margin:0 auto 5px;
    position: sticky;
    top: 0;
    background: #eff2f4;
    padding: 20px;
}



#top_news .tab_list li {
    width:100%;
    box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.08);
}

#top_news .tab_list li button {
    border: none;
    background: #ffffff;
    color: #0075c2;
    border-radius: 5px;
    line-height: 1;
    text-align: center;
    padding: 22px 0;
    width: 100%;
    font-weight: 700;
    cursor: pointer;
    font-size: 1.5rem;
    letter-spacing: 0.08em;
}

#top_news .tab_list li button:hover {
    opacity: 0.8;
}

#top_news .tab_list li button.active {
    background: #0075c2;
    color: #ffffff;
}

#top_news .contents_wrap {
    display: none;
}


#top_news .contents_wrap.active {
    display: block;
}

#top_news .contents_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    border-radius: 5px;
    padding: 20px 35px 20px 45px;
    margin: 0 auto 8px;
    background: #ffffff;
    box-sizing: border-box;
    min-height: 90px;
    box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.08);
}

#top_news .contents_title:nth-of-type(n + 2) {
    margin-top: 8px;
}

#top_news .contents_title h3 {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0075c2;
    line-height: 1;
}

#top_news .contents_title h3 .sub {
    font-size: 1.4rem;
    margin-left: 12px;
}

#top_news .contents_title a {
    background: linear-gradient( 90deg, rgb(43,123,197) 0%, rgb(22,65,160) 47%, rgb(41,26,138) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 210px;
    height: 50px;
    border-radius: 100vh;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

#top_news .contents_main ul {
    border-radius: 5px;
    width: 100%;
    max-width: 1100px;
    box-sizing: border-box;
    margin: 0 auto;
    box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.08);
    overflow: hidden;
    display: grid;
    grid-template: repeat(auto-fit, minmax(50px, 1fr)) /105px minmax(440px, max-content) auto;
    gap: 0 60px;
}

#top_news .contents_main ul li {
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
    padding: 12px 0;
    align-items: center;
    box-sizing: border-box;
    display: grid;
    grid-template: subgrid / subgrid;
    grid-row: span 1;
    grid-column: span 3;
    
}

#top_news .contents_main ul li:nth-last-of-type(1) {
    border-bottom: none;
}

#top_news .contents_main ul li .tag {
    max-width: 70px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #0075c2;
    border-radius: 100vh;
    font-size: 1.2rem;
    margin-left: 35px;
}

#top_news .contents_main ul li .tag.web {
    background: #0075c2;
}

#top_news .contents_main ul li .tag.okayama {
    background: #ea4335;
}

#top_news .contents_main ul li .tag.hiroshima {
    background: #ef9300;
}

#top_news .contents_main ul li .tag.ehime {
    background: #9e877c;   
}

#top_news .contents_main ul li .tag.yamaguchi {
    background: #34a853;
}

#top_news .contents_main ul li .title {
    font-size: 1.5rem;
    color: #282828;
    text-align: left;
    font-weight: 500;
}

#top_news .contents_main ul li .date {
    font-size: 1.2rem;
    color: #808080;
    letter-spacing: 0.03em;
    text-align: left;
    padding-right: 35px;
}

#top_news .contents_main ul li .sub_link {
    font-size: 1.2rem;
    color: #808080;
    letter-spacing: 0.03em;
    text-align: left;
    padding-right: 35px;
}

#top_news .contents_main ul li .supplement {
    font-size: 1.3rem;
    color: #555555;
    font-weight: 400;
}

#top_news .contents_main ul.two_columns {
    grid-template-columns: minmax(475px, max-content) auto;
}

#top_news .contents_main ul.two_columns li {
    grid-template-columns: subgrid; 
    grid-column: span 2;
}

#top_news .contents_main ul.two_columns li .title {
    padding-left: 35px;
}

#top_news .contents_main .no_schedule {
    border-radius: 5px;
    width: 100%;
    height: 250px;
    max-width: 1100px;
    box-sizing: border-box;
    margin: 0 auto;
    box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.08);
    overflow: hidden;
    text-align: center;
    font-size: 2.4rem;
    color: #888888;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}
/******************************************************/
/* about  */
/******************************************************/
#top_about {
    width: 100%;
    max-width: 1100px;
    min-width: auto !important;
    margin: 0 auto;
    text-align: left;
    position: relative;
    padding-bottom: 245px;
    border-bottom: 1px solid #ebebeb;
}

#top_about .inbox {
    position: static;
}

#main #top_about h2 {
    margin-bottom: 50px;
    letter-spacing: 0.08em;
}

#main #top_about h2 .sub {
    justify-content: start;
    margin-bottom: 13px;
    letter-spacing: 0.03em;
}

#top_about p {
    font-size: 1.6rem;
    line-height: 2.1;
    color: #444444;
}

#top_about .link_list{
    margin-top: 45px;
    padding: 0;
    border-left: #eeeeee 3px solid;
}

#top_about .link_list li {
    margin-bottom: 24px;
    line-height: 1;
}

#top_about .link_list li:nth-last-of-type(1) {
    margin-bottom: 0;
}

#top_about .link_list li a {
    text-decoration: none;
    font-size: 1.8rem;
    color: #444444;
    padding-left: 45px;
    position: relative;
    font-weight: 700;
}


#top_about .link_list li a::after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  top: 50%;
  left: 23px;
  border-right: 2px solid #0075c2;
  border-bottom: 2px solid #0075c2;
  rotate: -45deg;
  transform: translateY(-50%);
}

#top_about .about_img {
    position: absolute;
    right: 0;
    bottom: 77px;
    
}

/******************************************************/
/* special contents  */
/******************************************************/
#top_special_contents {
    padding: 100px 0 0;
}

#top_special_contents .special_contents_inner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
}

#main #top_special_contents h2 .sub {
    justify-content: start;
    margin-bottom: 12px;
}

#top_special_contents ul {
    display: flex;
    width: 100%;
    margin: 0 auto;
    justify-content: space-between;
}

#top_special_contents ul li {
    position: relative;
    border-radius: 5px;
    box-shadow: 0px 0px 11px 6px #f1f1f1;
}

#top_special_contents ul li.right {
    box-shadow: 0px 0px 11px 6px #f1f1f1;
}

#top_special_contents ul li a {
    text-decoration: none;
}

#top_special_contents ul li a:hover {
    opacity: 0.9;
}

#top_special_contents ul li img {
    width: 100%;
    height: auto;
    display: block;
}

#top_special_contents ul li h3 {
    padding-left: 17px;
    position: absolute;
    font-size: 2.1rem;
    color: #ffffff;
    font-weight: 800;
    bottom: 30px;
    left: 25px;
}

#top_special_contents ul li h3 .sub {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
}

#top_special_contents ul li h3::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.9;
    top: 13px;
    left: 0;
    display: block;
    position: absolute;
}

/******************************************************/
/* message  */
/******************************************************/
#top_message {
    background: linear-gradient(180deg, rgba(244,247,250,1) 0%, rgba(232,235,237,1) 100%);
    background-size: cover;
    padding: 0 0 100px;
    position: relative;
    margin-top: 376px;
}

#top_message::before {
    content: "";
    background: url("../media/back_2.jpg") no-repeat;
    background-size: cover;
    width: 100%;
    height: 330px;
    position: absolute;
    top: -330px;
    left: 0;
    right: 0;
}


#top_message .message_list_wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


#top_message .message_list {
    display: flex;
    flex-wrap: wrap;
    gap: 52px 40px;
    overflow: hidden;
}

#top_message .message_list .message {
    position: relative;
    width: calc((100% - 40px * 2) / 3 );
}

#top_message .message_list .message a {
    text-decoration: none;
}

#top_message .message_list .message a:hover {
    opacity: 0.8;
}


#top_message .message_list .message img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

#top_message .message_list .message .title_wrap {
    margin: -87px 0 9px 20px;
    position: relative;
    z-index: 10;
    text-align: left;
}

#top_message .message_list .message .title_wrap .sub{
    color: #ffffff;   
    display: inline-block;
    font-size: 1.2rem;
    padding: 6px 8px;
    box-sizing: border-box;
    height: 25px;
    line-height: 1;
}

#top_message .message_list .message .title_wrap .sub.eigyo {
    background: #0060a7;
}

#top_message .message_list .message .title_wrap .sub.coordinator {
    background: #0090b5;
}

#top_message .message_list .message .title_wrap .sub.ha {
    background: #e56977;
}

#top_message .message_list .message .title_wrap .sub.kanri {
    background: #8cc220;
}

#top_message .message_list .message h3 {
    color: #0075c2;
    font-size: 2.4rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    line-height: 1;
    margin-top: -2px;
}


#top_message .message_list .message h3 .main {
    background: #ffffff;
    display: inline-block;
    margin: 0 0 4px;
    height: 42px;
    box-sizing: border-box;
    padding: 8px 16px;
    font-weight: 700;
}

#top_message .message_list .message p {
    font-size: 1.3rem;
    color: #555555;
    margin-left: 20px;
    letter-spacing: 0.04em;
}

#top_message .message_list .message p .year {
    font-size: 1.2rem;
}

#top_message .button_wrap {
    padding: 75px 0 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(0deg, rgba(232, 235, 237, 1) 34%, rgba(232, 235, 237, 0.2805497198879552) 100%);
    margin-top: -135px;
}

#top_message #message_more {
    background: linear-gradient( 90deg, rgb(43,123,197) 0%, rgb(22,65,160) 47%, rgb(41,26,138) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 280px;
    height: 60px;
    border-radius: 100vh;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    border: none;
    margin: 0 auto;
    font-weight: 700;
    padding-top: 3px;
    cursor: pointer;
}

#message #message_more:hover {
    opacity: 0.8;
}

}
