@charset "UTF-8";
/* min-width: 1025, 768 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,button,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: 300;
}

html {
  overflow-y: auto;
  scroll-behavior: smooth;
  /* -webkit-overflow-scrolling: touch; */
}

.clicked {
  text-decoration: underline;
}

.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease 0s;
}

.fade-right {
  opacity: 0;
  transform: translateX(200px);
  transition: all 0.8s ease 0s;
}

.fade-left {
  opacity: 0;
  transform: translateX(-200px);
  transition: all 0.8s ease 0s;
}



body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  position: relative;
}
section{
  text-align:center;
  position: relative;
}
a {
     cursor: pointer;
     text-decoration: none;
     display: block;
}
ul{
    list-style: none;
}
li {
  list-style-type: none;
}
/* li::marker{
  content: none;
} */
img{
  width: 100%;
}

.pc{
  display: block!important;
}
.pc-inline{
  display: inline-block!important;
}
.pc-wide{
  display: block!important;
}
.sp{
  display: none!important;
}
@media screen and (max-width:1025px) {
  .pc-wide{
    display: none!important;
  }
}
@media screen and (max-width:768px) {
  .pc{
    display: none!important;
  }
  .pc-inline{
    display: none!important;
  }
  .sp{
    display: block!important;
  } 
}
/* ---------------------------
    common
--------------------------- */
.inner{
  max-width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.h2-title{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Noto Serif JP', sans-serif;
}
.h2-title h2{
  font-size: 1.7rem;
  letter-spacing: 0.6rem;
  display: inline-block;
  margin-bottom: 0.2rem;
  padding-top: 0.4rem;
  position: relative;
}
.h2-title h2::before{    
  content: '';
  display: block;
  width: 1rem;
  height: 4px;
  background-color: #020422;
  margin-bottom: 0.7rem;
}
.h2-title span{
  display: inline-block;
  font-size: .9rem;
  letter-spacing: .05rem;
}
.btn1{
  position: relative;
  color: #020422;
  padding: 0.7rem 1.5rem;
  border: 1px solid #818392;
  font-size: .8rem;
  letter-spacing: 0.15rem;
  overflow: hidden;
  transition: ease .2s;
}
.btn1 span{
  z-index: 3;
  position: relative;
}
.btn1::after{
  content: ">";
  position: absolute;
  height: 100%;
  top: 0;
  right: 0rem;
  display: flex;
  width: 1.5rem;
  font-size: 0.7rem;
  align-items: center;
  justify-content: center;
  color: #020422;
  z-index: 4;
}

/*== 背景が流れる（左から右） */
.btn1::before {
  content: '';
    /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
    /*色や形状*/
  background:#020422;/*背景色*/
  width: 105%;
  height: 105%;
    /*アニメーション*/
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.btn1:hover::before{
  transform-origin:left top;
  transform:scale(1, 1);
}
.btn1:hover::after{
  color: white;
}
.btn1:hover{
  color: white;
}


.btn2{
  color: white;
  padding: 0.7rem 1.5rem;
  background: #020422;
  font-size: .8rem;
  letter-spacing: 0.15rem;
  border-radius: 30px;
}
.btn2:hover{
  opacity: .7;
}


.page-title{
  text-align: center;
}
.page-title h1 {
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0.7rem;
  text-indent: 0.7rem;
  font-family: 'Noto Serif JP', sans-serif;
}
.page-title h1::before {
  content: attr(data-title);
  font-size: 5rem;
  font-weight: 100;
  letter-spacing: 0.4rem;
  text-indent: 0.4rem;
  display: block;
  border-bottom: 1px solid #020422;
  padding: 1rem 1.5rem 1.5rem;
  margin-bottom: 1.5rem;
  font-family: 'Noto Sans JP';
  line-height: 1;
}
/* bk
.page-title h1{
    font-size: 5rem;
    font-weight: 100;
    letter-spacing: 0.4rem;
    text-indent: 0.4rem;
}
.page-title span{
    margin-top: 1rem;
    display: inline-block;
    font-size: 1.4rem;
    letter-spacing: 0.7rem;
    text-indent: 0.7rem;
    border-top: 1px solid #020422;
    padding: 1.5rem 5rem;
    font-family: 'Noto Serif JP', sans-serif;
} 
*/



.service-title small{    
    display: block;
    font-size: 1.2rem;
}
.service-title h2{    
    font-size: 1.3rem;
    letter-spacing: 0.2rem;
    font-family: 'Noto Serif JP', sans-serif;
}
.service-title h2::before{    
  content: '';
  display: block;
  width: 1rem;
  height: 3px;
  margin: 0.7rem 0;
  background-color: #020422;
}
.plan-title small{    
    display: block;
    font-size: 1.2rem;
}
.plan-title h2{    
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  font-family: 'Noto Serif JP', sans-serif;
}
.plan-title h2::before{    
content: '';
display: block;
width: 1rem;
height: 3px;
margin: 0.7rem 0;
background-color: #020422;
}



@media screen and (max-width:1025px){
  .inner{
    max-width: unset;
    min-width: 1000px;    
  }
  .h2-title h2{
    font-size: 1.2rem;
  }
  .h2-title span{
    font-size: 0.8rem;
  }
  .btn1{
    padding: 0.5rem 1.2rem;
    font-size: 0.6rem;
  }  

  .page-title h1 {
    font-size: 1rem;
  }
  .page-title h1::before {
    font-size: 3.6rem;
  }
  /* bk
   .page-title h1{
    font-size: 3.6rem;
  }
  .page-title span{
    font-size: 1rem;
    margin-top: 0.3rem;
  } */
  .plan-title small{    
    font-size: 1rem;
  }
  .plan-title h2{
    font-size: 1rem;
  }
  .service-title small{        
    font-size: 1rem;
  }
  .service-title h2{
    font-size: 1rem;
  }
}

@media screen and (max-width:768px){
  .inner{    
    min-width: unset;    
  }
  .btn1{    
    font-size: 0.9rem;
    padding: 0.5rem 2rem;
    width: 9rem;
  }
  .h2-title{
    width: 100%;
    align-items: center;
  }
  .h2-title h2{
    align-items: center;
  }
  .h2-title h2::before{
    margin: 0 auto .5rem;
  }
  .page-title {
    width: unset;
    margin: 0 auto;
    max-width: 90%;
    /* width: 75%;
    margin: 0 auto; */
  }
  .page-title h1 {
    padding: 1.5rem 0rem;
    display: block;
  }
  .page-title h1::before {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
  }
  .page-title h1.smaller::before {
    font-size: 1.8rem;
  }

  /* bk
  .page-title h1{
    font-size: 2.2rem;    
  }
  .page-title h1.smaller{
    font-size: 1.8rem;    
  }
  .page-title span{    
    padding: 1.5rem 0rem;
    display: block;
    margin-top: 1.5rem;    
  } */
  .service-title{
    text-align: center;
  }
  .service-title small{
    font-size: 1.1rem;
  }
  .service-title h2{
    font-size: 1.2rem;
  }
  .service-title h2::before{
    margin: 0.7rem auto;
  }
  .plan-title{
    text-align: center;
  }
  .plan-title small{
    font-size: 1.1rem;
  }
  .plan-title h2{
    font-size: 1.2rem;
  }
  .plan-title h2::before{
    margin: 0.7rem auto;
  }
}
/* ---------------------------
    header 
--------------------------- */

header {  
  width: 100%;
  position: fixed;
  left: 0;  
  top: 0;
  z-index: 10;
}
header .header-inner{  
  display: flex;
  justify-content: flex-end;
}





.global_head_wrapper #global_nav_button2.global_head,
.global_head_wrapper #global_nav_button.global_head{
  cursor: pointer;
  display: flex;
  width: 4rem;
  height: 7.5rem;
  text-align: center;
  background-color:#020422;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
}
.global_head_wrapper #global_nav_button2.global_head p,
.global_head_wrapper #global_nav_button.global_head p {
  color: white;
  transform: rotate(90deg);
  font-size: .9rem;
  margin-top: 1.4rem;
}



.humburger_wapper {
  width: 1.6rem;
  height: 1.2rem;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.3rem;
  margin-top: 1.1rem;
}

.humburger_wapper .humburger_bar {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  margin-right: auto;
  margin-left: auto;
  transition: all 0.3s ease;
}
.humburger_wapper .humburger_bar:nth-of-type(1).active {
  transform: translateY(0.7rem) rotate(-45deg);
}
.humburger_wapper .humburger_bar:nth-of-type(3).active {
  transform: translateY(-0.4rem) rotate(45deg);
}
.humburger_wapper .humburger_bar:nth-of-type(2).active {
  opacity: 0;
}




.global_nav_wrapper{  
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #020422;
  z-index: 100;  
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  transform: scale(1.2);
  opacity: 0;
  transition: 0.2s all 0s;
  z-index: -2;
  min-width: 1200px;
}
.global_nav_wrapper .global_head_wrapper {
  position: absolute;
  top: 0;
  right: 0;
}
.global_nav_wrapper.open{  
  opacity: 1;
  transform: scale(1);
  z-index: 999;
}
.global_nav_wrapper .nav-wrapper{
  display: flex;
  width: 63rem;
  justify-content: flex-start;
  margin-bottom: 5rem;
}
.global_nav_wrapper .nav-wrapper dl{
  border-left: 1px solid white;
  line-height: 3;
  margin-right: 6.5rem;
  padding: 3rem 0 3rem 2.5rem;
}
.global_nav_wrapper .nav-wrapper dl:last-of-type{  
  margin-right: 0;  
}
.global_nav_wrapper .nav-wrapper dl dt{
  color: white;
  letter-spacing: 0.3rem;
  padding-bottom: 0.5rem;
}
.global_nav_wrapper .nav-wrapper dl dd{
  text-indent: 1em;
}
.global_nav_wrapper .nav-wrapper dl a{
  color: white;
  letter-spacing: 0.3rem;
}
.global_nav_wrapper .nav-wrapper dl a:hover{  
  text-decoration: underline;
}

.global_nav_wrapper .nav-btn-wrapper .btn1{
  width: 18rem;
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  color: white;
  margin: 0 auto;
}
.global_nav_wrapper .nav-btn-wrapper .btn1::after{  
  content: "";
  border-top: 1px solid #ffffff;
  border-bottom: 0px solid transparent;
  border-right: 1px solid #ffffff;
  height: 0.4rem;
  width: 0.4rem;
  transform: rotate(45deg);
  top: 45.5%;
  right: 1rem;
}
.global_nav_wrapper .nav-btn-wrapper .btn1 small{
  color: yellow;
  font-size: 0.8rem;
  letter-spacing: 0.3rem;
  display: block;
  z-index: 3;
  position: relative;
}

/*hoverした際の形状*/
.global_nav_wrapper .nav-btn-wrapper .btn1:hover::before{
  transform-origin:left top;
  transform:scale(1, 1);
  background-color: white;
}
.global_nav_wrapper .nav-btn-wrapper .btn1:hover::after{
  border-top: 1px solid #020422;
  border-bottom: 0px solid transparent;
  border-right: 1px solid #020422;
}
.global_nav_wrapper .nav-btn-wrapper .btn1:hover{
  color: #020422;
}

@media screen and (max-width:1025px){
  .global_nav_wrapper{  
    min-width: 1000px;
  }

  .global_nav_wrapper .nav-wrapper{
    width: 55rem;
    min-width: 53rem;
  }
  .global_nav_wrapper .nav-wrapper dl{
    margin-right: 3.7rem;
  }
  
}

@media screen and (max-width:768px){
  header .header-inner{  
    justify-content: space-between;
    align-items: flex-start;
  }
  header .header-inner .left{  
    width: 8rem;
  }
  header .header-inner .left a{ 
    background: #020422;
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
  }
  header .header-inner .left a img{ 
    width: 80%;
  }
  header .header-inner .right{  
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
  }
  header .header-inner .right .call a{  
    width: 2.5rem;
    margin-top: 0.5rem;
    margin-right: 0.5rem;
  }

  .global_head_wrapper #global_nav_button2.global_head,
  .global_head_wrapper #global_nav_button.global_head {
    height: 4.5rem;
  }
  .global_head_wrapper #global_nav_button2.global_head p,
  .global_head_wrapper #global_nav_button.global_head p {
    transform: none;
    font-size: .6rem;
    margin-top: 0rem;
  }



  .global_nav_wrapper{
    min-width: unset;
    overflow-y: scroll;
  }
  .global_nav_wrapper .nav-wrapper{
    flex-direction: column;
    width: calc(100% - 4rem);
    margin: 0;
    padding: 58vw 2rem 3rem;
    min-width: unset;
    /* height: 100%; */
    margin-top: 15rem;
  }
  .global_nav_wrapper .nav-wrapper dl{
    font-size: 0.9rem;
    line-height: 3;
    margin-right: 0;
    padding: 0;
    border: 0;
  }
  .global_nav_wrapper .nav-wrapper dl:last-of-type{  
    margin-right: 0;  
  }

  .global_nav_wrapper .nav-btn-wrapper{
    margin-top: 3vw;
    padding-bottom: 10rem;
  }
  .global_nav_wrapper .nav-btn-wrapper .btn1{
    width: 12rem;
    font-size: 1.3rem;
  }
  
}


.page-header .header-inner{
  align-items: flex-start;
  justify-content: space-between;
}
.page-header .header-inner .left{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.page-header .header-inner .left .logo{
  width: 12.5rem;
}
.page-header .header-inner .left .logo a{
  padding: 4rem 3rem;
  background: #020422;
}
.page-header .header-inner .left .info{
  margin-left: 2.5rem;
}
.page-header .header-inner .left .info .top{
  display: flex;
  align-items: center;
  margin-top: 1.6rem;
}
.page-header .header-inner .left .info .top .call{
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.5rem;
  margin-right: 0.5rem;
  border-right: 1px solid;
}
.page-header .header-inner .left .info .top .call img{
  width: 0.7rem;
  margin-right: 0.2rem;
}
.page-header .header-inner .left .info .top .call strong{
  font-size: 1.1rem;
  letter-spacing: 0.1rem;
}
.page-header .header-inner .left .info .top small{
  font-size: .86rem;  
  display: block;
  letter-spacing: .01rem;
}
.page-header .header-inner .left .info .breadcrumb{
  margin-top: 2.6rem;
}
.page-header .header-inner .left .info .breadcrumb .box{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.page-header .header-inner .left .info .breadcrumb .box span{
  font-size: 0.7rem;
  color: #020422;
  background: #f2f2f2;
  padding: 0.3rem 1rem;
}
.page-header .header-inner .left .info .breadcrumb .box span.link{
  padding: 0;
}
.page-header .header-inner .left .info .breadcrumb .box span.link a{
  color: #020422;
  background: #f2f2f2;
  padding: 0.3rem 1rem;
}
.page-header .header-inner .left .info .breadcrumb .box small{
  font-size: .7rem;
  display: block;
  margin: 0 0.3rem;
}
.page-header .header-inner .right .links{
  display: none;
}
/* .page-header .header-inner .right .links li{
  margin-bottom: 1rem;
}
.page-header .header-inner .right .links li a{
  background: #020422;
  border-radius: 50%;
  width: 2.5rem;
  margin: 0 auto;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-header .header-inner .right .links li a img{
  width: 48%;
} */

/* .page-header.open .header-inner{
  justify-content: flex-end;
} */
/* .page-header.open .header-inner .left{
  display: none;
} */
.page-header.open .header-inner .right .links{
  display: none;
}

@media screen and (max-width:768px){
  .page-header .header-inner .left .logo{
    width: 7rem;
  }
  .page-header .header-inner .left .logo a{
    padding: 2rem 1rem;    
  }
  .page-header .header-inner .left .logo a img{
    width: 80%;
  }
  .page-header .header-inner .left .info{
    display: none;
  }
}


/* ------------------------------------ 
  humburger  
------------------------------------ */

/* 
@media screen and (max-width:768px){


  header .global_head.humburger{
    background: #2d59a7;
  }
  header .humburger_wapper {
    width: 8vw;
    height: 5vw;
    margin: 0.8vw auto 1vw;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
  }
  .humburger_wapper .humburger_bar {
    display: block;
    height: 1px;
    width: 100%;
    background: #fff;
    margin-right: auto;
    margin-left: auto;
    transition: all 0.3s ease;
  }
  .humburger_wapper .humburger_bar:nth-of-type(1).active {
    transform: translateY(1.5vw) rotate(-45deg);
  }
  .humburger_wapper .humburger_bar:nth-of-type(3).active {
    transform: translateY(-3vw) rotate(45deg);
  }
  .humburger_wapper .humburger_bar:nth-of-type(2).active {
    opacity: 0;
  }
  .humburger_wapper .bar_blue {
    background-color: #3F51B5;
  }
  header .global_head{
    width: 16vw;
    height: 16vw;
  }
  header .global_head p{
    font-size: 2vw;
    color: white;
    letter-spacing: 0.3vw;
    text-indent: 1vw;
  }
  
  
  
  .global_nav_wrapper {    
    height: 100%;
    position: fixed;
    display: block;    
    top: 0;
    padding: 4.5vw 5vw;
    background: #fff;
    z-index: 200;
    transition: all 0.3s ease;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none; 
    width: 100%;    
    padding-top: 20vw;
    right: -100%; 
  }
  .global_nav_wrapper::-webkit-scrollbar {
    display:none;
  }
  .global_nav_wrapper.open {
    right: 7vw;
  }
  .overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    opacity: 0;
    transition: opacity .5s;
  }
  .overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
  
  }
  .global_nav_wrapper dl {
    margin-bottom: 2vw;
  }
  .global_nav_wrapper dt {
    font-family: 'Roboto';
    font-size: 5vw;    
    font-weight: bold;
    color: #2d59a7;
    margin-bottom: 2vw;
    letter-spacing: 0.1vw;
    text-indent: -0.1vw;
  }
  .global_nav_wrapper dd {
    font-size: 0.9vw;
    line-height: 2;
    letter-spacing: 0.1vw;
    text-indent: -0.1vw;
    font-weight: 400;
  }
  .global_nav_wrapper dd a{
    color: #020422;
    text-decoration: none;
  }
  .global_nav_wrapper dd a:hover{
    opacity: .7;
  }
  
 
  
  .global_nav_wrapper.open {
    right: 0;
  }
  .global_nav_wrapper dl {
    margin-bottom: 4vw;
  }
  .global_nav_wrapper dt {
    font-size: 5vw;
    margin-bottom: 2vw;
  }
  .global_nav_wrapper dd {
    font-size: 4vw;
    line-height: 2.5;
    text-indent: 5vw;
  }
}
 */




/* ---------------------------
    main 
--------------------------- */
main {  
  transition: all 0.3s ease;
  position: relative;
  left: 0;
}
main#page {  
  padding-top: 12rem;
}

@media screen and (max-width:1025px){
  main#page {  
    padding-top: 9rem;
  }
}


