@charset "UTF-8";
 /* +++++++++++++++++++++++++　基本設定 */
html {font-size: 62.5%;}
body {
	font-family:'Noto Sans JP', 'Roboto', 'Segoe UI', 'Helvetica Neue', 'HelveticaNeue', 'メイリオ', 'Meiryo', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Arial', sans-serif;
	font-size:1.6rem;
	line-height:1.5;
	letter-spacing:0.05em;
    background-color: #000;
	color:#fff;
}
/* +++++++++++++++++++++++++　aタグ */
a {
    transition: opacity .4s;
    text-decoration: none;
    color: inherit;
}
/*
a:visited {
	color: #007aab;
}
a:hover {
	color: #7FBCD5;
	text-decoration:none;
}
a:active {
	color: #7FBCD5;
}
*/

/*ページ内リンク用アンカー　ヘッダーの高さで
    ヘッダーfixed　メインビジュアル上paddingでずらす*/ 
.anc { 
    margin-top: -6rem;
    padding-top: 6rem;
}  
section {
    padding: 13.5rem 0 5rem;
}
.inner {
    width: 95%;
    max-width: 1170px;
    margin: 0 auto;
}
.ttl02 {
    font-size: 4.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.6rem;
}
.ttl02 + p {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 10rem;
}
.ttl03 {
    font-size: 4.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3.6rem;
}
.ttl03 span {
    position: relative;
    display: inline-block;
}
.ttl03 span::after {
    content: url(../img/ttl03-img.png);
    position: absolute;
    top: -56px;
    right: -120px;
    transform: scale(0.5);
    z-index: -1;
}
.ttl03 + p {
    text-align: center;
    margin-bottom: 10rem;
}
.ttl04 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    background: #2e57ff;
    padding: 0.5rem 0;
}
.ttl05 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
  padding: 1rem 2rem;
  position: relative;
}
.ttl05::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #2e57ff, #6e2eff);
}
.ttl06 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 3rem;
}


.btn {
    display: block;
    width: 95%;
    margin: 0 auto;
    background: #fff;
    border-radius: 25px;
    text-decoration: none;
    border: 2px solid #2E57FF;
    color: #2E57FF;
}
a.btn:hover {
    opacity: .9;
    transform: scale(1.05);
    transition: all .3s ease;
}
.btninner {
    margin: 0 auto;
    display: flex;
    align-self: center;
}
.btninner h6 {
    position: relative;
    font-weight: bold;
    font-size: 2rem;
    width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 1rem 0;
}
.btn .btninner h6::before {
    content: '';
    width: 3.5rem;
    height: 3.5rem;
    background: #2E57FF;
    border-radius: 50%;
    position: absolute;
    right: 0;
    transition: all .3s ease;
}
.btn .btninner h6::after {
    font-family: "Font Awesome 5 Free";
    color: #fff;
    position: absolute;
    right: 10px;
    transition: all .3s ease;
}
.btn.right .btninner h6::after {
    content: '\f105';
}
.btn.bottom .btninner h6::after {
    content: '\f107';
}
a.btn.right:hover .btninner h6::before {
    right: -8%;
}
a.btn.right:hover .btninner h6::after {
    right: -6.5%;
}

a.btn.bottom:hover .btninner h6::after {
    bottom: 15%;
}


@media screen and (max-width: 768px) {   
     body {
	min-width:auto;
	font-size:1.4rem;
    }
    .anc { 
    margin-top: -65px;
    padding-top: 65px;
}  
section {
    padding: 10rem 0 5rem;
}
.ttl02 {
    font-size: 3rem;
    margin-bottom: 2rem;
}
.ttl02 + p {
    font-size: 2rem;
    margin-bottom: 7rem;
}
.ttl03 {
    font-size: 3rem;
}
.ttl03 span::after {
    top: -8rem;
    right: -7rem;
}
.ttl03 + p {
    margin-bottom: 5rem;
}
.btninner h6 {
    font-size: 1.8rem;
}

}

main {
    position: relative;
}
main::before {
    position: absolute;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    content: '';
    top: 0;
    right: 0;
    width: 60vw;
    height: 86vh;
    transition: transform 1s cubic-bezier(.16,1,.3,1) 0s;
    background-image: url(../img/main-bg01.png);
    z-index: -1;
    margin-top: 6rem;
}

/*============
背景スライドイン
=============*/
.bgin {
  position: relative;
}
.bgin::before,
.bgin::after {
  position: absolute;
  overflow: hidden;
background-size: cover;
background-position: center;
z-index: -100;
}

/* 左下: 左から、少し遅れて */
.bgin::after {
    content: '';
    bottom: -8%;
    left: -1%;
    width: 28%;
    height: 40vh;
    transform: translateX(-102%);
    transition: transform 1s cubic-bezier(.16,1,.3,1) .2s;
    background-image: url(../img/bgin01.png);
}

/* スライドイン発火 */
.bgin.in-view::before,
.bgin.in-view::after {
  transform: translateX(0);
}


/*============
nav
=============*/
.head {
    width: 100%;
    position: fixed;
    z-index: 999;
    height: 80px;
    background-color: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
}
.head #navArea {
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.head .logo {
    max-width: 138px;
}
.head nav {
    width: 100%;
}
.head nav ul {
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
    list-style: none;
}
.head nav ul li a {
    color: #000;
    text-decoration: none;
    position: relative;
    font-size: 1.6rem;
}
/* ホバー下線アニメーション */
.head nav ul li a:hover {
    opacity: 1;
}
.head nav ul li a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background: linear-gradient(to left, #2e57ff, #6e2eff);
    opacity: 0;
}
.head nav ul li a:hover::before {
    opacity: 1;
    transition: all 0.5s;
}
/* Fixed */
.head.fixed {
    margin-top: 0;
    top: 0;
    position: fixed;
    height: 60px;
    background: rgba(255,255,255,.8);
    transition: all 0.65s ease-in;
}
.head.fixed .logo {
    max-width: 110px;
}
.head.fixed nav ul {
    gap: 2rem;
    transition: all 0.65s ease-in;
}
.toggle_btn {
    display: none;
}

@media screen and (max-width: 900px) {
.head {
    height: 65px;
}
.head .logo {
    z-index: 100;
}
.head nav {
    display: block;
    position: fixed;
    top: 0;
    left: -220px;
    bottom: 0;
    width: 220px;
    background: #ffffff;
    overflow-x: hidden;
    overflow-y: auto;
    transition: all .5s;
    z-index: 3;
    opacity: 0;
}
.head .open nav {
  left: 0;
  opacity: 1;
}
.head nav .navinner {
    padding: 6rem 0 0 1rem;
}
.head nav .navinner ul {
    display: block;
}
.head nav .navinner ul li {
  position: relative;
  margin: 0;
}
.head nav .navinner ul li a {
    margin: 3rem 3rem 0 1.5rem;
    display: block;
}


/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 20px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.fixed .toggle_btn {
    top: 15px;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
}

@media screen and (max-width: 1100px) {

.head nav ul {
    gap: 1rem;
}
.head nav ul li a {
    font-size: 1.4rem;
}
}



/* +++++++++++++++++++++++++ ページTOPに戻る */
.pagetop .btn-pagetop {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}
.pagetop .btn-pagetop a:hover {
    opacity: 1;
}
.pagetop.fixed .btn-pagetop {
    position: fixed;
    right: 70px;
    bottom: 0;
    width: 75px;
    z-index: 99;
    margin-bottom: 5vw;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

@media screen and (max-width: 768px) {
    /* ページTOPに戻る */
    .pagetop.fixed .btn-pagetop {
        right: 12vw;
        bottom: 135px;
        width: 50px;
    }
}
 /* アコーディオンメニュー */   
 /*Q&A縦開閉*/
.accordion dd {
  display: none;
}
.accordion dl:last-child {
    border-bottom: 2px solid;
}
.accordion dt {
    padding: 2.5rem 5rem 2.5rem 1.5rem;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    border-top: 2px solid;
}
.accordion dt::before,
.accordion dt::after{
    position: absolute;
    content: '';
    top: 1px;
    right: 20px;
    bottom: 0;
    width: 2rem;
    height: 0.2rem;
    margin: auto;
    background-color: #fff;
}
.accordion dt::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion dt.active::after{transform:rotate(0deg);}
.accordion dd {
  padding: 0 1.5rem 2.5rem;
}
.accordion dt span, .accordion dd span {
    padding-left: 25px;
    position: relative;
    display: block;
}
.accordion dt span::before{
  position: absolute;
  content:"Q";
  top: 2px;
  left: 0;
  font-size: 17px;
}
.accordion dd span::before{
  position: absolute;
  content:"A";
  top: 3px;
  left: 0;
  font-size: 17px;
}
/* hover */
.accordion dt:hover {
  background-color: #3d3737;
}

 /* タブメニュー */   
 /*ページ内タブ切り替えスライドタイプ*/
.tab{
	display: flex;
	flex-wrap: wrap;
}
.tab .tabLabel {
    padding: 1.5rem;
    flex: 1;
    order: -1;
    color: #fff;
    position: relative;
    transition: .5s;
    cursor: pointer;
    text-align: center;
    font-weight: 700;
    font-size: 2.5rem;
    border: 3px solid #2E57FF;
    background-color: #92a6f7;
}
.tab .tabLabel:nth-last-of-type(1){ 
    margin-right: 0; 
}
.tab .tabLabel:nth-last-of-type(2){ 
    border-right: none;
}
.tab .tabLabel:nth-last-of-type(3){ 
    border-right: none;
}
.tab input {		/* ラジオボタン非表示 */
	display: none;
}
.tab .tabcontent {
    width: 100%;
    height: 0;
    overflow: hidden;
    opacity: 0;
    border: 3px solid #2E57FF;
    margin-top: -1rem;
    color: #000;
}
.tab .tabcontent > div {
    pointer-events: none;
    transform: translateX(30%);
    transition: transform .3s 80ms, opacity .3s 80ms;
    padding: 5rem;
}
.tab .tabcontent .imgWrap {
    margin-bottom: 10rem;
}
/*アクティブ設定*/
.tab input:checked + .tabLabel {
    background: #2E57FF;
}
.tab input:checked ~ .tabLabel::after {
	transform: translateX(-100%);
}
.tab input:checked + .tabLabel::after {
	opacity: 1;
	transform: translateX(0);
}
.tab input:checked + .tabLabel + .tabcontent {	/*本文*/
	height: auto;
	order: 1;
	opacity: 1;
}
.tab input:checked ~ .tabcontent > div {
	transform: translateX(30%);
}
.tab input:checked + .tabLabel + .tabcontent > div {
	pointer-events:auto;
	transform: translateX(0);
}

@media screen and (max-width: 768px) {
.tab .tabLabel {
    padding: 0.5rem;
    font-size: 1.5rem;
    line-height: 1.3;
}
.tab .tabcontent > div {
    padding: 4rem 2rem;
}
.tab .tabcontent .imgWrap {
    margin-bottom: 3rem;
}
.tab .tabcontent .imgWrap img {
    margin-bottom: 1rem;
}
}
/* step */
.stepcontainer {
    counter-reset: step-index;
    background-color: #F8F8F8;
    padding: 5rem;
    color: #000;
}
.step {
    position: relative;
    padding-bottom: 7rem;
    counter-increment: step-index;
}
/* 縦線の描画 */
.step:not(:last-child)::before {
    position: absolute;
    top: 0;
    left: 74px;
    width: 3px;
    height: 100%;
    content: "";
    background-color: #2E57FF;
}
.step-title {
    display: grid;
    grid-template-columns: 16rem 1fr;
    gap: 20px;
    align-items: center;
    font-size: 3rem;
    font-weight: bold;
    color: #2E57FF;
}
.step-title::before {
    z-index: 1;
    display: grid;
    place-items: center;
    width: 15rem;
    height: 15rem;
    font-weight: bold;
    color: #fff;
    content: "STEP\A" counter(step-index, decimal-leading-zero);
    white-space: pre;
    background-color: #2E57FF;
    text-align: center;
    border-radius: 50%;
    font-size: 3rem;
    line-height: 1.2;
}
.step-text {
    padding-left: 18rem;
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: -4rem;
}


@media screen and (max-width: 768px) {
.stepcontainer {
    padding: 3rem 2rem;
}
.step {
    padding-bottom: 2rem;
}
.step-title {
    font-size: 2.5rem;
}
.step-title::before {
    width: 8rem;
    height: 8rem;
    font-size: 2rem;
}
.step:not(:last-child)::before {
    top: 5px;
    left: 40px;
}
.step-title {
    grid-template-columns: 7rem 1fr;
}
.step-text {
    padding-left: 9.5rem;
    font-size: 1.4rem;
    margin-top: -1rem;
}
}

/******card******/
.card {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}
.cardchild {
    width: calc((100% - (3rem * 3)) / 4);
    border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    margin-bottom: 3rem;
    background-color: #F8F8F8;
    color: #000;
    font-size: 1.8rem;
    font-weight: 600;
}
.cardchild img {
    display: block;
    width: 100%;
    /*height: 280px;*/
    object-fit: cover;
}
.cardchild-text{
  width:100%;
  flex-grow:1;
  padding:10px;
}
.cardchild .btninner h6 {
    width: 78%;
}
@media screen and (max-width: 768px) {
    .card {
        display: block;
    }
    .cardchild {
    width: 85%;
    max-width: 500px;
    margin: 0 auto 2rem;
}
.cardchild-text {
    font-size: 1.4rem;
}
}

/******infocard******/
.infocard {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.infocardchild {
    width: calc((100% - (3rem * 3)) / 4);
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    font-size: 1.8rem;
    font-weight: 600;
}
.infocardchild img {
    display: block;
    width: 100%;
    /*height: 280px;*/
    object-fit: cover;
}
.infocardchild-text{
  width:100%;
  flex-grow:1;
  padding:10px;
}
.infocardchild .btninner h6 {
    width: 78%;
}
@media screen and (max-width: 768px) {
    .infocardchild {
    width: calc((100% - (2rem * 1)) / 2);
    margin: 0 auto 1rem;
    }
}

/* スクロールヒント */
.js-scrollable.scroll-hint {
    min-height: 13rem;
    display: flex;
    align-items: center;
}
@media screen and (max-width: 768px) {  
    .js-scrollable.scroll-hint {
    margin-bottom: 2rem;
}
    .js-scrollable img {
        width: auto;
        max-width: inherit;
    }
}

/* お問合せ */
.inquiry .inner article {
background: linear-gradient(#2e57ff 0%, #6e2eff 100%);
padding: 5rem;
}
.inquiry .ttl05 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    padding: 1rem 2rem;
    position: relative;
}
.inquiry .ttl05::before {
    background: #fff;
}
.inquiry .tel a {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}
.inquiry .tel p:nth-child(2) {
    font-size: 2rem;
}

.inquiry .btn {
    margin: 4.5rem auto 1.5rem;
    width: 100%;
}
.inquiry a.btn:hover {
    opacity: .9;
}
@media screen and (max-width: 768px) {  
.inquiry .inner article {
    padding: 6rem 3rem;
}
.inquiry .ttl05 {
    font-size: 2.3rem;
    line-height: 1.2;
}
.inquiry .tel a {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.inquiry .tel p {
    margin-bottom: 1rem;
}
.inquiry .btn {
    margin: 1.5rem auto 1.5rem;
}
.inquiry .btninner h6 {
    font-size: 1.8rem;
    line-height: 1.2;
}
    }




/* sec02 */
.sec02 .strength {
    background-color: #F8F8F8;
    padding: 3rem;
    margin-bottom: 5rem;
}
.sec02 .note {
    color: #EAAC06;
    font-size: 1.4rem;
    font-weight: 600;
}
@media screen and (max-width: 768px) {  
.sec02 .strength {
    padding: 5rem 1.5rem;
    margin-bottom: 2rem;
}
}
/* sec03 */
.sec03 .tab {
    background-color: #F8F8F8;
    padding: 5rem;
}
.sec03 .tab .btn {
    max-width: 460px;
}
@media screen and (max-width: 768px) { 
.sec03 .tab {
    padding: 2rem;
}
.sec03 .tab .btn {
    margin-bottom: 1rem;
}
}
/* sec06 */
.sec06 .btn {
    max-width: 270px;
}
/* sec08 */
.sec08 {
    position: relative;
}
.sec08::before {
    position: absolute;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    content: '';
    top: -63%;
    right: 0%;
    width: 73vw;
    height: 98vh;
    transition: transform 1s cubic-bezier(.16,1,.3,1) 0s;
    background-image: url(../img/sec08-bg.png);
    z-index: -1;
}
/* footer */
footer {
    background-color: #555;
    color: #fff;
    padding: 4.5rem 0;
    margin-top: 15rem;
}
.copy {
    text-align: center;
}
.copy img {
    display: inline-block;
    width: 1.6rem;
}
@media screen and (max-width: 768px) { 
footer {
    padding: 4.5rem 0;
    margin-top: 10rem;
}
.copy .copyWrap {
    display: block;
}
.copy .copyWrap a {
    justify-content: center;
    margin-top: 1.5rem;
}
}

