@charset "UTF-8";
/*
css設定 @charsetが消されるsass仕様へのハック用コメントです。削除しないでください。新規作成時も必須！
*/
body {
    font-feature-settings: "palt";
    overflow-x: hidden;
}

.pc {
    display: none;
}

@media (min-width: 768px) {
    .sp {
        display: none;
    }
    .pc {
        display: block;
    }
}
.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.4s ease, transform 0.6s ease;
}
.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.4s ease, transform 0.6s ease;
}
.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.4s ease, transform 0.6s ease;
}
.fade-up.show,
.fade-left.show,
.fade-right.show {
    opacity: 1;
    transform: translate(0,0);
}

.what_ttl {
    position: relative;
    font-size: 22px;
    letter-spacing: 3px;
    padding-top: 20px;
    padding-bottom: 4px;
    text-align: center;
}
.what_ttl:before {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    bottom: 0px;
    width: 40px;
    height: 4px;
    background: #fabe00;
    transform: translate(-50%, 50%);
}
@media (min-width: 768px) {
    .what_ttl {
        font-size: 40px;
        letter-spacing: 4px;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    .what_ttl:before {
        bottom: 44px;
        width: 100px;
        height: 5px;
    }
}

.kv_container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.85;
    display: flex;
    justify-content: center;
    overflow: hidden;
}
.kv_light {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 50;
}
.kv_light img{
    position: absolute;
    opacity: 0;
    bottom: 19%;
    right: 23.5%;
    width: 40px;
    animation: blink 0.3s infinite ease-in-out;
    animation-duration: 6.2s;
    animation-delay: 4.5s;
}
@keyframes blink {
  0%, 100% { opacity: 0; }
  30% { opacity: 1; }
  80% { opacity: 1; }
  90% { opacity: 0.3; }
}
.kv_img {
    background: linear-gradient(90deg, #133664 0%, #101522 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.kv_img img {
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    animation: kv_img 1.6s ease 3.5s forwards;
}
@keyframes kv_img {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.kv_txt {
    width: 90%;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1120px;
    z-index: 20;
}
.kv_ttl {
    color: #ffffff;
    font-size: clamp(28px, 3.4vw, 42px);
    font-weight: bold;
    line-height: 1;
    letter-spacing: 2px;
    opacity: 0;
    transform: translateX(100px);
    animation: kv_ttl 0.8s ease 0.0s forwards;
}
@keyframes kv_ttl {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.kv_year {
    color: #ffffff;
    font-size: clamp(46px, 6.8vw, 80px);
    font-weight: bold;
    line-height: 1;
    letter-spacing: 2px;
    padding-top: 10px;
    opacity: 0;
    transform: translateY(60px);
    animation: kv_year 0.6s ease 0.2s forwards;
}
@keyframes kv_year {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.kv_border{
    position: relative;
    margin-top: 16px;
}
.kv_border::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60%;
    height: 4px;
    opacity: 0;
    background: linear-gradient(to right, #fabe01 0%, #fabe01 70%, rgba(250, 190, 1, 0) 100%);
    animation: kv_border 0.6s ease 0.8s forwards;
}
@keyframes kv_border {
	0%{
		opacity: 0;
        width: 0px;
	}
	100%{
		opacity: 1;
        width: 60%;
	}
}
.kv_msg {
    position: relative;
    margin-top: 40px;
    max-width: 210px;
    height: auto;
    opacity: 0;
    animation: kv_msg 1.4s ease 1.4s forwards;
}
.kv_msg img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.kv_msg img:first-of-type {
    animation: kv_msg 0.4s ease 1.8s forwards;
}
.kv_msg img:nth-of-type(2) {
    transform-origin: 10% 70%;
    animation: kv_msg-emphasis 1.6s ease 2.3s forwards;
}
.kv_msg img:last-of-type {
    animation: kv_msg 0.6s ease 2.7s forwards;
}
@keyframes kv_msg {
  0% {
    opacity: 0;
    scale: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
@keyframes kv_msg-emphasis {
  0% {
    opacity: 0;
    scale: 1;
  }
  70% {
    opacity: 1;
    scale: 1;
  }
  72% {
    opacity: .8;
    scale: 1.1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}
.lead {
    font-size: 16px;
    line-height: 1.75;
    padding-top: 15px;
    text-align: center;
}
.lead:first-child {
    padding-top: 30px;
}
@media (min-width: 768px) {
    .kv_container {
        height: auto;
        aspect-ratio: 1 / 0.26;
        align-items: center;
    }
    .kv_light img{
        bottom: 17%;
        right: 36.5%;
        width: 80px;
    }
    .kv_txt {
        margin-top: 0;
    }
    .kv_border::after {
        width: 30%;
    }
    @keyframes kv_border {
        0%{
            opacity: 0;
            width: 0px;
        }
        100%{
            opacity: 1;
            width: 30%;
        }
    }
    .kv_msg {
        margin-left: 0;
        margin-right: 0;
        max-width: 280px;
        height: 75px;
    }
    .lead {
        font-size: 18px;
        line-height: 2;
        padding-top: 15px;
    }
    .lead:first-child {
        padding-top: 40px;
    }
}

#circle_bg {
    position: fixed;
    inset: 0;
    margin: auto;
    width: 50vmax;
    height: 50vmax;
    background: url("../img/link_bg.svg") center center no-repeat;
    background-size: contain;
    opacity: 0;
    z-index: -2;
}
#circle_bg.is-visible {
    opacity: 0.8;
    animation: 
      scaleIn 1.4s forwards,
      rotateLoop 80s linear infinite 2.4s;
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotateLoop {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.msg_container {
    margin: 0 auto;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 94%;
    text-align: center;
}
.msg_txt {
    margin-top: 10px;
    text-align: left;
}
@media (min-width: 768px) {
    .msg_container {
        width: 100%;
        padding-bottom: 0;
    }
    .msg_txt {
        font-size: 16px;
        text-align: center;
    }
}
.link_container {
    position: relative;
    padding-bottom: 80px;
    text-align: center;
    overflow-x: hidden;
}
.link_ttl {
    font-size: 16px;
    text-align: center;
}
.link_ttl-emphasis {
    font-size: 170%;
}
.link_list {
    margin-top: 40px;
}
.link_list-item {
    border-radius: 20px;
    background: rgba(255,255,255,.8);
    box-shadow: 0px 0px 6px rgba(184,197,203,0.6);
    padding-bottom: 20px;
}
.link_list-item:last-of-type {
    margin-top: 40px;
}
.link_life {
    position: relative;
}
.link_subttl {
    font-size: 26px;
    padding-top: 30px
}
.link_subttl-emphasis {
    color: #FABE00;
    font-size: 160%;
}
.link_region {
    display: flex;
    flex-wrap: nowrap;
    line-height: 1;
    border: 1px solid #526D7B;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 92%;
    text-align: center;
}
.link_region-ttl {
    background: #526D7B;
    color: #ffffff;
    font-weight: bold;
    padding: 10px 8px;
    flex-basis: 30%;
    max-width: 30%;
}
.link_region-biz {
    padding: 10px 8px;
    width: 100%;
}
.link_service {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 92%;
}
.link_list-item .link_service a {
    flex-basis: 47.4%;
    max-width: 47.4%;
}
@media (min-width: 768px) {
    .link_container {
        padding-bottom: 120px;
        text-align: center;
    }
    .link_ttl {
        font-size: 28px;
        padding-top: 0;
    }
    .link_list {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        margin-top: 40px;
    }
    .link_list-item {
        padding-bottom: 40px;
    }
    .link_list-item:last-of-type {
        margin-top: 0;
    }
    .link_subttl {
        font-size: 36px;
    }
    .link_subttl-emphasis {
        font-size: 160%;
    }
    .link_region {
        width: 74%;
    }
    .link_region-ttl {
        padding: 10px 20px;
        flex-basis: 25%;
        max-width: 25%;
    }
    .link_service {
        width: 74%;
    }
}

.base_container {
    position: relative;
    background: #133664;
    padding-top: 40px;
    padding-bottom: 40px;
}
.base_container .what_ttl {
    color: #ffffff;
    padding-top: 0;
}
.base_list {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    gap: 16px;
    padding-bottom: 10px;
}
.base_list::-webkit-scrollbar {
  display: none;
}
.base_item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 10px;
    margin-top: 20px;
    padding: 20px;
    flex: 0 0 70%;
}
.base_item img {
    display: block;
    margin: auto auto 0;
    max-width: 50%;
}
.base_item-ttl {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
}
.base_item-txt {
    margin-bottom: 16px;
}
.dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}
.dots button {
    width: 48px;
    height: 4px;
    border: none;
    background: #ffffff;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    display: block;
}

.dots button.active {
    background: #fabe00;
}
@media (min-width: 768px) {
    .base_container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .base_list {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        z-index: 2;
        overflow: hidden;
    }
    .base_item {
        flex-basis: calc((100% - 15%) / 3);
        margin-top: 0;
        padding: 30px 20px;
    }
    .base_item img {
        max-width: 80%;
    }
    .dots {
        display: none;
    }
}

.portfolio_container {
    background: url("../img/portfolio_bg.jpg") 0 0 no-repeat;
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 40px;
    overflow-x: hidden;
}
.portfolio_ttl {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}
.portfolio_ttl span {
    background: url("../img/portfolio_ttl_bg.svg") 0 0 no-repeat;
    padding-left: 40px;
}
.portfolio_point {
    text-align: left;
}
.portfolio_point-item {
    line-height: 1.6;
}
.portfolio_graph {
    margin-top: 60px;
    text-align: center;
}
@media (min-width: 768px) {
    .portfolio_container {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .portfolio_ttl {
        font-size: 34px;
    }
    .portfolio_point {
        text-align: center;
    }
    .portfolio_graph {
        margin-top: 40px;
    }
}

.download_item {
    background: #ffffff;
    border-radius: 16px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 10px;
    text-align: center;
}
.download_btn {
    position: relative;
    display: block;
    background: #FABE00;
    border: 2px solid #ffffff;
    color: #133664;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    overflow: hidden;
}
.download_btn:before {
	position: absolute;
	content: '';
	display: inline-block;
	top: -180px;
	left: 0;
	width: 30px;
	height: 100%;
	background-color: #ffffff;
	transition: 150ms;
}
.download_btn:hover:before {
	animation: shine 4.5s ease-in-out;
}
@keyframes shine {
	0%  { transform: scale(0) rotate(45deg); opacity: 0.5;}
	5%  { transform: scale(4) rotate(45deg); opacity: 1;}
	10%  { transform: scale(50) rotate(45deg); opacity: 0;}
	100% { transform: scale(0) rotate(45deg); opacity: 0;}
}
.download_btn:hover {
    opacity: 1;   
}
.download_btn:after{
    position: absolute;
    content: "";
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: url("../img/ico_pdf.svg") center no-repeat;
    background-size: contain;
    width: 36px;
    height: 36px;
}
@media (min-width: 768px) {
    .download_item {
        margin-top: 40px;
        padding: 20px;
        width: 70%;
    }
    .download_txt {
        font-size: 1.0rem;
    }
}