﻿@charset "utf-8";

/* 1536 , 1530 × 735 ,1366 *//* 上記画面幅でも崩れていないか確認 */

/* 修正した場合→各項目の一番下に日付をコメントアウトして追記 */


/*■■　font　■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&display=swap');

:root{
    --font-jp: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
	--font-min: "Shippori Mincho","游明朝", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho","ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Sawarabi Mincho", "serif";
}
body, .font_sans-serif, .font_serif{
    font-family: var(--font-jp);
    font-weight: 500;
}
.font_jp,  h2, h3, h4 {
    font-family: var(--font-min) !important;
    font-weight: bold;
    letter-spacing: 2px;
}
.font_mon_l {
    font-family: 'Montserrat', 'Noto Sans JP', 'Comfortaa', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif!important;
    font-weight: 300;
}
#con_nav .txt_box .title{
    font-weight: 400;
}



/*■■　ALL　■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
.con_title, #page_title .title_wrap h2 {
    font-size: 30px;
}
#loader {
    z-index: 99999;
}
header{
    background-color: transparent;
    z-index: 2;
    width: 100%;
    position: absolute!important;
    top: 0;
    left: 0;
    z-index: 11;
}

#header {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    width: 95% !important;
    margin: auto;
    border-bottom: 1px solid #fff;
}
#pc_nav a{
    color: #ffffff;
}
#pc_nav li:last-of-type a{
    padding: 15px 40px;
    background-color: #fff;
    border-radius: 50px;
    color: var(--black);
}
.header_tel {
    display: none!important;
}
/* active */
#header.active{
    width: 100% !important;
    padding: 20px;
}
#header.active #pc_nav a {
    color: var(--black);
    transition: all .3s;
}
#header.active #pc_nav li:last-of-type a{
    background-color: var(--color1);
    color: #fff !important;
}

#sp_nav a{
    color: var(--black);
}

.info_txt_wrap .time  {
    display: none;
}
#footer_info{
    margin-top: 50px;    
}


/* ---------------------------　タブレット　-------------------------- */
@media screen and (max-width: 768px){
.con_title, #page_title .title_wrap h2 {
    font-size: 26px;
}
}

/* --------------------------　スマホ　-------------------------- */
@media screen and (max-width: 667px){
.con_title, #page_title .title_wrap h2 {
    font-size: 23px;
}
#logo2{
    width: 128px;
}
}



/*■■　FV　■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
/*#fv_wrap {
    color: #ffffff;
    min-height: 100vh;
    width: 100%;
    height: 100vh;
    position: relative;
    background: radial-gradient(circle at 20% 30%, #7ECAFA 0%, #689BE2 55%, #5C73CD 100%);
    pointer-events: none;
}*/
#fv_wrap {
  color: #ffffff;
  min-height: 100vh;
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

/* レイヤー① */
#fv_wrap::before,
#fv_wrap::after {
  content: "";
  position: absolute;
  inset: -25%;
  z-index: 0;
  filter: blur(155px);
  transform-origin: center;
}

/* メインの動き */
#fv_wrap::before {
  background:
    radial-gradient(circle at 30% 30%, #7ECAFA 0%, transparent 60%),
    radial-gradient(circle at 70% 40%, #689BE2 0%, transparent 60%),
    radial-gradient(circle at 50% 70%, #5C73CD 0%, transparent 60%);
    
  animation: rotateGradient 28s linear infinite;
}

/* サブの揺らぎ */
#fv_wrap::after {
  background:
    radial-gradient(circle at 60% 30%, #7ECAFA 0%, transparent 60%),
    radial-gradient(circle at 40% 70%, #5C73CD 0%, transparent 60%);
    
  opacity: 0.7;
  animation: rotateReverse 36s linear infinite;
}

/* メイン回転 */
@keyframes rotateGradient {
  0% {
    transform: rotate(0deg) scale(1.2);
  }
  50% {
    transform: rotate(180deg) scale(1.3);
  }
  100% {
    transform: rotate(360deg) scale(1.2);
  }
}

/* 逆回転で奥行き出す */
@keyframes rotateReverse {
  0% {
    transform: rotate(0deg) scale(1.3);
  }
  100% {
    transform: rotate(-360deg) scale(1.2);
  }
}

/* グラスモルフィズム（ガラス風パネル） */
.glass-panel {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* グラスモルフィズム（ガラス風インタラクティブボタン） */
.glass-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.glass-button:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* キャンバスレイヤー設定 */
#interactive-canvas {
    position: absolute;
    top: 48%;
    left: 50%;
    width: 100%;
    height: 100%;
    z-index: 10;
    pointer-events: auto;
    mix-blend-mode: screen;
    pointer-events: none;
    transform: scale(0.95) translate(-50%, -50%);
    
    top:-1%;
    left: 0%;
    transform: none;
}


/* ==========================================================================
   2. ファーストビュー (FV) UIレイアウト設定
   ========================================================================== */
/* .fv-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  z-index: 20;
  pointer-events: none;
  user-select: none;
}

@media (min-width: 768px) {
  .fv-container {
    padding: 48px;
  }
} */
/* --- キャッチコピーエリア --- */
.fv_main{
        width: min(49%, 747px);
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 2;
}
.fv_txt {
}
/* btn */
.cta-wrap {
    display: flex;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
    padding-top: 67px;
}
/* 共通ボタン */
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 320px;
    height: 80px;
    border-radius: 9999px;
    font-size: 20px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
/* 左（メイン） */
.btn-primary {
    background-color: #143a5a;
    color: #ffffff;
}
.btn-primary:hover {
    background-color: #0f2e47;
    transform: translateY(-3px);
}
/* 右（透過ボタン） */
.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}
/* hoverで少し浮く＋うっすら背景 */
.btn-secondary:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.1);
}
/* ノイズオーバーレイ（質感向上） */
.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-position: center;
    opacity: 0.015;
    pointer-events: none;
    z-index: 0;
} 

/* ---------------------------　タブレット　-------------------------- */
@media screen and (max-width: 768px){
#fv_wrap {
    min-height: 64vh;
    height: 64vh;
}
#interactive-canvas {
    pointer-events: none;
    width: 63vw;
    height: auto;
    top: 2%;
    left: auto;
    right: 0;
    mask-image: radial-gradient(ellipse at 70% 30%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0.98) 15%, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.6) 28%, rgba(0, 0, 0, 1.25) 40%, rgba(0, 0, 0, 1.08) 55%, rgba(0, 0, 0, 0) 70%);
}
.noise-overlay{
    height: 64vh;
}
.fv_main{
    top: 37%;
}
.btn {
    width: 320px;
    height: 63px;
    font-size: 14px;
}
}

/* --------------------------　スマホ　-------------------------- */
@media screen and (max-width: 667px){
#fv_wrap {
    min-height: 96svh;
    height: 96svh;
}
#interactive-canvas{
    top: -1%;
}
.fv_main {
    top: 56%;
    width: 84%;
    left: 7%;
}
.fv_txt{
    width: 87%;
}
.cta-wrap{
    display: block;
    padding-top: 14px;
}
.btn {
    width: 100%;
    height: 63px;
    font-size: 14px;
    margin-top: 20px;
}

}



/*■■　TOP　■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#con_nav{
    position: relative;
}
#con_nav ul {
    transform: translateY(-20%);
    margin-bottom: -5%;
    border-radius: 20px;
}
.fadein .fade_box.active {
    border: none;
}
#con_nav .txt_box {
    text-align: left;
    padding: 28px 10px 10px;
    width: 90%;
    margin: auto;
    border-bottom: 1px solid var(--color4);
}
#con_nav .txt_box .title{
    font-size: 30px;
    color: var(--color3);
}
#con_nav .txt_box .sub_title{
    font-size: 17px;
    color: #494949;
    padding-left: 8px;
}

.con2_bg {
    opacity: 0.5;
}

#point {
    background-image: url(../img/kabe.png);
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 90%;
    max-width: 1280px;
    gap: 35px;
    margin: 50px auto;
    padding: 20px;
}
.feature-item {
    /* display: flex; */
    align-items: center;
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255 255 255);
    border-image: initial;
    /* overflow: hidden; */
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.12);
}
.feature-icon {
    color: rgb(255, 255, 255);
    font-size: 32px;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    margin: -20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color3);
    border-radius: 9px;
}
.feature-title {
    /* font-weight: bold; */
    font-size: 21px;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color3);
    height: 70px;
    background: var(--white);
    padding: 0px 15px;
}
.v_type1 .triangle {
    box-sizing: border-box;
    border: none;
}
.under_page .v_type1 .triangle{
    width: 100% !important;
}


/* ---------------------------　タブレット　-------------------------- */
@media screen and (max-width: 768px){
.v_type1 .triangle {
    width: 100% !important;
    margin-bottom: 58px;
}
#con_nav {
    padding-bottom: 240px;
}
#footer_info .info_title {
    position: static;
    padding-bottom: 20px;
}
}

/* --------------------------　スマホ　-------------------------- */
@media screen and (max-width: 667px){
#con_nav{
    padding-bottom: 300px;
}
#con_nav ul{
    transform: translateY(-4%);
    margin-bottom: -10%;
}
#top_contents1 .info_title {
    font-weight: 400;
}
#con_nav .txt_box {
    padding: 14px 10px 10px;
}
#con_nav .txt_box .sub_title{
    font-size: 16px;
    padding-left: 0;
    display: block;
}
#con_nav .fade_box{
    border-top: 1px solid var(--color4);
    width: 44% !important;
}
.features{
    width: 80%;
    gap: 15px;
    margin: auto;
}
.feature-item{
    display: flex;
}
.feature-icon{
    border-radius: 9px 0 0 9px;
    margin: 0;
}
.feature-title{
    font-size: 17px;
    justify-content: flex-start;
    padding: 0px 15px 0 20px;
}

#top_contents3{
    margin-bottom: 0;
}
#top_contents1 .con1_img {
    height: 60vw;
    margin-bottom: 50px;
}

#footer_info .info_title{
    padding: 0;
}
}



/*■■　下層ページ　■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■*/
#page_title .title_wrap .txt_color4 {
    color: var(--color3);
}
#page09 .border_color4{
    border-color: #a7a7a7;
}
#google_privacy{
    background-color: #efefef;
}



/* ---------------------------　タブレット　-------------------------- */
@media screen and (max-width: 768px){
#page_title{
    margin-top: 154px
}
#page_title .title_img {
    height: 26vw;
}
#pc_nav a {
    color: var(--black);
}
#pc_nav li:last-of-type a{
    background-color: var(--color1);
    color: #fff !important;
}
}

/* --------------------------　スマホ　-------------------------- */
@media screen and (max-width: 667px){
#page_title{
    margin-top: 89px
}
#page_title .title_img {
    height: 40vw;
}
}


