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

        スマートフォンサイト用

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


/******************************************************/
/* main 共通  */
/******************************************************/
#main h2:not(.mv_title) {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 23px;
    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: 2.2rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.06em;
    margin: 0px auto 8px;
    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: 4px;
    height: 4px;
    border-radius: 50%;
    margin:0 7px 0 0;
}


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

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

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

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

#main_image .mv_title .main {
    width: 304px;
    height: auto;
    opacity: 0.9;
}

#main_image .mv_title .sub {
    display: flex;
    flex-direction: column;
    margin: 30px 30px 0 0;
    padding: 0 3px;
}


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

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

#main_image .mv_title .sub .text_wrap .text {
    font-size: 3.8rem;
    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 50px 0;
    margin: 0 auto;
    color: #ffffff;
    text-align: center;
    font-size: 2.2rem;
}

#main_image .scroll::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 20px;
    inset: calc(100% + 9px) 0 0 0;
    margin: 0 auto;
    background: #ffffff;
    z-index: 10;
    animation: move_bar 3s ease infinite;
}

@keyframes move_bar {
    0% {
        top: calc(100% + 9px);
    }
    100% {
        top: calc(100% + 30px);
    }
}

#main_image .scroll::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 40px;
    inset: calc(100% + 9px) 0 0 0;
    margin: 0 auto;
    background: #ffffff;
    opacity: 0.5;
}

/******************************************************/
/* news  */
/******************************************************/
#top_news {
    background: linear-gradient(180deg, rgba(248,251,253,1) 0%, rgba(235,238,240,1) 100%);
    padding: 40px 0 0;
    margin-bottom: 128px;
    position: relative;
}

#top_news::after {
    content: "";
    background: url("../media/back_1_s.jpg") no-repeat bottom center;
    background-size: cover;
    width: 100%;
    height: 128px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -128px;
}

#top_news .tab_list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 2px;
    margin:0 auto 5px;
    position: sticky;
    top: 0;
    padding: 15px 0 10px;
    background: #F7F9FC;
}

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

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

#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%;
    border-radius: 5px;
    padding: 10px 10px 10px 20px;
    margin: 0 auto 4px;
    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: 4px;
}

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

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

#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: 125px;
    height: 48px;
    border-radius: 100vh;
    color: #ffffff;
    text-decoration: none;
    font-size: 2.6rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}

#top_news .contents_main ul {
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    box-shadow: 0px 0px 15px 0px rgba(51, 51, 51, 0.08);
    overflow: hidden;
}

#top_news .contents_main ul li {
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
    padding: 11px 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    min-height: 50px;
    box-sizing: border-box;
}


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

#top_news .contents_main ul li .tag {
    width: 45px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #0075c2;
    border-radius: 100vh;
    margin-right: 10px;
    font-size: 2rem;
    order: 1;
}

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

#top_news .contents_main ul li .tag.zenkoku {
    background: #33b2d7;   
}

#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: 2.8rem;
    color: #282828;
    width: 100%;
    letter-spacing: 0.08em;
    line-height: 1.43;
    margin-top: 2px;
    order: 3;
    text-align: left;
    font-weight: 600;
}

#top_news .contents_main ul li .info {
    order: 2;
}

#top_news .contents_main ul li .date {
    font-size: 2rem;
    color: #808080;
    letter-spacing: 0.03em;
}

#top_news .contents_main ul li .sub_link {
    font-size: 2rem;
    color: #808080;
    letter-spacing: 0.03em;
}

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

#top_news .contents_main .no_schedule {
    border-radius: 5px;
    width: 100%;
    height: 125px;
    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.8rem;
    color: #888888;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/******************************************************/
/* about  */
/******************************************************/
#top_about {
    padding: 12px 20px 50px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    position: relative;
    border-bottom: 1px solid #ebebeb;
    box-sizing: border-box;
}

#main #top_about h2 {
    margin-bottom: 17px;
}

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

#top_about p {
    font-size: 2.8rem;
    color: #444444;
    line-height: 1.8;
    letter-spacing: 0.08em;
    margin-bottom: 22px;
}

#top_about .link_list{
    width: 100%;
    margin: 0 auto 38px;
    box-sizing: border-box;
    padding-right: 20px;
}

#top_about .link_list li {
    border-top: 1px solid #efefef;
}

#top_about .link_list li:nth-last-of-type(1) {
    border-bottom: 1px solid #efefef;
}

#top_about .link_list li a {
    padding: 20px 0;
    text-decoration: none;
    font-size: 3rem;
    color: #444444;
    font-weight: 700;
    padding-left: 30px;
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
}


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

#top_about .about_img {
    width: 100%;
    height: auto;
}

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

#top_special_contents .special_contents_inner {
    width: 100%;
    margin: 0 auto;
    text-align: left;
    padding: 0 20px;
    box-sizing: border-box;
}

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

#top_special_contents ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

#top_special_contents ul li {
    position: relative;
}

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

#top_special_contents ul li img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: -1;
    display: block;
}


#top_special_contents ul li h3 {
    padding-left: 10px;
    position: absolute;
    font-size: 3rem;
    color: #ffffff;
    font-weight: 800;
    bottom: 17px;
    left: 20px;
    letter-spacing: 0.12em;
    text-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
}

#top_special_contents ul li h3 .sub {
    display: block;
    font-size: 2rem;
    font-weight: 500;
    margin-left: -10px;
    line-height: 1;
}

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


/******************************************************/
/* message  */
/******************************************************/
#top_message {
    background: #eeeeee;
    padding: 0 20px 55px;
    margin-top: 140px;
    position: relative;
}

#main #top_message h2 .sub {
    margin-bottom: 6px;
}

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

#top_message .message_list_wrap {
    width: 100%;
    margin: 0 auto;
}


#top_message .message_list {    
    overflow: hidden;
}

#top_message .message_list .message {
    position: relative;
    width: 100%;
    margin-bottom: 29px;
}

#top_message .message_list .message:nth-last-of-type(1) {
    margin-bottom: 0;
}

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

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

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

#top_message .message_list .message .title_wrap .sub{
    color: #ffffff;   
    display: inline-block;
    font-size: 2.4rem;
    padding: 6px 8px;
    box-sizing: border-box;
    height: 25px;
    font-weight: 700;
    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: 3.6rem;
    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 3px;
    height: 32px;
    box-sizing: border-box;
    padding: 7px 8px;
    font-weight: 700;
}

#top_message .message_list .message p {
    font-size: 2.4rem;
    color: #555555;
    margin-left: 10px;
}

#top_message .message_list .message p .year {
    font-size: 2rem;
    display: block;
    margin-top: 2px;
    line-height: 1.2;
    
}

#top_message .button_wrap {
    padding: 50px 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: -110px;
}

#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: 295px;
    height: 60px;
    border-radius: 100vh;
    color: #ffffff;
    text-decoration: none;
    font-size: 2.6rem;
    letter-spacing: 0.12em;
    border: none;
    margin: 0 auto;
    font-weight: 700;
    padding-top: 3px;
    cursor: pointer;
}



}
