@charset "UTF-8";

body {
    font-size: 15px;
    line-height: 28px;
    /* letter-spacing: 1px; */
}

#mainvisual {
    display: none;
}

#loading {
    width: 100vw;
    height: 100vh;
    transition: all 1s;
    background-color: #fff;
}
.spinner {
    width: 100px;
    height: 100px;
    margin: 45vh auto;
    background-color: #303e92;
    border-radius: 100%;
    animation: sk-scaleout 1s infinite ease-in-out;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* -------------------------------
common
------------------------------- */

.pc_only {
    display: block;
}

.pc_only_inline {
    display: inline;
}

.mb_only {
    display: none;
}

.fadein {
    opacity: 0.1;
    transform: translate(0, 50px);
    transition: all 1s;
}

.fadein_type2 {
    transform: translate(0, 50px);
    transition: all 1.5s;
}

.fadein_type3 {
    transform: translate(0, 60px);
    transition: all 2s;
}

.fadein.scrollin {
    opacity: 1;
    transform: translate(0, 0);
}

.fw_normal {
    font-weight: normal;
}

/* -------------------------------
common parts
------------------------------- */

h4 {
    font-size: 24px;
    line-height: 24px;
    background-color: #1c2660;
    color: white;
    padding: 16px 30px;
    margin-bottom: 20px;
    margin-top: 50px;
}

h4 span {
    font-size: 18px;
    display: inline;
}

.space {
    height: 16px;
}

.bordertop {
    border-top: 1px solid #ddd;
    padding: 6vw 0 0;
}

.mt40 {
    margin-top: 40px;
}

/* -------------------------------
top page
------------------------------- */

main {
    background-color: #485272;
}

#mainvisual {
    height: 785px;
    background-color: #1b294f;
    background-image: url(../images/mv_bg.png);
    background-position-x: 50%;
    text-align: center;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    /* animation:3s linear infinite rotation1; */
    padding: 50px 0;
}

@keyframes rotation1 {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}

#corner {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    height: 70px;
    width: 240px;
    align-items: center;
}

#corner a {
    display: block;
    flex: 1;
    height: 100%;
    text-decoration: none;
    padding-top: 21px;
}

#corner a:hover {
    opacity: 0.9;
}

#corner a:first-child {
    background-color: #fbb03b;
}

#corner a:last-child {
    background-color: #8cc63f;
}

#sub_page_mv {
    height: 320px;
    /* background: rgb(0,159,217);
    background: linear-gradient(180deg, rgba(0,159,217,1) 0%, rgba(129,205,227,1) 50%, rgba(185,226,243,1) 100%); */
    text-align: center;
    background-color: #1b294f;
}

#sub_page_mv img {
    max-width: 700px;
}

#mainvisual img.mv_flag {
    width: 100vw;
    height: 80px;
    object-fit: cover;
    margin: 0 auto;
    animation: slideIn 0.8s ease-in 0s 1 normal;
    -webkit-animation: slideIn 0.8s ease-in 0s 1 normal;
    padding-top: 190px;
}

@keyframes slideIn {
    0% {
        transform: translateY(-80px);
    }
    40% {
        transform: translateY(0px);
    }
    60% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeIn {
    0% {
        transform: translateY(-100px);
    }
    100% {
        transform: translateY(0px);
    }
}

#mainvisual img.mv_text {
    width: 700px;
    object-fit: contain;
    margin: 190px auto 0;
    animation: fadeIn 1s ease-in-out 0s 1 normal;
    -webkit-animation: fadeIn 1s ease-in-out 0s 1 normal;
    z-index: 20;
    position: relative;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(300px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(300px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

#sub_page_mv img {
    width: 100vw;
    height: 320px;
    object-fit: contain;
}

#mainvisual .cyber {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    opacity: 0.9;
}

/* -------------------------------
conv
------------------------------- */

.top_conv {
    margin: 40px auto 50px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 20;
}

.top_conv a {
    width: 260px;
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    background-image: url(../images/arrow_right.png);
    background-repeat: no-repeat;
    background-position-x: 94%;
    background-position-y: 50%;
}

.top_conv a:hover {
    opacity: 0.8;
}

.top_conv a:first-child {
    background-color: #fbb03b;
    margin-right: 20px;
}

.top_conv a:last-child {
    background-color: #8cc63f;
}

/* -------------------------------
global menu
------------------------------- */

#g_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #bce2e8;
}

#g_menu > div {
    width: 170px;
    text-align: center;
    font-size: 17px;
    font-weight: bold;
}

#g_menu > div.active_menu:hover {
    background-color: #92c0c7;
}

#g_menu > div.active_menu:hover a {
    color: white;
}

#g_menu > div.active {
    background-color: #ffb600;
}

#g_menu > div.inactive {
    background-color: #cccccc;
}

#g_menu > div.inactive a {
    color: #808080;
}

#g_menu > div.inactive img {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.2;
}

#g_menu > div > div {
    border-left: 1px solid #fff;
    margin: 20px 0;
}

#g_menu > div:last-child > div {
    border-right: 1px solid #fff;
}

#g_menu > div span {
    font-size: 12px;
    display: block;
    line-height: 24px;
}

#g_menu img {
    display: block;
    margin: 0 auto 8px;
}

#g_menu img.zoom1 {
    margin: 0 auto 1px;
    zoom: 1.1;
    -webkit-transform: rotate(10deg); /* chrome、safari　*/
    -moz-transform: rotate(10deg); /* firefox　*/
}

#g_menu img.zoom2 {
    margin: 0 auto 1px;
    zoom: 1.1;
    -webkit-transform: rotate(-10deg); /* chrome、safari　*/
    -moz-transform: rotate(-10deg); /* firefox　*/
}

#g_menu a {
    text-decoration: none;
}

#g_menu a div {
    line-height: 20px;
    min-height: 44px;
    padding: 8px 0;
}

#g_menu a div.single {
    padding: 20px 0;
}

/* -------------------------------
content area
------------------------------- */

#pickup {
    width: 1080px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
}

.pickup_box {
    border: 1px solid #ccc;
    padding: 15px 35px;
}

.pickup_box img {
    width: 130px;
    margin-right: 30px;
}

.pickup_inner {
    display: flex;
    align-items: flex-end;
}

.pickup_inner div {
    line-height: 1.5;
}

.pickup_inner .pickup_head {
    background-color: #000b36;
    display: inline-block;
    padding: 1px 60px;
    color: white;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.pickup_title {
    font-size: 29px;
    font-weight: bold;
    border-bottom: 1px solid #555;
    margin-bottom: 10px;
}



.eye_catch {
    width: 1080px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
    color: black;
    background-color: #ffff00;
}

.eye_catch > div:first-child {
    font-size: 60px;
    display: inline-block;
    font-weight: bold;
    border-bottom: 1px solid #000;
    line-height: 84px;
    letter-spacing: 12px;
}

.eye_catch > div:last-child {
    font-size: 24px;
    padding: 10px 0;
    letter-spacing: 2px;
}

.content_area {
    width: 1080px;
    margin: 0px auto 0;
    padding: 50px 90px 1px;
    background-color: white;
}

#sub_page .content_area:last-child {
    padding: 50px 40px 35px;
}

.content_area h2 {
    text-align: center;
    font-size: 40px;
    line-height: 45px;
    color: #1c2660;
    margin-bottom: 40px;
}

.content_area h2 span:first-of-type {
    display: inline;
    font-size: 16px;
    line-height: 13px;
    font-weight: normal;
    vertical-align: super;
}

.content_area h2 span:last-child {
    display: inline;
    font-size: 12px;
    font-weight: normal;
    vertical-align: baseline;
}

.content_area .sub_copy {
    margin: 30px auto 30px;
    font-weight: bold;
    color: #1c2660;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
}

.content_area .sub_copy.flow_goal {
    margin: 90px auto 30px;
}

.content_area .sub_copy span {
    display: inline-block;
    color: white;
    background-color: #1c2660;
}

.content_area .sub_copy .large {
    font-size: 24px;
}

.content_area .appeal {
    margin: 50px auto 50px;
    font-weight: bold;
    color: #1c2660;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    display: block !important;
}

.content_area .appeal .title {
    display: inline-block;
    border: 2px solid #485272;
    margin-right: 15px;
    line-height: 20px;
    padding: 5px 12px 2px;
}

.content_area .appeal .normal {
    font-weight: normal;
    font-size: 15px;
    padding-right: 20px;
}

.content_area .appeal .large {
    font-size: 20px;
    display: inline-block;
}

.content_area .appeal .highlights {
    font-size: 32px;
    display: inline-block;
}

.content_area .appeal .text {
    margin-top: 24px;
    display: inline-block;
}

.content_area .inner_content {
    padding: 0 30px;
}

.content_area .inner_content > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /* width: 680px; */
    border-top: 2px dotted #000b36;
    margin-top: 35px;
    padding-top: 30px;
}

.content_area .inner_content > div > div {
    /* display: flex; */
    /* justify-content: start; */
    margin-bottom: 20px;
    font-weight: bold;
    width: 31%;
}

.content_area .inner_content > div > div > div:first-child {
    background-color: #252e50;
    /* width: 96px; */
    line-height: 26px;
    text-align: center;
    /* margin-right: 15px; */
    padding-top: 6px;
    color: white;
    padding-bottom: 6px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.content_area .inner_content > div > div > div:nth-child(2) {
    margin: 0 8px 10px;
}

.flow p {
    margin: 0 0 60px 0;
    padding: 30px 50px 20px;
    position: relative;
}

.flow p::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 50px 420px 0 420px;
    border-color: #f1f5ff transparent transparent transparent;
    position: absolute;
    bottom: -50px;
    left: 4px;
}

.flow p:nth-child(1) {
    background-color: #f1f5ff;
}

.flow p:nth-child(1):after {
    border-color: #f1f5ff transparent transparent transparent;
}

.flow p:nth-child(2) {
    background-color: #d9e4ff;
}

.flow p:nth-child(2):after {
    border-color: #d9e4ff transparent transparent transparent;
}

.flow p:nth-child(3) {
    background-color: #a6baec;
}

.flow p:nth-child(3):after {
    border-color: #a6baec transparent transparent transparent;
}

.flow p:nth-child(4) {
    color: white;
    background-color: #555e94;
}

.flow p:nth-child(4):after {
    border-color: #555e94 transparent transparent transparent;
}


/* -------------------------------
visitors2
------------------------------- */

#visitors2 .c1 {
    background-image: url(../images/lp/1317119_s.jpg);
    background-size: cover;
    padding: 50px;
}

#visitors2 .c1 ul {
    background-color: rgba(255, 255 , 255, 0.9);
    padding: 50px;
    box-shadow: 1px 1px 8px 1px #ddd;
}

#visitors2 .c1 ul li {
    margin-bottom: 10px;
    font-weight: bold;
}

#visitors2 .c2 {
    width: 100%;
    text-align: center;
}

#visitors2 .c2 img {
    margin: 40px auto;
}

/* -------------------------------
appeal area
------------------------------- */

#appealarea {

}

#appealarea h4 {
    text-align: center;
}

#appealarea h5 {
    text-align: center;
    color: white;
    font-size: 30px;
    background-color: #00a0e9;
    padding: 15px 0;
    margin: 30px 0 40px;
    position: relative;
}

#appealarea h5::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate(-50%, 0);
    border-right: 15px solid transparent;
    border-top: 15px solid #00a0e9;
    border-left: 15px solid transparent; 
}

#appealarea .c1 {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

#appealarea .c2 {
    display: flex;
    justify-content: space-between;
}

#appealarea .c2 > div {
    width: 49%;
    font-size: 13px;
    line-height: 1.3;
}

#appealarea .c2 div img {
    width: 100%;
}

#appealarea .c2 div > div {
    font-size: 18px;
    color: #1c2660;
    font-weight: bold;
    margin-top: 20px;
    line-height: 1.5;
}

#appealarea .c3 {
    color: #1c2660;
    font-weight: bold;
    font-size: 20px;
}

#appealarea .c4 {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
}

#appealarea .c4 > div {
    text-align: center;
    box-shadow: 0 0 10px 2px #ddd;
    line-height: 1.1;
    width: 30%;
    padding: 20px 0;
}

#appealarea .c4 > div > div {
    margin: 40px 0 20px;
}

#appealarea .c4 img {
    width: 50%;
}

#appealarea .c4 h6 {
    color: #ea5504;
    font-size: 20px;
    margin-bottom: 6px;
}

#appealarea .c5 {
    width: 100%;
    text-align: center;
    margin: 40px 0 30px;
}

#appealarea .c5 img {
    max-width: 750px;
    margin: 0 auto;
}

#appealarea .c7 {
    width: 100%;
    text-align: center;
    margin: 40px 0 10px;
}

#appealarea .c7 img {
    max-width: 885px;
}

#appealarea .c8 {
    width: 100%;
    text-align: center;
    margin: 10px 0 10px;
    font-size: 14px;
}

#appealarea .c8 a {
    background-color: #fbb03b;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
    width: 60%;
    padding: 2%;
    margin: 0 auto;
    display: block;
    margin-bottom: 6px;
}

#appealarea .c8 a:hover {
    margin-top: 2px;
    opacity: 0.8;

}


/* -------------------------------
zone
------------------------------- */
#zone > div:nth-child(2) {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #ea5504;
}

#zone > div:nth-child(3) {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#zone > div:nth-child(3) > div {
    width: 50%;
}

#zone > div:nth-child(3) > div:nth-child(1) {
    border-bottom: 1px solid #ffd799;
    border-right: 1px solid #ffd799;

}
#zone > div:nth-child(3) > div:nth-child(2) {
    border-left: 1px solid #ffd799;
    border-bottom: 1px solid #ffd799;
}
#zone > div:nth-child(3) > div:nth-child(3) {
    border-right: 1px solid #ffd799;
    border-top: 1px solid #ffd799;
}
#zone > div:nth-child(3) > div:nth-child(4) {
    border-top: 1px solid #ffd799;
    border-left: 1px solid #ffd799;
}

#zone > div:nth-child(3) > div > div {
    width: 85%;
    margin: 0 auto 20px;
}

#zone > div:nth-child(3) > div:not(:last-child) > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#zone > div:nth-child(3) > div:not(:last-child) > div > div {
    width: 65%;
}

#zone > div:nth-child(3) > div:not(:last-child) > div > img {
    width: 30%;
}

#zone > div:nth-child(3) > div:last-child > div > img {
    width: 60%;
    margin: 20px auto 0;
    display: block;
}

#zone > div:nth-child(3) > div h5 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 20px;
}

#zone > div:nth-child(3) > div h5::after {
    content: "";
    display: block;
    border-bottom: 1px solid #000;
    width: 20%;
    margin: 0 auto;
    padding-bottom: 0.5rem;
}

/* -------------------------------
our action (prevent the spread of the Novel Coronavirus)
------------------------------- */

.our_action {
    text-align: center;
    margin-top: 20px;
}

.our_action a {
    display: inline-block;
    border: 1px solid #1c2660;
    color: #1c2660;
    font-size: 20px;
    padding: 10px 30px;
    text-decoration: none;
    border-radius: 4px;
}
.our_action a:hover {
    border-bottom: 1px solid #1c2660;
    background-color: #48528c;
    color: white;
}

.our_action a:hover span{
      border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.our_action a span {
 display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 20px 2px 0;
  border-top: 1px solid #1c2660;
  border-right: 1px solid #1c2660;
  transform: rotate(45deg);
}

.our_action_content > div {
    margin: 20px 0;
}

.our_action_content > div:nth-child(2) > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.our_action_content > div:nth-child(2) > div:first-child img {
    display: block;
    width: 24%;
}

.our_action_content > div:nth-child(2) > div:last-child > div {
    width: 49%;
    border: 1px solid #ddd;
    box-shadow: 0 0 13px 1px #eee;
    display: flex;
    margin-bottom: 15px;
    padding: 15px;
    align-items: center;
}

.our_action_content > div:nth-child(2) > div:last-child > div > div:first-child {
    font-size: 36px;
    text-align: center;
    margin-right: 15px;
}

.our_action_content > div:nth-child(3) {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.our_action_content > div:nth-child(4) {
    border: 1px solid #000b36;
}
.our_action_content > div:nth-child(4) > div {
    width: 80%;
    margin: 10px auto;
    text-align-last: left;
}

/* -------------------------------
sponsorship
------------------------------- */

#sponsorship > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

#sponsorship > div > div {
    margin-right: 13px;
}

#sponsorship > div > div img {
    height: 60px;
    margin-right: 22px;
    margin-left: 22px;
    margin-bottom: 10px;
}

#sponsorship > div a:last-child {
    margin-right: 0;
}

#sponsorship .sponsorship_list {
    text-align: center;
    display: block;
    margin-top: 15px;
    font-size: 17px;
}
/* -------------------------------
visitors
------------------------------- */
#visitors ul {
    border: 1px solid #f1f1f1;
    padding: 30px;
    margin: 20px;
    background-color: #fafafb;
}

#visitors ul li {
    margin-bottom: 11px;
}

/* -------------------------------
service
------------------------------- */

#service > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

#service > div > div {
    box-shadow: 0 0 5px #ddd;
    width: 32%;
    padding: 15px 20px;
    text-align: center;
}

#service > div > div > img {
    height: 110px;
}

#service > div > div > ul {
    text-align: left;
}

#service > div > div > h5 {
    font-size: 19px;
    color: #000b36;
    padding: 10px 0 20px;
}

#service > div > div > h5::after {
    content: "";
    display: block;
    border-bottom: 1px solid #000;
    width: 100px;
    margin: 0 auto;
    padding-bottom: 0.5rem;
}

#service ul {
    padding-left: 20px;
}

#service ul li {
    list-style: disc;
}

/* -------------------------------
conv
------------------------------- */

.conv {
    width: 82.2%;
    margin: 30px auto 80px;
    background-color: #fffcd5;
    display: flex;
    justify-content: center;
    padding: 25px 0;
    border-radius: 15px;
}

.conv a {
    background-image: url(../images/arrow_right.png);
    width: 35%;
    padding: 20px 0;
    text-align: center;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position-x: 94%;
    background-position-y: 50%;
}

.conv a:hover {
    opacity: 0.8;
}

.conv a:first-child {
    background-color: #fbb03b;
    margin-right: 20px;
}

.conv a:last-child {
    background-color: #8cc63f;
}

#for_visitors {
    margin-bottom: 45px;
}

#for_visitors h4 {
    font-size: 24px;
    color: #1c2660;
    line-height: 27px;
    margin-bottom: 20px;
}

#for_visitors h4 span {
    font-size: 18px;
    display: block;
}

#for_visitors > div {
    /* display: flex; */
    margin-top: 35px;
}

#for_visitors .content_box2 > div {
    display: flex;
}

#for_visitors .content_box2 > div > div:first-child {
    min-width: 30%;
    margin-right: 20px;
}

#for_visitors .content_box2 > div > div:last-child {
    min-width: 70%;
}

#access > a {
    width: 50%;
    min-width: 530px;
    background-color: #4ab8ac;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    text-align: center;
    padding: 30px 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 0;
    position: relative;
    text-decoration: none;
}

#access > a:hover {
    background-color: #7ccac1;
}

#access > a > div:nth-child(2) {
    font-size: 13px;
    font-weight: normal;
    margin-left: 25px;
}

#access > a > div:last-child {
    position: absolute;
    right: 20px;
    bottom: 35%;
}

#sns {
    margin: 0 auto;
}

#sns a {
    display: block;
    width: 528px;
    text-align: center;
    margin: 45px auto 0;
    border: 1px solid #4898ff;
    border-radius: 10px;
    padding: 13px 0 4px;
}

#sns a:hover {
    border: 1px solid #9bc6ff;
}

#sns img {
    height: 30px;
    width: auto;
}

footer #blank_space {
    width: 1080px;
    height: 40px;
    margin: 0 auto 40px;
    background-color: white;
}

#sub_page main {
    padding: 1px 0 0;
}

#sub_page .content_area section h3 {
    font-size: 24px;
    line-height: 24px;
    background-color: #1c2660;
    color: white;
    padding: 16px 30px;
    margin-bottom: 20px;
    /* margin-top: 50px; */
}

#sub_page footer #blank_space {
    height: 55px;
}

.content_area section h3 span.sub_text {
    margin-left: 0.5em;
}

#sub_page h4 {
    font-size: 1.2em;
    margin: 2em 0 1em;
}

#sub_page h5 {
    font-size: 1em;
    margin-top: 14px;
    text-decoration: underline;
}

#sub_page .content_index {
    padding-left: 1em;
}

#sub_page .content_index ul {
    list-style: disc !important;
    padding-top: 0.5em;
}

#sub_page .en {
    color: #5069ca;
}

#sub_page .description_text {
    margin-bottom: 40px;
}

footer {
    background-color: #1c2660;
    color: white;
    text-align: center;
    padding: 0px 0 75px;
}

#footer_organization {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

#footer_organization span {
    font-size: 14px;
    display: block;
    font-weight: normal;
}

#footer_tel div.box {
    display: none;
    /* display: inline-block; */
    border: 1px solid #fff;
    font-size: 12px;
    font-weight: normal;
    padding: 4px 17px;
    line-height: 12px;
    margin-right: 20px;
    vertical-align: middle;
}

#footer_tel span.tel_text {
    font-size: 20px;
    font-weight: normal;
    vertical-align: baseline;
}

#footer_tel span:last-child {
    font-size: 14px;
}

#footer_tel a {
    color: white;
    text-decoration: none;
    font-size: 27px;
    font-weight: bold;
}

#footer_adress {
    font-size: 14px;
}

#footer_adress span {
    font-size: 12px;
    display: block;
}

#footer_support {
    font-size: 20px;
    font-weight: 700;
    line-height: 23px;
    margin: 25px 0;
}

#footer_support span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    line-height: 17px;
}

#fixed_header {
    position: fixed;
    top: 0;
    height: 180px;
    background-color: #1c2660;
    text-align: center;
    width: 100%;
    padding-top: 20px;
    border-bottom: 12px solid #abdb6f;
}

#fixed_header #menu {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    background-color: #abdb6f;
}

#fixed_header #menu > div {
    width: 167px;
    font-size: 17px;
    font-weight: 700;
    border-left: 1px solid #000;
    height: 75px;
    padding-top: 7px;
}

#fixed_header #menu > div.active {
    background-color: #ffb600;
}

#fixed_header #menu > div.inactive a {
    color: #74ab2f;
}

#fixed_header #menu > div:last-child {
    border-right: 1px solid #000;
}

#fixed_header #menu span {
    display: block;
    font-size: 12px;
    font-weight: bold;
    line-height: 15px;
    min-height: 30px;
}

#fixed_header #menu a {
    text-decoration: none;
}

#fixed_footer {
    position: fixed;
    bottom: 0;
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #000b36;
    z-index: 20;
}

#fixed_footer > div {
    /* width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end; */
}

#fixed_footer a.fixed_footer_wrap {
    display: flex;
    justify-content: center;
}

#fixed_footer a.fixed_footer_wrap {
    width: 470px;
    color: #000;
    height: 100%;
    text-align: center;
    padding-top: 14px;
    background-image: url(../images/arrow_right.png);
    background-repeat: no-repeat;
    background-position-x: 94%;
    background-position-y: 50%;
}

#fixed_footer a.fixed_footer_wrap:hover {
    opacity: 0.9;
}
#fixed_footer > a:first-child {
    background-color: #fbb03b;
}

#fixed_footer > a:nth-child(2) {
    background-color: #8cc63f;
}

#fixed_footer div#back_to_top {
    width: 60px;
    background-color: #808080;
    text-align: center;
    padding-top: 20px;
}

#fixed_footer a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    line-height: 18px;
    padding-top: 7px;
    padding-left: 7px;
}

#fixed_footer a .text {
    padding-top: 7px;
}

#fixed_footer a .img {
    padding-right: 7px;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(150px);
    }

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

.slideInRight {
    animation-name: slideInRight;
    animation-duration: 1s;
    animation-timing-function: ease;
}

#press .h1_pagettl {
    background-color: #0d1231;
    padding: 20px 40px;
}

#press .h1_pagettl h1 {
    line-height: 1.4;
    color: #ffffff;
    font-size: 26px;
    letter-spacing: 0.2em;
    font-weight: 700;
}

#press .h1_ttltxt p {
    line-height: 1;
    color: #ffffff;
    font-size: 10px;
    letter-spacing: 0.2em;
    padding-top: 10px;
    margin-top: 0px;
}

#press h2.style_h201 {
    padding: 18px 25px 18px 30px;
    margin-bottom: 20px;
    margin-top: 40px;
    border-left: 8px solid #fbb03b;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    background-color: #1c2660;
    background-size: 8px;
}

#press .content_area #contact_press h3.style_h303 {
    padding: 10px 10px 10px 20px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    background: #ffffff url(../images/bg_h302.svg) left center no-repeat;
    background-size: 8px;
    border: 1px solid #00275d;
    color: #00275d;
}

#press h4.style_h401 {
    padding: 10px 10px 10px 20px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: normal;
    line-height: 1.5;
    background: #ffffff url(../images/bg_h401.svg) left center no-repeat;
    background-size: 8px;
    border-bottom: 1px dashed #e6e6e6;
    color: #00275d;
}

#press .content_block_upper {
    display: flex;
    justify-content: space-between;
}

#press .content_block_upper > div:first-child {
    flex: 2;
    margin-right: 30px;
}

#press .content_block_upper > div:last-child {
    flex: 1.4;
}

#press .tel_no {
    font-size: 30px;
    font-weight: 700;
}

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

.mainbox_wrap > div:first-child {
    flex: 3;
    /* margin-right: 30px; */
}

.mainbox_wrap > div:last-child {
    /* width: 260px; */
    flex: 1;
}

#press #sidebox h2 {
    background: #fbb03b;
    text-align: center;
    color: #000000;
    line-height: 1;
    padding: 40px 0;
    border-radius: 8px;
    font-size: 18px;
}

#press #sidebox h2::after {
    content: url(../images/bg_tri_black.svg);
    display: block;
    width: 16px;
    height: 18px;
    vertical-align: middle;
    margin: 0 auto;
}

#press #sidebox {
    width: 300px;
    float: right;
    margin: 40px 0 0;
    padding: 0 20px;
}

#press #sidebox .side_menu ul li a.current {
    background: url(../images/side_li02.png) left center no-repeat;
    color: #e95515;
}

#press #sidebox .side_menu ul li a {
    background: url(../images/side_li01.png) left center no-repeat;
    padding: 10px 10px 10px 15px;
    border-bottom: 1px dashed #acacac;
}

#press #sidebox .side_menu ul li a {
    display: block;
    text-decoration: none;
}

#press .content_block_lower {
    margin-bottom: 40px;
}
