@charset "utf-8";

/*

html, body {
height: 100%;
overflow: hidden; 
}

*/


*{
font-size: 14px
}

.mobile{
display: none!important;
}

div.loadingWrap img {
width: 400px;
}

/*--------------------nav--------------------*/

nav.nav{
display: none
}

/*--------------------header--------------------*/

header.header{
width: 100%;
height: 90vh;
background: url(../img/header/back.jpg) no-repeat center;
background-size: cover;
position: relative
}

header.header::before {
content: '';
position: absolute;
width: 500px;
height: 100px;
background: linear-gradient(103deg, rgba(152, 222, 249, 1) 0%, rgba(0, 177, 245, 1) 100%);
clip-path: polygon(0 0, 100% 0, 0 100%);
top: 0;
left: 0;
z-index: 1;
mix-blend-mode:multiply
}

header.header::after {
content: '';
width: 0;
height: 0;
border-style: solid;
border-width: 0px 0px 100px 500px;
border-color: transparent transparent #00a0e6 transparent;
position: absolute;
right: 0px;
bottom:0px;
z-index: 1;
mix-blend-mode:multiply
}

div.header{
padding: 30px;
background: #1e4e90;
display: grid;
grid-template-rows: 1fr 1fr;
grid-template-columns: repeat(7, 1fr); 
gap: 20px; 
top:70px;
left: 0px;
height: calc(100% - 70px);
width: calc(100% - 60px);
position: absolute;
z-index: 1
}

div.header > a.header_member { will-change: transform, opacity; }

@media (prefers-reduced-motion: reduce){
 div .header > a.header_member { transition:none !important; animation:none !important; }
}

div.headera.header_member{
display: block;
}

a.image1{
z-index: 1
}

a.header_member img{
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
border-radius: 10px;
}

/* 親…枠でクリップし、相対配置に */
a.header_member{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

/* 画像…拡大用 */
a.header_member img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  transition: transform 0.4s ease;
  z-index: 0; 
}

/* 光…擬似要素で作る（これが無いと見えません） */
a.header_member::before{
  content: "";
  position: absolute;
  top: 0;
  left: -75%; 
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skewX(-20deg);
  z-index: 1;          /* 画像より前面に */
  pointer-events: none;
  opacity: 0; 
}

/* ホバー時：拡大＋シャイン同時 */
a.header_member:hover img{
  transform: scale(1.1);
}

a.header_member:hover::before{
  opacity: 1;
  animation: shine 1s ease; /* ← これを ::before に当てる */
}

/* シャインの動き（開始位置もここで定義してOK） */
@keyframes shine{
  from { left: -75%; }
  to   { left: 125%; }
}

div.header_logo{
grid-column: span 3;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
opacity: 0; 
}

article.header_logo{
width: 90%
}

img.header_logo{
width: 50%;
margin: 0px auto
}

div.header_right{
width: 60px;
height: 100%;
background: #00a0e6;
position: absolute;
top:0px;
right: 0px;
z-index: 12
}

a.header_right{
display: block;
padding: 20px 0px;
color: #fff;
position: relative
}


p.header_right_icon{
width: 36px;
height: 36px;
border-radius: 18px;
border:solid 1px #fff;
display: flex;
align-items: center;
justify-content: center;
margin: 0px auto
}

p.mail{
background: #21aaea
}

p.line{
background: #fff
}

img.header_right_icon{
width: 18px;
}

h6.header_right{
font-size: 13px;
transform: rotate(90deg) translateX(50%);
transform-origin: center center;
display:block; 
position: relative;
white-space: nowrap;
color: #fff
}

a.mail,a.tell,a.line{
height: 20%;
}

a.mail:after{
content: '';
position: absolute;
bottom:0px;
display:block;
width: 0;
height: 0;
border-style: solid;
border-width: 0px 0px 20px 60px;
border-color: transparent transparent #006c9f transparent;
}

a.tell{
background: #006c9f
}

a.tell:after{
content: '';
position: absolute;
bottom:0px;
display:block;
width: 0;
height: 0;
border-style: solid;
border-width: 0px 0px 20px 60px;
border-color: transparent transparent #00b900 transparent;
}

a.line{
background: #00b900
}

a.line:after{
content: '';
position: absolute;
bottom:0px;
display:block;
width: 0;
height: 0;
border-style: solid;
border-width: 0px 0px 20px 60px;
border-color: transparent transparent #00a0e6 transparent;
}

span.header_right{
padding: 20px 0px;
display: block;
}

a.header_right_icon{
width: 30px;
height: 30px;
border-radius:15px;
display: flex;
align-items: center;
justify-content: center;
margin: 0px auto 15px auto
}

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

menu.menu{
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
position: fixed;
left:0px;
top:0px;
z-index: 10;
padding-left: 3%;
padding-right: 100px;
height: 70px;
background: rgba(255,255,255,0.7)
}

a.menu_logo{
width: 250px
}

div.menu_link{
width: max-content;
display: flex;
align-items: center;
gap: 20px
}

a.menu{
font-weight: 600;
text-transform: uppercase;
display: flex;
white-space: nowrap;
align-items: center
}

a.menu:after{
content: '';
width: 1px;
height: 18px;
background: #444;
margin-left: 20px
}

a.menu:last-of-type:after{
background: none;
}

/*--------------------survey--------------------*/

section#survey{
display: flex;
align-items: start;
padding: 60px 0px;
gap: 40px;
background: url(../img/survey/parts1.png) no-repeat left top,url(../img/survey/parts2.png) no-repeat right top,url(../img/survey/parts3.png) no-repeat right bottom,#f2faff;
background-size: 30% auto, 15% auto, 25% auto; /* ← 各画像のサイズを%指定 */
}

div.survey_image{
width: 50%
}

img.survey_image{
width: 600px;
margin: 0px 0px 0px auto
}

h3.survey_image{
width: 600px;
text-align:center;
margin: 0px 0px 0px auto
}

article.survey{
width: 50%
}

h6.notera{
font-family: 'Notera';
font-size:50px;
font-weight: 200;
}

h4.section{
font-size: 13px;
font-weight: 600
}

h5.section{
font-size: 28px;
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
margin-bottom: 10px
}

h2.section{
font-size: 34px;
white-space: nowrap;
font-weight: 600;
line-height: 1.3;
margin-bottom: 40px
}

p.section{
line-height: 2.2;
font-size: 16px
}

/*--------------------message--------------------*/

section#message{
display: flex;
align-items: start;
padding: 60px 0px 60px 0px;
gap: 40px;
background: url(../img/message/back.jpg) no-repeat center;
background-size: cover;
position: relative;
color: #fff;
padding-left:calc((100% - 1200px) / 2)
}

section#message:before{
content: '';
width: 100%;
height: 100%;
background: rgba(0,160,230,0.9);
position: absolute;
top:0px;
left: 0px;
z-index: 0
}

article.message{
width: 70%;
position: relative;
z-index: 1
}

div.message_right{
position: relative;
z-index: 1;
top:-180px
}

div.message_txt{
display: flex;
align-items: start;
position: relative;
left: -100px
}

p.tel_image{
width: 200px;
aspect-ratio: 2 / 2.5;
background: #dcdcdc;
position: relative;
margin-right: 40px;
top:-60px
}

article.message_txt{
position: relative;
padding-top: 100px
}

article.message_txt h6.notera{
width: max-content;
position: absolute;
left: -100px;
top:0px;
transform: rotate(-10deg)
}

h4.message{
font-size:20px;
margin-bottom: 40px
}

p.message_txt{
width: max-content;
font-family: "Montserrat", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
line-height: 2.0
}

/*--------------------about--------------------*/

section#about{
padding-inline:calc((100% - 1200px) / 2);
position: relative;
top:-50px
}

p.about_image{
width: 660px;
}

h3.about{
width: max-content;
font-size: 95px;
margin: 0px auto 40px auto;
position: relative;
font-family: "Inter", sans-serif;
font-optical-sizing: auto;
font-weight: 700;
font-style: normal;
position: relative;
top:-50px
}

i.about{
white-space: nowrap;
font-family: 'Notera';
text-align: right;
color: #00a0e6;
font-size: 50px;
transform: rotate(-10deg) ;
font-weight: 200;
position: absolute;
left: -20px;
top:60px
}

div.about{
width: max-content;
margin: 0px 0px 0px auto
}

p.about{
line-height: 1.8;
font-size: 16px;
margin-bottom: 40px
}

div.about_link{
display: flex;
align-items: center;
gap: 8px;
flex-wrap: wrap;
margin: 0px 0px 0px auto
}

a.about_link{
width: 32%;
background: #20529a;
height: 50px;
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 13px;
border-radius: 4px;
text-align: center;
line-height: 1.2;
position: relative
}

a.about_link:after{
content: "";
position: absolute;
width: 14px;
height: 14px;
background: url(../img/icon/triangle_w.png)  no-repeat center;
background-size: cover;
top:50%;
transform: translateY(-50%);
right: 10px
}

a.about_link:hover{
opacity: 0.7
}

/*--------------------member--------------------*/

section#member{
padding-inline:calc((100% - 1200px) / 2);
padding-bottom: 100px;
}

div.member{
display: flex;
align-items: start;
gap: 40px;
position: relative
}

div.member_image{
width: 520px;
position: relative;
margin-top: -280px
}

article.member{
padding-top: 40px
}

ul.member{
width: 1200px;
margin: 0px auto 40px auto;
display: flex;
align-items: center;
gap: 15px
}

li.member{
color: #00a0e6;
border:solid 1px #00a0e6;
width: max-content;
height: 40px;
padding: 0px 15px;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center
}

li.member:hover{
cursor: pointer;
text-decoration: underline
}

li.selected{
background: #00a0e6;
color: #fff;
font-weight: 600
}

div.member_post{
display: flex;
align-items: start;
gap: 20px;
overflow-x: auto;
padding-bottom: 20px;
}

a.member_post{
width: 300px;
display: block;
flex-shrink: 0;
aspect-ratio: 2 / 2.5;
border-radius: 15px;
overflow: hidden;
position: relative
}

img.member_post{
width: 100%;
height: 100%;
object-fit: cover;
object-position: top center
}

h4.position{
width: max-content;
height: 26px;
left: 15px;
top:15px;
line-height: 26px;
padding: 0px 20px;
border-radius: 15px;
position: absolute;
background: #fff;
color:#00a0e6
}

article.member_post{
width: max-content;
position: absolute;
left: 15px;
bottom: 15px
}

h3.member_post{
width: max-content;
border-radius: 5px;
font-size: 16px;
padding: 3px 10px;
color: #fff;
background: #00a0e6;
margin-bottom: 15px
}

h4.member_post{
color: #fff;
font-size: 14px
}

h3.member_right{
font-size:20px;
color: #fff;
text-shadow: 1px 1px 2px #999;
line-height: 100%;
transform: skew(-5deg);
font-family: "Inter", sans-serif
}

h4.number{
font-size:28px;
color: #fff;
text-shadow: 1px 1px 2px #999;
margin-bottom: 15px;
transform: skew(-5deg);
font-family: "Inter", sans-serif
}


/*--------------------footer--------------------*/

footer.footer{
background: #00a0e6;
color: #fff;
font-weight: 600;
padding-top: 40px
}

footer.footer a:hover{
cursor: pointer;
text-decoration: underline
}

a.follow{
width: 220px;
display: block;
position: fixed;
bottom: 20px;
right: 20px;
z-index: 99;
}

p.totop{
width: 40px;
height: 50px;
border:solid 2px #dcdcdc;
border-radius: 5px;
background: #fff;
position:absolute;
right: 2%;
top:-68px
}

p.totop img{
width: 50%;
position: absolute;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
opacity: 0.7
}

p.totop:hover{
cursor: pointer;
opacity: 0.7
}

ul.footer_inner{
width: 1200px; 
margin: 0px auto 40px auto;
display: flex;
align-items: start;
justify-content: space-between;
gap: 50px;
position: relative
}

li.footer_left{
width: 300px
}

li.footer_center{
width: 600px;
padding-top: 30px
}

li.footer_right{
width: 300px
}

img.footer_logo{
margin-bottom: 40px
}

div.footer_sns{
display: flex;
align-items: center;
gap: 20px;
justify-content: left;
margin-bottom: 30px;
}

a.footer_sns{
width: 26px
}

a.footer_sub{
color: #fff
}

p.address{
font-size:12px;
margin-bottom: 20px
}

a.google_map{
display: block;
color: #727272;
font-weight: 500;
display: flex;
line-height: 2;
text-decoration: underline;
}

a.google_map:hover{
text-decoration: none;
}

a.footer_google_map{
color: #fff
}

a.footer_google_map{
color: #fff!important;
margin-top: 10px
}

a.footer_google_map:after{
content: "";
width: 14px;
left: 14px;
background: url(../../img/icon/maps-icon.png) no-repeat center!important;
background-size: 100%!important;
margin-left: 5px
}

div.footer_other{
display: flex;
align-items: center;
gap: 50px;
border-top:solid 1px #fff;
border-bottom:solid 1px #fff;
padding: 15px 0px;
margin-bottom: 30px
}

a.footer_other{
color: #fff
}

ul.footer_link{
width: 100%;
display: flex;
align-items: start;
gap: 40px
}

a.footer_link,p.footer_link{
display: block;
color: #fff;
margin-bottom: 15px
}

a.footer_right{
width: 100%;
display: block;
background: #fff;
color: #20529a;
font-weight: 600;
padding: 15px 0px;
text-align: center;
margin-bottom: 20px;
display: flex;
justify-content: center;
align-items: center
}

span.footer_right{
display: block;
margin-right: 10px;
font-weight: 300
}

p.copy{
font-size:13px;
text-align: center;
background: #fff;
color: #000;
padding: 20px 0px 30px 0px
}