@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;
  font-feature-settings: "palt";
}

@media all and (max-width: 1920.5px) {
  html {
    font-size: 0.52vw;
  }
}

@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%*/

}
@keyframes fadeOut { /*animation-nameで設定した値を書く*/

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

  100% {opacity: 0} /*アニメーション終了時は不透明度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;
  word-break: break-all;
}

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

:focus {
  outline: none; }

b {
  font-weight: bold; }

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

.jost{
  font-family: "Jost", sans-serif;
}

/*--------------------
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%;
  height:25.0rem;
  padding:0 4.0rem 0 6.0rem;
}
header.header-top{
  height:33.0rem;
}
.l-header-table{
  width:100%;
  height:100%;
  display:table;
  margin:0 auto;
}
.l-header-table > div{
  display:table-cell;
  vertical-align: top;
}
.l-header-table-left{
  width:30.8rem;
  padding-top:4.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:30.8rem;
}
.l-header-table-center{
  width:auto;
  text-align: right;
  padding-top:4.0rem;
}
.l-header-table-center picture{
  display:inline-block;
  vertical-align: top;
}
.l-header-table-center picture img{
  width:30.0rem;
}
.l-header-table-center-ul{
  display:block;
  vertical-align: top;
  padding-top:4.8rem;
  text-align: right;
}
.l-header-table-center ul{
  display:inline-block;
  text-align: right;
  min-width:18.5rem
}
.l-header-table-center ul li{
  display:block;
  border:1px solid #00377f;
  border-bottom:none;
}
header.header-top .l-header-table-center ul li{
  display:block;
  border:1px solid #FFFFFF;
  border-bottom:none;
}
.l-header-table-center ul.type02 li{
  display:block;
  border:1px solid #FFFFFF;
  border-bottom:none;
}
header.header-top .l-header-table-center ul.type02 li{
  display:block;
  border:1px solid #00377f;
  border-bottom:none;
}
.l-header-table-center ul li:first-of-type{
  border-radius:1.5rem 1.5rem 0 0;
}
.l-header-table-center ul li:last-of-type{
  border-radius:0 0 1.5rem 1.5rem;
  border-bottom:1px solid #00377f;
}
header.header-top .l-header-table-center ul li:last-of-type{
  border-radius:0 0 1.5rem 1.5rem;
  border-bottom:1px solid #FFFFFF;
}
.l-header-table-center ul.type02 li:last-of-type{
  border-bottom:1px solid #FFFFFF;
}
header.header-top .l-header-table-center ul.type02 li:last-of-type{
  border-bottom:1px solid #00377f;
}
.l-header-table-center ul li a{
  white-space: nowrap;
  padding:0.8rem 0.5rem;
  display:block;
  text-align: center;
  color:#00377f;
  
  font-size:clamp(13px, 1.5rem, 15px);
  font-weight:400;
  line-height:2.13;
  letter-spacing: 0em;
}
header.header-top .l-header-table-center ul li a{
  white-space: nowrap;
  padding:0.8rem 0.5rem;
  display:block;
  text-align: center;
  color:#FFFFFF;
  
  font-size:clamp(13px, 1.5rem, 15px);
  font-weight:400;
  line-height:2.13;
  letter-spacing: 0em;
}
.l-header-table-center ul.type02 li a{
  color:#FFFFFF;
}
header.header-top .l-header-table-center ul.type02 li a{
  color:#00377f;
}
/*
.l-header-table-center ul li a:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  inset: auto auto 0 0;
  background: transparent;
  transform: translateX(-100%);
  transition: 0.3s ease;
}
.l-header-table-center ul li a:hover::before {
  transform: translateX(0);
  background: #07328f;
}
*/
.l-header-table-right{
  display:none !important;
}
@media all and (max-width: 767.5px) {
  header{
    width:100%;
    height:14.0rem;
    background: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10002;
    padding: 0 0;
  }
  header.header-top{
    height:14.0rem;
    background: none;
  }
  .l-header-table{
    max-width:100%;
    width:100%;
    height:100%;
    display:table;
    margin:0 auto;
    padding:0 4.0rem;
  }
  .l-header-table > div{
    display:table-cell;
    vertical-align: top;
  }
  .l-header-table-left{
    width:36.8rem;
    padding-top:4.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:36.8rem;
  }
  .l-header-table-center{
    display:none !important;
  }
  .l-header-table-right{
    display:table-cell !important;
    width:auto;
    text-align: right;
    padding-top:4.0rem;
    padding-right:0;
  }
  .l-header-drawer{
    display: inline-block;
    vertical-align: top;
    position:relative;
    width: 8.4rem;
    height: 6.0rem;
  }
  .l-header-drawer:hover{
    cursor: pointer;
  }
  .l-header-drawer__line{
    position: absolute;
    right: 0;
    border: solid #00377f 2px;
    width: 6.0rem;
    height:calc(1.2rem + 4px);
    background:#FFFFFF;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  .l-header-drawer__line:nth-of-type(1) {
    top: 0;
    right:2.4rem;
  }
  .l-header-drawer__line:nth-of-type(2) {
    top: 2.3rem;
  }
  .l-header-drawer__line:nth-of-type(3) {
    top: 4.6rem;
    right:2.4rem;
  }
  .l-header-drawer__line--show:nth-of-type(1) {
    top: 2.3rem;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border: none;
    height:1.2rem;
  }
  .l-header-drawer__line--show:nth-of-type(2) {
    display:none;
    border: none;
    height:1.2rem;
  }
  .l-header-drawer__line--show:nth-of-type(3) {
    top: 2.3rem;
    bottom: auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: none;
    height:1.2rem;
  }
}

@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:0;
    padding: 0 3.0rem 28.0rem;
    -webkit-transition: all .7s;
    transition: all .7s;
    height: 100%;
    text-align:right;
    
    background: url("../images/common/spmenu-bg01_sp.png") bottom center no-repeat #00377f;
    background-size: 100% auto;
    min-height:50.0rem;
    
    -webkit-transition: all .7s;
    transition: all .7s;
    
    opacity:0;
    pointer-events: none;
    visibility: hidden;
  }
  .l-sp-nav--show {
    top:0;
    right: 0;
    overflow-y: auto;
    height: 100%;
    
    pointer-events: auto;
    animation: fadeIn 0.5s linear 0s forwards;
    visibility: visible;
  }
  .l-sp-nav--showout {
    top:0;
    right: 0;
    overflow-y: auto;
    height: 100%;
    
    pointer-events: auto;
    animation: fadeOut 0.5s linear 0s forwards;
    visibility: hidden;
  }
  .l-sp-nav > a > picture{
    display:block;
    margin-top:15.0rem;
    text-align:right;
    padding-right:3.4rem;
  }
  .l-sp-nav > a > picture img{
    width:60.0rem;
  }
  .l-sp-nav-list {
    width: 40.0rem;
    display: inline-block;
    padding-top:10.0rem;
    text-align: right;
    font-size:0;
  }
  .l-sp-nav-list01 {
    display:block;
    vertical-align: top;
    min-width:auto;
    margin-right:0;
  }
  .l-sp-nav-list{
    display:inline-block;
    text-align: right;
    min-width:40.0rem;
    padding-right:3.4rem;
  }
  .l-sp-nav-list li{
    display:block;
    border:1px solid #FFFFFF;
    border-bottom:none;
  }
  .l-sp-nav-list li:first-of-type{
    border-radius:1.5rem 1.5rem 0 0;
  }
  .l-sp-nav-list li:last-of-type{
    border-radius:0 0 1.5rem 1.5rem;
    border-bottom:1px solid #FFFFFF;
  }
  .l-sp-nav-list01-link {
    white-space: nowrap;
    padding:1.8rem 4.0rem;
    display:block;
    text-align: center;
    color:#FFFFFF;

    font-size:3.0rem;
    font-weight:400;
    line-height:2.13;
    letter-spacing: 0em;
  }
  .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;
  }
}

@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;
  text-align: right;
}
.l-page-top img {
  max-width: 4.6rem;
  width: 100%;
  aspect-ratio: 1 / 1;
}
@media all and (max-width: 767.5px) {
  .l-page-top {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 99;
    margin: 0 auto;
    text-align: right;
  }
  .l-page-top img {
    max-width: 6.9rem;
    width: 100%;
    aspect-ratio: 1 / 1;
  }
}



.page-title{
  display: inline-block;
  text-align: left;
  color: #00377f;
  font-size: clamp(24px, 3.2rem, 32px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.2em;
  position: relative;
}
.page-title:after{
  position: absolute;
  content: "";
  display: inline-block;
  width: 40px;
  height: 8px;
  border-bottom: 8px solid #c9b05d;
  bottom: -2.0rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}

ul.page-breadcrumb{
  padding-top:7.5rem;
  padding-bottom:2.0rem;
  display:block;
  text-align: right;
  font-size:0;
}
ul.page-breadcrumb li{
  display:inline-block;
  text-align: right;
  color: #333333;
  
  font-size:clamp(11px, 1.3rem, 13px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
ul.page-breadcrumb li a{
  text-decoration: underline;
  text-align: right;
  color: #333333;
  
  font-size:clamp(11px, 1.3rem, 13px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}


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

.l-bottom{
  background: url(../images/common/bottom-bg01_pc.png) bottom center no-repeat #00377f;
  background-size: 100% auto;
  min-height: 40.0rem;
  padding:12.0rem 0 9.0rem;
}
.l-bottom-inner{
  max-width:calc(1460px + 12.0rem);
  width:100%;
  margin:0 auto;
  padding:0 6.0rem;
}
.l-bottom-table{
  width:100%;
  display:table;
}
.l-bottom-table > div{
  display:table-cell;
  vertical-align: bottom;
  text-align: left;
}
.l-bottom-table-left{
  width:60.0rem;
}
.l-bottom-table-left h2{
  display: inline-block;
  text-align: left;
  color: #FFFFFF;
  font-size: clamp(24px, 3.2rem, 32px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.2em;
  position: relative;
}
.l-bottom-table-left h2:after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 40px;
  height: 8px;
  border-bottom: 8px solid #c9b05d;
  bottom: -2.0rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.l-bottom-table-left p{
  padding:7.0rem 0 0 4.0rem;
  text-align: left;
  color: #FFFFFF;
  
  font-size:clamp(14px, 1.6rem, 16px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
.l-bottom-table-right{
  width:auto;
}
.l-bottom-table-right ul{
  display:block;
  text-align: left;
  font-size:0;
}
.l-bottom-table-right ul li{
  display:inline-block;
  vertical-align: middle;
}
.l-bottom-table-right ul li a{
  display:inline-block;
}
.l-bottom-table-right ul li.l-bottom-table-right-tel a{
  font-family: "Jost", sans-serif;
  padding-left:7.0rem;
  padding-right:4.0rem;
  background: url(../images/common/bottom-icon01_pc.png) left center no-repeat transparent;
  background-size: 5.0rem auto;
  min-height: 5.2rem;
  text-align: left;
  color: #FFFFFF;
  
  font-size: clamp(27px, 3.6rem, 36px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.1em;
}
.l-bottom-table-right ul li.l-bottom-table-right-mail a{
  border:1px solid #ffffff;
  padding:2.0rem 5.5rem 2.0rem 10.8rem;
  background: url(../images/common/bottom-icon02_pc.png) left 3.0rem center no-repeat transparent;
  background-size: 5.0rem auto;
  min-height: 5.2rem;
  text-align: left;
  color: #FFFFFF;
  
  font-size:clamp(18px, 2.4rem, 24px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.2em;
}


@media all and (max-width: 767.5px) {
  .l-bottom{
    background: #00377f;
    min-height: auto;
    padding:12.0rem 4.0rem 8.0rem;
  }
  .l-bottom-inner{
    max-width:100%;
    width:100%;
    margin:0 auto;
    padding:0 0;
  }
  .l-bottom-table{
    width:100%;
    display:block;
  }
  .l-bottom-table > div{
    width:100%;
    display:block;
    vertical-align: bottom;
    text-align: center;
  }
  .l-bottom-table-left{
    width:100%;
    display:block;
  }
  .l-bottom-table-left h2{
    display: inline-block;
    text-align: left;
    color: #FFFFFF;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.2em;
    position: relative;
  }
  .l-bottom-table-left h2:after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 4.0rem;
    height: 0.8rem;
    border-bottom: 0.8rem solid #c9b05d;
    bottom: -2.0rem;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .l-bottom-table-left p{
    padding:8.0rem 0 8.0rem 8.0rem;
    text-align: left;
    color: #FFFFFF;

    font-size:2.6rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.05em;
  }
  .l-bottom-table-right{
    width:100%;
    display:block;
  }
  .l-bottom-table-right ul{
    display:block;
    text-align: center;
    font-size:0;
  }
  .l-bottom-table-right ul li{
    display:inline-block;
    vertical-align: middle;
  }
  .l-bottom-table-right ul li a{
    display:inline-block;
  }
  .l-bottom-table-right ul li.l-bottom-table-right-tel a{
    font-family: "Jost", sans-serif;
    padding-left:7.0rem;
    padding-right:2.0rem;
    background: url(../images/common/bottom-icon01_sp.png) left center no-repeat transparent;
    background-size: 5.0rem auto;
    min-height: 5.2rem;
    text-align: left;
    color: #FFFFFF;

    font-size: 3.6rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0.1em;
  }
  .l-bottom-table-right ul li.l-bottom-table-right-mail a{
    border:1px solid #ffffff;
    padding:2.0rem 2.5rem 2.0rem 10.8rem;
    background: url(../images/common/bottom-icon02_sp.png) left 3.0rem center no-repeat transparent;
    background-size: 5.0rem auto;
    min-height: 5.2rem;
    text-align: left;
    color: #FFFFFF;

    font-size:2.4rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.2em;
  }
}


footer{
  padding:8.0rem 0 3.0rem;
}
.l-footer{
  max-width:calc(1460px + 16.0rem);
  width:100%;
  margin:0 auto;
  padding:0 6.0rem 0 10.0rem;
}
.l-footer-table{
  width:100%;
  display:table;
}
.l-footer-table > div{
  width:50%;
  display:table-cell;
  vertical-align: top;
}
.l-footer-table-left{
  text-align: left;
}
.l-footer-table-left-ul01{
  display:block;
  text-align: left;
}
.l-footer-table-left-ul01 li{
  display:block;
  text-align: left;
}
.l-footer-table-left-ul01 li a{
  display:inline-block;
  text-align: left;
  color: #00377f;
  
  font-size:clamp(14px, 1.8rem, 18px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
}
.l-footer-table-left-ul02{
  padding-top:1.5rem;
  display:block;
  text-align: left;
}
.l-footer-table-left-ul02 li{
  display:block;
  text-align: left;
}
.l-footer-table-left-ul02 li a{
  display:inline-block;
  text-align: left;
  color: #333333;
  
  font-size:clamp(13px, 1.5rem, 15px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
.l-footer-table-right{
  text-align: right;
}
.l-footer-table-right picture{
  display:block;
  padding-right:4.5rem;
}
.l-footer-table-right picture img{
  width:10.0rem;
}

.l-footer-table02{
  width:100%;
  display:table;
  margin:2.5rem auto 0;
}
.l-footer-table02 > div{
  width:50%;
  display:table-cell;
  vertical-align: bottom;
}
.l-footer-table02-left{
  text-align: left;
}
.l-footer-table02-left-title{
  text-align: left;
  color: #333333;
  
  font-size:clamp(14px, 1.8rem, 18px);
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0em;
}
.l-footer-table02-left-message{
  text-align: left;
  color: #333333;
  
  font-size:clamp(14px, 1.6rem, 16px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
.l-footer-table02-left-message a{
  text-align: left;
  color: #333333;
  
  font-size:clamp(14px, 1.6rem, 16px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}
.l-footer-table02-right{
  text-align: right;
}
.l-footer-table02-right-copy{
  text-align: right;
  color: #333333;
  
  font-size:clamp(11px, 1.3rem, 13px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0em;
}


@media all and (max-width: 767.5px) {
  footer{
    padding:8.0rem 6.0rem 3.0rem;
  }
  .l-footer{
    max-width:100%;
    width:100%;
    margin:0 auto;
    padding:0 0;
  }
  .l-footer-table{
    width:100%;
    display:table;
  }
  .l-footer-table > div{
    width:50%;
    display:table-cell;
    vertical-align: top;
  }
  .l-footer-table-left{
    text-align: left;
  }
  .l-footer-table-left-ul01{
    display:block;
    text-align: left;
    padding-top:2.0rem;
  }
  .l-footer-table-left-ul01 li{
    display:block;
    text-align: left;
  }
  .l-footer-table-left-ul01 li a{
    display:inline-block;
    text-align: left;
    color: #00377f;

    font-size:2.4rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  .l-footer-table-left-ul02{
    padding-top:1.5rem;
    display:block;
    text-align: left;
  }
  .l-footer-table-left-ul02 li{
    display:block;
    text-align: left;
  }
  .l-footer-table-left-ul02 li a{
    display:inline-block;
    text-align: left;
    color: #333333;

    font-size:2.4rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  .l-footer-table-right{
    text-align: right;
  }
  .l-footer-table-right picture{
    display:block;
    padding-right:0;
  }
  .l-footer-table-right picture img{
    width:10.0rem;
  }

  .l-footer-table02{
    width:100%;
    display:block;
    margin:3.5rem auto 0;
  }
  .l-footer-table02 > div{
    width:100%;
    display:block;
    vertical-align: bottom;
  }
  .l-footer-table02-left{
    width:100%;
    display:block;
    text-align: left;
  }
  .l-footer-table02-left-title{
    text-align: left;
    color: #333333;

    font-size:2.6rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  .l-footer-table02-left-message{
    text-align: left;
    color: #333333;

    font-size:2.4rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  .l-footer-table02-left-message a{
    text-align: left;
    color: #333333;

    font-size:2.4rem;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0em;
  }
  .l-footer-table02-right{
    width:100%;
    display:block;
    text-align: left;
    padding-top:1.0rem;
  }
  .l-footer-table02-right-copy{
    text-align: left;
    color: #333333;

    font-size:2.4rem;
    font-weight: 400;
    line-height: 1.75;
    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;
  margin-top:-7.0rem;
}
main.top{
  margin-top:-33.0rem;
}
@media all and (max-width: 767.5px) {
  main{
    padding-top:0;
    margin-top:0;
  }
  main.top{
    margin-top:0;
  }
}


.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-active02-top-block02{
  /*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;
  /*これで値を保持*/
}

