@charset "UTF-8";
/* --------------------------------------------

FileName    :    style.css

-------------------------------------------- */
/*
$size01: 1093.2;
$size_sp: 767.5;

$size01_px: 1093.2px;
$size_sp_px: 767.5px;
*/
/*--------------------
common.scss
--------------------*/
/*==================================================
1.layout
==================================================*/
/*--------------------
html,body,wrapper
--------------------*/

html {
  font-family: 'Noto Sans JP' ,sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  font-size: 10px;
  letter-spacing: 0;
  color: #222222;
  -webkit-font-smoothing:subpixel-antialiased;
}
@media all and (max-width: 1560.5px) {
  html {
    font-size: 0.64vw;
  }
}
@media all and (max-width: 767.5px) {
  html {
    font-size: 1.33vw;
  }
}


body {
  width: 100%;
  opacity: 0.01
}
body.active {
  animation: fadeIn 1.0s linear 0s forwards;
}
@keyframes fadeIn { /*animation-nameで設定した値を書く*/

  0% {opacity: 0.01} /*アニメーション開始時は不透明度0%*/

  100% {opacity: 1} /*アニメーション終了時は不透明度100%*/

}

body * {
  box-sizing: border-box; }

a[href^="tel:"] {
  pointer-events: none;
}

@media all and (max-width: 767.5px) {
  body {
    width: 100%; }

  a[href^="tel:"] {
    pointer-events: auto;
  }
}
a {
  transition: 0.3s;
  color: #222222;
   }

a:hover {
  cursor: pointer;
  opacity: 1.0;
}

:focus {
  outline: none; }

b {
  font-weight: bold; }

img{
  height:auto;
  image-rendering: -webkit-optimize-contrast;
}

sup{
  vertical-align: super;
  font-size: smaller;
}


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

/*
background: url("../images/common/header-icon01_pc.png") left center no-repeat transparent;
background-size: 3.0rem auto;
min-height:3.0rem;
*/

header{
  width:100%;
  min-height:9.0rem;
  position: fixed;
  top:0;
  z-index:100;
  background:rgba(255,255,255,1.0);
}
header.active{
  background:rgba(255,255,255,0.9);
}
.l-header-table{
  max-width:192.0rem;
  width:100%;
  height:9.0rem;
  display:table;
  margin:0 auto;
  padding:0 6.0rem;
}
.l-header-table > div{
  display:table-cell;
  vertical-align: middle;
}
.l-header-table-left{
  width:41.7rem;
  padding-top:0;
}
.l-header-table-left h1,
.l-header-table-left > div{
  text-align: left;
}
.l-header-table-left picture{
  display:block;
  text-align: left;
}
.l-header-table-left picture img{
  width:41.7rem;
}
.l-header-table-center{
  width:auto;
  text-align: right;
  padding-top:0;
}
.l-header-table-center ul{
  display:inline-block;
  vertical-align: top;
  overflow: hidden;
}
.l-header-table-center ul li{
  display:inline-block;
  vertical-align: middle;
  padding-left:1.5rem;
}
.l-header-table-center ul li:first-of-type{
  padding-left:0;
}
.l-header-table-center ul li a{
  display:inline-block;
  text-align: left;
  color:#333333;
  
  font-size:clamp(12px, 1.8rem, 18px);
  font-weight:400;
  line-height:1;
  letter-spacing: 0.1em;
}
.l-header-table-right{
  display:none !important;
}
@media all and (max-width: 767.5px) {
  header{
    width:100%;
    min-height:auto;
    height:9.0rem;
    background: rgba(255, 255, 255, 1.0);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10002;
    padding: 0 0;
  }
  header.active{
    background: rgba(255, 255, 255, 0.9);
  }
  .l-header-table{
    max-width:100%;
    width:100%;
    height:100%;
    display:table;
    margin:0 auto;
    padding:0 3.0rem;
  }
  .l-header-table > div{
    display:table-cell;
    vertical-align: top;
  }
  .l-header-table-left{
    width:29.2rem;
    padding-top:2.0rem;
  }
  .l-header-table-left h1,
  .l-header-table-left > div{
    text-align: left;
  }
  .l-header-table-left a:hover{
    opacity:0.7;
  }
  .l-header-table-left picture{
    display:block;
    text-align: left;
  }
  .l-header-table-left picture img{
    width:29.2rem;
  }
  .l-header-table-center{
    display:none !important;
  }
  .l-header-table-right{
    display:table-cell !important;
    width:10.0rem;
    text-align: right;
    padding-top:1.0rem;
    padding-right:0;
  }
  .l-header-drawer{
    display: inline-block;
    vertical-align: top;
    position:relative;
    width: 4.0rem;
    height: 6.2rem;
  }
  .l-header-drawer:hover{
    cursor: pointer;
  }
  .l-header-drawer__line{
    position: absolute;
    right: 0;
    border-top: solid #212121 0.3rem;
    width: 4.0rem;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  .l-header-drawer__line:nth-of-type(1) {
    top: 2.2rem;
  }
  .l-header-drawer__line:nth-of-type(2) {
    top: 3.3rem;
  }
  .l-header-drawer__line:nth-of-type(3) {
    top: 4.4rem;
  }
  .l-header-drawer__line--show:nth-of-type(1) {
    top: 3.3rem;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .l-header-drawer__line--show:nth-of-type(2) {
    display:none;
  }
  .l-header-drawer__line--show:nth-of-type(3) {
    top: 3.3rem;
    bottom: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@media all and (max-width: 767.5px) {
  
}

/*--------------------
l-sp-nav
--------------------*/
nav{
  display:none !important;
}
@media all and (max-width: 767.5px) {
  nav{
    display:block !important;
  }
  .l-sp-nav {
    width: 100%;
    position: fixed;
    z-index: 10001;
    top: 0;
    right:-100%;
    min-height: auto;
    padding: 0 3.0rem 28.0rem;
    background: rgba(0, 54, 133, 0.95);
    -webkit-transition: all .7s;
    transition: all .7s;
    height: 100%;
  }
  .l-sp-nav--show {
    top:0;
    right: 0;
    overflow-y: auto;
    height: 100%;
    -webkit-transition: all .7s;
    transition: all .7s;
  }
  .l-sp-nav-list {
    width: 100%;
    display: block;
    padding-top:9.0rem;
    text-align: left;
    font-size:0;
  }
  .l-sp-nav-list01 {
    width: 100%;
    display: block;
    vertical-align: top;
    padding: 2.5rem 0 0;
    min-width:auto;
    margin-right:0;
  }
  .l-sp-nav-list01 ul{
    padding-left:2.8rem;
    display:none;
  }
  .l-sp-nav-list01 p{
    width: auto;
    display: inline-block;
    padding-right: 2.8rem;
    background: url(../images/common/header-spmenu-icon01_sp.png) right center no-repeat transparent;
    background-size: 1.8rem auto;
    min-height: 1.2rem;
    transition: 0.3s;
  }
  .l-sp-nav-list01 p.open{
    background: url(../images/common/header-spmenu-icon02_sp.png) right center no-repeat transparent;
    background-size: 1.8rem auto;
    min-height: 1.2rem;
  }
  .l-sp-nav-list01-link {
    width: 100%;
    display: block;
    margin: 0 0;
    color: #FFFFFF;
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
  .l-sp-nav-bg {
    pointer-events: none;
    position: fixed;
    z-index: 999;
    top: 7.0rem;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  .l-sp-nav-bg--show {
    opacity: 1;
  }
  .l-sp-nav-entry{
    text-align: center;
    padding-top:7.0rem;
  }
  .l-sp-nav-entry a{
    width:62.4rem;
  }
  .l-sp-nav-entry a img{
    width:62.4rem;
    height:auto;
  }
}

@media all and (max-width: 767.5px) {
  
}



@media all and (max-width: 767.5px) {
  
}

.l-page-top {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 99;
  margin: 0 auto;
  visibility: hidden;
  transition: 1.2s;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
}
.l-page-top a{
  margin: 0 auto;
  display:inline-block;
  width:8.0rem;
  border:1px solid #3389CA;
  background-color: #3389CA;
  padding:0.8rem 0;
  text-align: center;
  transition: 0.3s;
}
.l-page-top img {
  max-width: 5.6rem;
  width: 100%;
  transition: 0.3s;
}
.l-page-top:hover a{
  background-color: #FFFFFF;
}
.l-page-top:hover img {
  filter: brightness(0) saturate(100%) invert(53%) sepia(94%) saturate(1458%) hue-rotate(178deg) brightness(82%) contrast(89%);
}

@media all and (max-width: 767.5px) {
  .l-page-top {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 99;
    margin: 0 auto;
    visibility: hidden;
    transition: 1.2s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  .l-page-top a{
    margin: 0 auto;
    display:inline-block;
    width:12.0rem;
    border:1px solid #3389CA;
    background-color: #3389CA;
    padding:1.6rem 0;
    text-align: center;
    transition: 0.3s;
  }
  .l-page-top img {
    max-width: 8.0rem;
    width: 100%;
    transition: 0.3s;
  }
  .l-page-top:hover a{
    background-color: #FFFFFF;
  }
  .l-page-top:hover img {
    filter: brightness(0) saturate(100%) invert(53%) sepia(94%) saturate(1458%) hue-rotate(178deg) brightness(82%) contrast(89%);
  }
}



@media all and (max-width: 767.5px) {
  
}



footer{
  background:#FFFFFF;
  position: relative;
}
.l-footer01{
  padding:6.5rem 0 7.5rem;
  border-bottom:1px solid #003685;
}
.l-footer-inner{
  max-width:calc(1170px + 12.0rem);
  width:100%;
  margin:0 auto;
  padding:0 6.0rem;
}
.l-footer01-table{
  width:100%;
  display:table;
}
.l-footer01-table > div{
  display:table-cell;
  vertical-align: top;
}
.l-footer01-table-left{
  width:65.0rem;
  text-align: left;
}
.l-footer01-table-left-image{
  
}
.l-footer01-table-left-image a{
  
}
.l-footer01-table-left-image a img{
  width:41.7rem;
}
.l-footer01-table-left-message{
  padding-top:2.0rem;
  text-align: left;
  color:#212121;
  
  font-size: clamp(14px, 1.6rem, 16px);
  font-weight:400;
  line-height:2.0;
  letter-spacing: 0.025em;
}
.l-footer01-table-left-message span{
  font-weight:700;
}
.l-footer01-table-right{
  width:auto;
  text-align: right;
}
.l-footer01-table-right ul{
  display:block;
  text-align: left;
}
.l-footer01-table-right ul li{
  width:21.5rem;
  display:inline-block;
  vertical-align: top;
  padding-left:2.5rem;
  padding-bottom:2.5rem;
  text-align: left;
}
.l-footer01-table-right ul li:first-of-type,
.l-footer01-table-right ul li:nth-of-type(3n+1){
  padding-left:0;
}
.l-footer01-table-right ul li:nth-of-type(3n+1){
  width:20.0rem;
}
.l-footer01-table-right ul li:nth-of-type(3n+2){
  width:16.0rem;
}
.l-footer01-table-right ul li:nth-of-type(3n){
  width:auto;
}
.l-footer01-table-right ul li a{
  text-align: left;
  color:#212121;
  
  font-size:clamp(13px, 1.5rem, 15px);
  font-weight:400;
  line-height:1.75;
  letter-spacing: 0.1em;
}
.l-footer01-table-right ul li a span{
  border-left:1px solid #212121;
  margin-left:0.5rem;
  padding-left:0.8rem;
  display:block;
  text-align: left;
  color:#212121;
  
  font-size:clamp(13px, 1.5rem, 15px);
  font-weight:400;
  line-height:1.2;
  letter-spacing: 0.1em;
}


@media all and (max-width: 767.5px) {
  footer{
    background:#FFFFFF;
    position: relative;
  }
  .l-footer01{
    padding:6.5rem 5.0rem 7.5rem;
    border-bottom:1px solid #003685;
  }
  .l-footer-inner{
    max-width:100%;
    width:100%;
    margin:0 auto;
    padding:0 0;
  }
  .l-footer01-table{
    width:100%;
    display:block;
  }
  .l-footer01-table > div{
    width:100%;
    display:block;
    vertical-align: top;
  }
  .l-footer01-table-left{
    width:100%;
    display:block;
    text-align: center;
  }
  .l-footer01-table-left-image{

  }
  .l-footer01-table-left-image a{

  }
  .l-footer01-table-left-image a img{
    width:41.7rem;
  }
  .l-footer01-table-left-message{
    padding-top:2.0rem;
    text-align: center;
    color:#212121;

    font-size:2.6rem;
    font-weight:400;
    line-height:1.75;
    letter-spacing: 0.025em;
  }
  .l-footer01-table-left-message span{
    font-weight:700;
  }
  .l-footer01-table-right{
    width:100%;
    display:block;
    text-align: left;
    padding-top:4.0rem;
  }
  .l-footer01-table-right ul{
    display:block;
    text-align: left;
    font-size:0;
  }
  .l-footer01-table-right ul li{
    width:50% !important;
    display:inline-block;
    vertical-align: top;
    padding-left:0;
    text-align: left;
    padding-top:3.0rem;
  }
  .l-footer01-table-right ul li:first-of-type{
    padding-left:0;
  }
  .l-footer01-table-right ul li:first-of-type,
  .l-footer01-table-right ul li:nth-of-type(3n+1){
    padding-left:0;
  }
  .l-footer01-table-right ul li:nth-of-type(3n+1){
    width:auto;
  }
  .l-footer01-table-right ul li:nth-of-type(3n+2){
    width:auto;
  }
  .l-footer01-table-right ul li:nth-of-type(3n){
    width:auto;
  }
  .l-footer01-table-right ul li:nth-of-type(odd){
    padding-right:0.5rem;;
  }
  .l-footer01-table-right ul li:nth-of-type(even){
    padding-left:0.5rem;;
  }
  .l-footer01-table-right ul li a{
    text-align: left;
    color:#212121;

    font-size:2.6rem;
    font-weight:700;
    line-height:1.75;
    letter-spacing: 0.1em;
  }
  .l-footer01-table-right ul li a span{
    border-left:1px solid #212121;
    margin-left:1.0rem;
    padding-left:1.5rem;
    display:block;
    text-align: left;
    color:#212121;

    font-size:2.6rem;
    font-weight:400;
    line-height:1.2;
    letter-spacing: 0.1em;
  }
}


.l-footer02{
  padding:1.5rem 0;
}
.l-footer02-table{
  width:100%;
  display:table;
}
.l-footer02-table > div{
   width:50%;
  display:table-cell;
  vertical-align: top;
}
.l-footer02-table-left{
  text-align: left;
}
.l-footer02-table-left p{
  
}
.l-footer02-table-left p a{
  padding-left:1.2rem;
  background: url(../images/footer-icon01_pc.png) left top 0.35rem no-repeat transparent;
  background-size: 1.0rem auto;
  min-height: 1.4rem;  
  text-align: left;
  color:#212121;
  
  font-size:clamp(10px, 1.2rem, 12px);
  font-weight:400;
  line-height:1.2;
  letter-spacing: 0em;
}
.l-footer02-table-right{
  text-align: right;
}
.l-footer02-table-right p{ 
  text-align: right;
  color:#212121;
  
  font-size:clamp(10px, 1.2rem, 12px);
  font-weight:400;
  line-height:1.2;
  letter-spacing: 0em;
}


@media all and (max-width: 767.5px) {
  .l-footer02{
    padding:3.0rem 0;
  }
  .l-footer02-table{
    width:100%;
    display:block;
  }
  .l-footer02-table > div{
    width:100%;
    display:block;
    vertical-align: top;
  }
  .l-footer02-table-left{
    width:100%;
    display:block;
    text-align: center;
  }
  .l-footer02-table-left p{
    text-align: center;
  }
  .l-footer02-table-left p a{
    display:inline-block;
    padding-left:2.5rem;
    background: url(../images/footer-icon01_pc.png) left center no-repeat transparent;
    background-size: 2.0rem auto;
    min-height: 2.8rem;  
    text-align: center;
    color:#212121;

    font-size:2.4rem;
    font-weight:400;
    line-height:1.2;
    letter-spacing: 0em;
  }
  .l-footer02-table-right{
    width:100%;
    display:block;
    text-align: center;
    padding-top:2.0rem;
  }
  .l-footer02-table-right p{ 
    text-align: center;
    color:#212121;

    font-size:2.4rem;
    font-weight:400;
    line-height:1.2;
    letter-spacing: 0em;
  }
}


/*==================================================
2.sp pc
==================================================*/
.pc-only {
  display: block !important;
}
.pc-inline {
  display: inline !important;
}
.sp-only {
  display: none !important;
}
.sp-inline {
  display: none !important;
}
@media all and (max-width: 767.5px) {
  .pc-only {
    display: none !important;
  }
  .pc-inline {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
  .sp-inline {
    display: inline !important;
  }
}


.pc-text-left {
  text-align: left !important;
}
.pc-text-center {
  text-align: center !important;
}
.pc-text-right {
  text-align: right !important;
}
@media all and (max-width: 767.5px) {
  .sp-text-left {
    text-align: left !important;
  }
  .sp-text-center {
    text-align: center !important;
  }
  .sp-text-right {
    text-align: right !important;
  }
}

main{
  display: block;
  
}
@media all and (max-width: 767.5px) {
  main{
    
  }
}



.animation02{
  opacity: 0;
}
.animation03{
  opacity: 0;
}
.js-active02{
  /*opacity: 0;*/
  animation-duration: 1.2s;
  /*アニメーション時間*/
  animation-delay: 0s;
  /*変化開始の時間*/
  animation-name: fadeInUpMin;
  /*アニメーション名*/
  /*animation-name: fadeIn;*/
  /*アニメーション名*/
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  /*これで値を保持*/
}
.js-active03{
  /*opacity: 0;*/
  animation-duration: 1.2s;
  /*アニメーション時間*/
  animation-delay: 0.5s;
  /*変化開始の時間*/
  animation-name: fadeInUpMin;
  /*アニメーション名*/
  /*animation-name: fadeIn;*/
  /*アニメーション名*/
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  /*これで値を保持*/
}

