@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
body{
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "-apple-system", BlinkMacSystemFont, "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "メイリオ", "Hiragino Kaku Gothic ProN", "MS PGothic", Osaka, "sans-serif";
	letter-spacing: 0.1em;
	color: #1d3f61;
	font-size: 14px;
	line-height: 28px;
	font-weight: 500;
	background: #fff;
	-webkit-text-size-adjust: 100%;
	font-feature-settings : "palt";
	-webkit-tap-highlight-color:transparent;
}
html{
	height: 100%;
	scroll-behavior: smooth;
}
img,
.img100{
	display: block;
	max-width: 100%;
	width:100%;
	height:auto;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-size: 1rem; 
  font-weight: inherit;
}
a{	text-decoration: none;
	transition: .1s;
	cursor: pointer;}
a:link {color: #1d3f61;}
a:visited {color: #1d3f61;}
a:hover {color: #1d3f61;}
a:active {color: #1d3f61;}
/* 点滅 */
.blinking{
	-webkit-animation:blink 2s infinite;
    -moz-animation:blink 2s infinite;
    animation:blink 2s infinite;}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}}
.pc{
	display: none;}
.sp{
	display: block;}
@media only screen and (min-width: 750px) {
.pc{
	display: block;}
.sp{
	display: none;}
}
*{
	box-sizing: border-box;}
/************************************
******header
************************************/

.relative{
	position: relative;
}
header{
	position: fixed;
	z-index: 100;
	width: 100%;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: #fff;
	box-shadow: 0 8px 10px -3px rgba(0,0,0,0.2);
}
.header_inner{
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 16px 12px;
}
.header_inner h1{
	max-width: 120px;
	margin: 0 0 0;
}
.header_bt_wrap{
	display: none;
}
@media only screen and (min-width: 750px) {
.header_inner{
	padding: 8px 12px;
}
.header_inner h1{
	max-width: 128px;
	margin: -4px 0 0;
}
.header_bt_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
ul.header_nav{
	width: 224px;
	margin: 0 20px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	list-style: none;
}
ul.header_nav li{
	margin: 0;
	padding: 0;
}
ul.header_nav li a{
	font-weight: bold;
	font-family: Arial, Helvetica, "sans-serif";
	letter-spacing: 0;
	font-size: 13px;
	transition: .2s;
}
ul.header_nav li a:hover{
	opacity: 0.7;
}
.header_bt{
	width: 320px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 4px 0 0;
}
.header_bt1,
.header_bt2{
	max-width: 160px;
	width: 50%;
}
.header_bt1 a,
.header_bt2 a{
	display: block;
	width: 100%;
	padding: 27.799227799% 0 0;
	transition: .2s;
}
.header_bt1 a:hover,
.header_bt2 a:hover{
	opacity: 0.7;
}
.header_bt1 a{
	background: url("../img/head_bt1.webp")no-repeat center center;
	background-size: cover;
}
.header_bt2 a{
	background: url("../img/head_bt2.webp")no-repeat center center;
	background-size: cover;
}
}
@media only screen and (min-width: 1120px) {
.header_inner{
	padding: 16px 20px;
}
.header_inner h1{
	max-width: 200px;
	margin: -8px 0 0;
}
ul.header_nav{
	width: 300px;
	margin: 0 32px 0 0;
}
ul.header_nav li a{
	font-size: 16px;
}
.header_bt{
	width: 448px;
	padding: 4px 0 0;
}
.header_bt1,
.header_bt2{
	max-width: 224px;
}
}
/*************** drawer ***************/
#drawer {
	display: none;
}
label {
	cursor: pointer;
	position: fixed;
}
.open {
	display: block;
	position: fixed;
	z-index: 102;
	top: 6px;
	right: 6px;
	width: 60px;
	height: 40px;
	transition: background .3s, transform .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before,
.open::after {
	content: "";
}
.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	right: 30%;
	width: 40%;
	border-bottom:2px solid #1d3f61;
	transition: transform .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
	transform: translateY(-5px);
}
.open::after {
	transform: translateY(5px);
}
.close {
	max-width: 1200px;
	margin: 0 auto;
	z-index: 100;
	inset: 0;
	pointer-events: none;
	transition: background .3s;
}
#drawer:checked + .open {
	transform: translateX(-0);
}
#drawer:checked + .open span {
	transform: scaleX(0);
}
#drawer:checked + .open::before {
	transform: rotate(135deg) scaleX(1.2);
}
#drawer:checked + .open::after {
	transform: rotate(-135deg) scaleX(1.2);
}
#drawer:checked ~ .close {
	pointer-events: auto;
	background: rgba(6,108,255,0.1);
}
.menu {
	z-index: 101;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 280px;
	height: 100%;
	margin: 0;
	padding: 32px 10px 10px;
	box-sizing: border-box;
	background: #fff;
	transform: translateX(100%);
	transition: transform .3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu ul {
	margin: 0;
	padding: 0;
}
.menu li {
	line-height: 1.4;
}
.menu li:not(:first-child) {
	border-top: 1px solid rgba(255,255,255,.6);
}
#drawer:checked ~ .menu {
	transform: none;
}
ul.drawer_menu,
ul.drawer_menu li ul{
	width: 90%;
	margin: 0 auto;
	list-style: none;
	padding: 0;
}
ul.drawer_menu li ul{
	padding: 8px 0;
}
ul.drawer_menu li{
	margin: 12px 0;
}
ul.drawer_menu li ul li{
	margin: 6px 0;
}
ul.drawer_menu a{
	color: #1d3f61;
	font-size: 14px;
	line-height: 22px;
	font-weight: 700!important;
	transition: .4s;
}
ul.drawer_menu_below {
	width: 90%;
	margin: 24px auto;
	list-style: none;
	padding: 0;
}
ul.drawer_menu ul li a,
ul.drawer_menu_below a{
	color: #1d3f61!important;
	font-size: 11px;
	line-height: 20px;
	font-weight: 700!important;
	transition: .4s;
}
.drawer_title_wrap{
	width: 90%;
	margin: 0 auto;
}
.drawer_title_sub{
	font-weight: 700;
	font-size: 10px;
}
.drawer_title{
	font-weight: 700;
	font-size: 23px;
	line-height: 24px;
}
.drawer_logo{
	width: 90%;
	margin: 0 auto;
}
.drawer_logo img{
	display: block;
	max-width: 180px;
}
.drawer_small{
	font-size: 10px;
	line-height: 12px;
	font-family: Arial, Helvetica, "sans-serif";
	opacity: 0.5;
	margin: 0 0 0 8px;
}
@media screen and (min-width: 750px) {
.open {
	display: none;
}
}
/*************** top_fv ***************/
.top_fv{
	background: url("../img/news_list_bg_sp.webp")no-repeat center top;
	background-size: cover;
}
.top_fv_inner{
	position: relative;
	z-index: 1;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 150px 12px 60% 20px;
}
h2.top_h2{
	width: fit-content;
	font-family: Arial, Helvetica, "sans-serif";
	font-style: italic;
	font-weight: bold;
	font-size: 54px;
	line-height: 64px;
	letter-spacing: 0.01em;
	background: linear-gradient(90deg,#0068ff 40%, #a4ecff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.fv-container {
  width: 92%;
  max-width: 740px;
  margin: 0 auto;
  aspect-ratio: 776.2 / 576.6;
  position: absolute;
  overflow: hidden;
	left: 0;
	right: 0;
	bottom: 5%;
}
.fv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
	-webkit-mask-image: url('../img/top_fv.svg');
  mask-image: url('../img/top_fv.svg');
webkit-mask-mode: alpha;
  mask-mode: alpha;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
@media screen and (min-width: 750px) {
.top_fv{
	background: url("../img/news_list_bg.webp")no-repeat center center;
	background-size: cover;
}
.top_fv_inner{
	padding: 180px 32px 240px;
}
h2.top_h2{
	font-size: 56px;
	line-height: 80px;
}
.fv-container {
  width: 100%;
	right: 5%;
	left: auto;
	bottom: 5%;
}
}
@media screen and (min-width: 1000px) {
.top_fv_inner{
	padding: 200px 80px 260px;
}
h2.top_h2{
	font-size: 88px;
	line-height: 120px;
}
}
/*************** top_product ***************/
.top_product_wrap{
	background: url("../img/top_product_bg.webp")no-repeat center center;
	background-size: cover;
}
.top_product_inner{
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
}
.top_product_text{
	padding: 32px 4px 68px;
	font-size: 90%;
}
.top_product_text h4{
	font-size: 20px;
	line-height: 32px;
	font-weight: bold;
	margin: 0 0 12px;
}
.top_product_circle {
    position: relative;
    z-index: 1;
    max-width: 790px;
	width: 100%;
	height: auto;
    margin: 0 auto;
    animation: ferris-rotate 16s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.top_product_part {
    max-width: 231px;
    width: 29.24%;
    position: absolute;
    z-index: 2;
    animation: item-rotate-reverse 16s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes ferris-rotate {
    0%, 18.75%   { transform: rotate(0deg); }
    25%, 43.75%  { transform: rotate(90deg); }
    50%, 68.75%  { transform: rotate(180deg); }
    75%, 93.75%  { transform: rotate(270deg); }
    100%         { transform: rotate(360deg); }
}
@keyframes item-rotate-reverse {
    0%, 18.75%   { transform: rotate(0deg); }
    25%, 43.75%  { transform: rotate(-90deg); }
    50%, 68.75%  { transform: rotate(-180deg); }
    75%, 93.75%  { transform: rotate(-270deg); }
    100%         { transform: rotate(-360deg); }
}
.top_product_part1 { top: 0; left: 0; right: 0;margin: auto;}
.top_product_part4 { top: 35%; right: 0; transform: translate(50%, -50%); }
.top_product_part3 { bottom: 0; left: 0; right: 0;margin: auto; }
.top_product_part2 { top: 35%; left: 0; transform: translate(-50%, -50%); }
.text_display {
    text-align: center;
    position: absolute;
    top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin:auto;
    z-index: 10;
	max-width: 280px;
	width: 38%;
	height: fit-content;
	font-size: 2.8vw;
	line-height: 4.8vw;
	color: #174ae1;
}
#product_title{
	position: relative;
}
#product_title::before{
	content: "";
	display: block;
	position: absolute;
	width: 12%;
	height: 2px;
	background: #174ae1;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
#product_sub{
	position: absolute;
	font-family: Arial, Helvetica, "sans-serif";
	font-style: italic;
	font-weight: bold;
	font-size: 29vw;
	line-height: 29vw;
	top: -30%;
	right: 2%;
	color: #99caf2;
	opacity: 0.3;
	transition: .8s;
	mix-blend-mode:multiply;
}
.top_product_bottom{
	height: 100px;
}
#product_bottom{
	position: absolute;
	font-family: Arial, Helvetica, "sans-serif";
	font-style: italic;
	font-weight: bold;
	font-size: 12vw;
	line-height: 12vw;
	bottom: 35%;
	left: 0;
	color: #99caf2;
	opacity: 0.3;
	mix-blend-mode:multiply;
}
        .ticker-container {
            width: 100%;
            overflow: hidden;
            padding: 20px 0 30px;
            white-space: nowrap;
            position: relative;
        }
        .ticker-wrapper {
            display: flex;
            width: fit-content;
            animation: ticker-move 60s linear infinite;
        }
        .ticker-content {
            display: flex;
        }
        .ticker-item {
            color: #1d3f61;
            font-size: 1.1rem;
            padding-right: 2px;
        }
        @keyframes ticker-move {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        .ticker-container:hover .ticker-wrapper {
            animation-play-state: paused;
        }
@media screen and (min-width: 750px) {
.top_product_inner{
	padding: 0 32px;
}
.text_display {
	font-size: 140%;
	line-height: 2;
}
#product_title::before{
	width: 32px;
}
#product_sub{
	font-size: 240px;
	line-height: 180px;
}
}
@media screen and (min-width: 1000px) {
.top_product_inner{
	padding: 0 80px;
}
#product_sub{
	font-size: 280px;
}
#product_bottom{
	font-size: 120px;
	line-height: 120px;
}
}
/*************** news_list ***************/
.news_list_wrap{
	background: url("../img/news_list_bg_sp.webp")no-repeat center bottom;
	background-size: cover;
}
.news_list_inner{
	position: relative;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 100px 20px 60px;
}
.news_list_flex{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap:0;
	margin: 24px 0 0;
}
h3.top_h3{
	width: fit-content;
	font-family: Arial, Helvetica, "sans-serif";
	font-style: italic;
	font-weight: bold;
	font-size: 54px;
	line-height: 64px;
	letter-spacing: 0.01em;
	background: linear-gradient(90deg,#0068ff 40%, #a4ecff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.top_h3_jp{
	font-style: normal;
	font-size: 15px;
	line-height: 23px;
	padding: 0 6px;
}
.news_list_box{
	position: relative;
	z-index: 1;
	width:100%;
	max-width: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0 0 32px;
}
.news_list_box a{
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
.news_list_box_pic {
	width: 30%;
	margin: 0 0 16px;
	background: #fff;
}
.news_list_box_pic img{
	width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
	transition: .3s;
}
.news_list_box_text{
	width: 66%;
}
.news_list_box_date{
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 11px;
	line-height: 14px;
	letter-spacing: 0;
	transition: .3s;
}
.news_list_box_h4{
	font-weight: bold;
	font-size: 105%;
	line-height: 1.6;
	margin: 4px 0 4px;
	transition: .3s;
}
.news_list_box_excerpt{
	font-size: 90%;
	line-height: 1.8;
	display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
	transition: .3s;
}
.news_list_box a:hover ~ .news_list_box_pic img,
.news_list_box a:hover ~ .news_list_box_date,
.news_list_box a:hover ~ .news_list_box_h4,
.news_list_box a:hover ~ .news_list_box_excerpt{
	opacity: 0.7;
}
a.news_list_bt{
	position: absolute;
	right: 20px;
	top: 120px;
	font-family: Arial, Helvetica, "sans-serif";
	font-weight: bold;
	font-style: italic;
	font-size: 15px;
	letter-spacing: 0;
	padding: 0 20px 0 0;
	transition: .2s;
}
a.news_list_bt::before{
	content: "";
	position: absolute;
	width: 16px;
	height: 2px;
	background: #1d3f61;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
a.news_list_bt:hover,
a.news_list_bt:hover::before{
	opacity: 0.7;
}
@media screen and (min-width: 750px) {
.news_list_wrap{
	background: url("../img/news_list_bg.webp")no-repeat center center;
	background-size: cover;
}
.news_list_inner{
	padding: 80px 32px;
}
.news_list_flex{
	gap:2%;
}
h3.top_h3{
	font-size: 56px;
	line-height: 56px;
}
.top_h3_jp{
	font-size: 16px;
	line-height: 36px;
	padding: 8px 4px;
}
.news_list_box{
	width: 23.5%;
	max-width: 312px;
}
.news_list_box_pic {
	width: 100%;
	margin: 0 0 16px;
}
.news_list_box_pic img{
  aspect-ratio: 16 / 9;
}
.news_list_box_date{
	font-size: 12px;
	line-height: 16px;
}
.news_list_box_text{
	width: 100%;
}
.news_list_box_h4{
	margin: 6px 0 12px;
}
.news_list_box_excerpt{
-webkit-line-clamp: 4;
}
a.news_list_bt{
	right: 46px;
	top: 100px;
	font-size: 20px;
}
}
@media screen and (min-width: 1000px) {
.news_list_inner{
	padding: 80px 80px;
}
.news_list_flex{
	gap:3%;
}
.news_list_box{
	width: 22.7%;
}
h3.top_h3{
	font-size: 88px;
	line-height: 88px;
}
.top_h3_jp{
	font-size: 22px;
	line-height: 42px;
	padding: 8px 6px;
}
a.news_list_bt{
	right: 88px;
	top: 126px;
	font-size: 20px;
}
}
/*************** cta ***************/
.cta_wrap{
	background: linear-gradient(90deg,#0068ff,#a9f0ff);
	padding: 88px 16px;
}
.cta_inner{
	position: relative;
	background: #fff;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 24px 16px;
	border-radius: 8px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.cta_left{
	width: 100%;
}
.cta_left_head{
	position: relative;
	z-index: 1;
	text-align: left;
	width: 100%;
	font-size: 3.3vw;
	line-height: 6vw;
	padding: 12px 0 0 32%;
}
.cta_left_pic{
	position: absolute;
	z-index: -1;
	display: block;
	max-width: 343px;
	width: 28%;
	left: 2%;
	top: 0;
	bottom: 0;
	margin: auto;
}
.cta_left_bt_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0 12px;
}
.cta_left_bt1,
.cta_left_bt2{
	max-width: 459px;
	width: 90%;
	margin: 0 auto 8px;
}
.cta_left_bt1 a,
.cta_left_bt2 a{
	display: block;
	width: 100%;
	padding: 31.154684095% 0 0;
	transition: .2s;
}
.cta_left_bt1 a:hover,
.cta_left_bt2 a:hover{
	opacity: 0.7;
}
.cta_left_bt1 a{
	background: url("../img/cta_bt1.webp")no-repeat center center;
	background-size: cover;
}
.cta_left_bt2 a{
	background: url("../img/cta_bt2.webp")no-repeat center center;
	background-size: cover;
}
.cta_pic{
	display: none;
}
@media screen and (min-width: 750px) {
.cta_wrap{
	padding: 48px 24px;
}
.cta_inner{
	padding: 24px 32px;
}
.cta_left_head{
	font-size: 15px;
	line-height: 35px;
	padding: 12px 0 0 28%;
}
.cta_left_pic{
	position: absolute;
	z-index: -1;
	display: block;
	max-width: 343px;
	width: 18%;
	left: 8%;
	top: 0;
	bottom: 0;
	margin: auto;
}
.cta_left_bt_wrap{
	padding: 32px 0 12px;
}
.cta_left_bt1,
.cta_left_bt2{
	width: 50%;
	margin: 0 auto;
}
}
@media screen and (min-width: 1000px) {
.cta_wrap{
	padding: 48px 64px;
}
.cta_inner{
	padding: 32px 48px;
}
.cta_left{
	width: 73%;
}
.cta_left_head{
	text-align: center;
	font-size: 22px;
	line-height: 42px;
	padding: 12px 0 0;
}
.cta_left_pic{
	display: none;
}
.cta_left_bt_wrap{
	padding: 32px 0 12px;
}
.cta_pic{
	position: static;
	display: block;
	width: 25%;
	max-width: 343px;
}
}
/*************** footer ***************/
footer{
	background: #1d3f61;
	color: #fff;
	padding: 12px 0;
}
footer ul{
	background: #1d3f61;
	color: #98b9d3;
	padding: 30px 0;
	font-size: 10px;
	line-height: 15px;
	text-align: center;
	margin: 0;
}
footer ul li{
	display: block;
	padding: 6px 0;
	margin: 0 12px;
	font-weight: 400;
}
footer ul li a{
	color: #fff!important;
	font-weight: bold;
}
@media screen and (min-width: 750px) {
footer ul li{
	display: inline-block;
}
}