@charset "UTF-8";
@import "style.css";

main {
    padding: 0 0 0rem;
}

section {
	padding: 7rem 0 0;
}

#kv .text {
    position: absolute;
    width: 60%;
    top: 50%;
    left: 0;
    transform: translate(5%, -50%);
    -webkit-transform: translate(5%, -50%);
    -ms-transform: translate(5%, -50%);
    z-index: 10;
	color: #333;
}
#kv .text h2 {
	text-align: left;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 3vw;
	line-height: 1.55;
    margin-bottom: 10px;
    text-shadow: 0 0 12px rgba(255, 255, 255, .75);
}
#kv .text p.en {
    font-family: "Zen Old Mincho", serif;
    font-size: 1.35vw;
    line-height: 1.55;
    margin-bottom: 50px;
    text-shadow: 0 0 12px rgba(255, 255, 255, .75);
}
#kv p.more a {
    width: 35%;
    margin: 0;
	font-family: "Zen Old Mincho", serif;
	font-weight: 400;
	font-style: normal;
    font-size: 1rem;
}
#kv ul.btn {
    position: absolute;
    right: 2.5%;
	bottom: 5%;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3%;
    width: 800px;
}
#kv ul.btn li {
	width: calc(97% / 2);
}
#kv ul.btn li a {
    display: block;
    padding: 10% 10%;
    background: rgba(255, 255, 255, .9);
    border: solid 1px #CCC;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    -ms-transition: 0.8s;
    transition: 0.8s;
}
#kv ul.btn li a:hover {
	color: #FFF;
    background: rgba(178, 0, 0, .75);
}
#kv ul.btn li a span {
	position: relative;
    font-size: 20px;
    line-height: 1;
    letter-spacing: .15em;
    font-weight: 400;
    padding-left: 80px;
    display: block;
}
#kv ul.btn li a span::before {
    content: "";
    position: absolute;
    width: 65px;
    height: 65px;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
#kv ul.btn li a.application span::before {
	background: transparent url(../img/icon_application.png) no-repeat center center;
	background-size: cover;
}
#kv ul.btn li a.report span::before {
	background: transparent url(../img/icon_report.png) no-repeat center center;
	background-size: cover;
}
#kv ul.btn li a span small {
	display: block;
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 0.05em;
}
#kv ul.btn li a:hover {
	text-decoration: none;
}
@media screen and (max-width: 1200px) {
#kv ul.btn {
    width: 60%;
}
#kv ul.btn li a {
    padding: 10% 5%;
}
#kv ul.btn li a span {
    padding-left: 20%;
}
#kv ul.btn li a span::before {
	width: 17%;
	height: auto;
	aspect-ratio: 1 / 1;
}
#kv ul.btn li a.application span::before {
	background-size: contain;
}
#kv ul.btn li a.report span::before {
	background-size: contain;
}






}
#news ul li {
	margin-bottom: 15px;
}
#news ul li small {
    font-size: .75rem;
	display: inline-block;
	margin-right: 20px;
}
#news ul li a {
    font-weight: 700;
}
#other {
	background: transparent url(../img/other_bg.png) no-repeat center center;
	background-size: cover;
    padding: 7rem 0;
    margin: 7rem 0;
	overflow: hidden;
}
#other .inner {
    width: 45vw;
    margin: 0 5% 0 0;
    float: right;
}
#other .inner p {
	font-weight: 600;
	margin-bottom: 2rem;
}
#other .inner ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 3%;
    width: 100%;
}
#other .inner ul li {
    width: calc(94% / 3);
	text-align: center;
}
#other .inner ul li:nth-child(1),
#other .inner ul li:nth-child(2),
#other .inner ul li:nth-child(3) {
	margin-bottom: 3%;
}
#other .inner ul li a {
	color: #333;
	display: block;
    font-size: .95rem;
    font-weight: 600;
    border: solid 1px #333;
    border-radius: 40px;
	line-height: 1;
	width: 100%;
	margin: 0 auto;
	padding: 20px 0;
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	-ms-transition: 0.8s;
	transition: 0.8s;
    position: relative;
	background: rgba(255, 255, 255, .9);
}
#other .inner ul li a:hover {
    color: #FFF;
    background-color: #333;
    text-decoration: none;
}
#other .inner ul li a::after {
    position: absolute;
    top: 0px;
    bottom: 0;
    margin: auto;
    content: "";
    right: 20px;
    width: 20px;
    height: 20px;
    background: #333;
    border-radius: 50%;
    z-index: 9;
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    -ms-transition: 0.8s;
    transition: 0.8s;
}
#other .inner ul li a:hover::after {
    background: #FFF;
}
#other .inner ul li a span {
    position: relative;
    display: block;
}
#other .inner ul li a span::before,
#other .inner ul li a span::after {
	-webkit-transition: 0.8s;
	-moz-transition: 0.8s;
	-o-transition: 0.8s;
	-ms-transition: 0.8s;
	transition: 0.8s;
	z-index:10;
}
#other .inner ul li a span::before {
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    content: "";
    right: 26.5px;
    width: 8px;
    height: 1.5px;
    background: #FFF;
}
#other .inner ul li a:hover span::before {
    background: #333;
}
#other .inner ul li a span::after {
    position: absolute;
    top: 0px;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    right: 26.5px;
    width: 6.5px;
    height: 6.5px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#other .inner ul li a:hover span::after {
    border-top: 2px solid #333;
    border-right: 2px solid #333;
}


















@media screen and (max-width: 900px) {
}

@media screen and (max-width: 764px) {
section {
	padding: 5rem 0 0;
}
#kv .text {
    width: 80%;
}
#kv .text h2 {
	font-size: 5vw;
	line-height: 1.4;
	text-shadow: 0 0 12px rgba(255, 255, 255, .75), 0 0 12px rgba(255, 255, 255, .75), 0 0 12px rgba(255, 255, 255, .75), 0 0 12px rgba(255, 255, 255, .75), 0 0 12px rgba(255, 255, 255, .75);
}
#kv .text p.en {
    font-size: 2.35vw;
    margin-bottom: 25px;
}
#kv p.more a {
    width: 60%;
    font-size: 3vw;
	background: rgba(255, 255, 255, .9);
}
#kv ul.btn {
    width: 90%;
    bottom: -3.5em;
    left: 0;
    right: 0;
    margin: 0 auto;
}
#kv ul.btn li a span {
    padding-left: 20%;
    font-size: 3vw;
}
#kv ul.btn li a span small {
    font-size: 1.75vw;
    letter-spacing: 0.05em;
}
#news {
        padding: 6rem 0 0;
}
#other {
    background: transparent url(../img/other_bg.png) no-repeat 15% center;
    background-size: cover;
    padding: 5rem 0;
    margin: 5rem 0 0;
}
#other .inner {
    width: 75vw;
    background: rgba(255, 255, 255, .7);
    margin: 0 0 0 0;
    padding: 5%;
}
#other .inner ul li {
    width: calc(97% / 2);
    text-align: center;
}
#other .inner ul li a {
	padding: 10px 0;
   font-size: 10px;
}
#other .inner ul li a::after {
    right: 10px;
    width: 15px;
    height: 15px;
}
#other .inner ul li a span::before {
    right: 14px;
    width: 6px;
}
#other .inner ul li a span::after {
    right: 14.5px;
    width: 4.5px;
    height: 4.5px;
}
}
