*, *:before, *:after {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 15px;
  font-size: 1.5rem;
}
a {
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: #000;
}
ul, ol, dl {
  list-style: none;
}
html {
  font-size: 62.5%;
}
input[type=date],
input[type=submit]{
  -webkit-appearance: none;
  appearance: none;
}
input,
textarea{
  padding: 15px 20px;
  width: 100%;
  border: #666666 1px solid;
  border-radius: 5px;
}
input[type=radio],
input[type=checkbox]{
  width: auto;
  padding: 0;
}
span.wpcf7-list-item{
  display: block;
}
img {
  max-width: 100%;
  height: auto;
}
body {
  color: #000;
  background: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: "NotoSansJP Medium";
  font-style: normal;
  overflow-x: hidden;
  position: relative;
}
h1{
  font-size: 40px;
  font-size:4rem;
  margin-bottom: 20px;
  font-weight: bold;
}
h3{
  font-size: 25px;
  font-size: 2.5rem;
  font-weight: bold;
}
p{
  margin: 30px 0;
  line-height: 2.1;
  font-size: 13px;
}
span{
  font-size: inherit;
  font-weight: inherit;
}
button{
  background: none;
}

@media screen and (max-width: 1024px) and (min-width: 769px){
  h1{
    font-size: 28px;
    font-size:2.8rem;
  }
  h2{
    font-size:20px;
    font-size:2rem;
  }
}
@media screen and (max-width: 768px){
  *, *:before, *:after {
    font-size: 13px;
    font-size: 1.3rem;
  }
  h1{
    font-size:35px;
    font-size:3.5rem;
  }
  h2{
    font-size:28px;
    font-size:2.8rem;
  }
  .table dt{
    padding: 5%; 
    width: 45%;   
  }
  .table dd{
    padding: 5%;
  }
  input,
  textarea{
    padding: 10px;
  }
}

.pc-only{
  display: block;
}
.sp-only{
  display: none;
}

@media screen and (max-width: 768px){
  .pc-only{
    display: none!important;
  }
  .sp-only{
    display: block;
  }  
}

.common {
  max-width: 1080px;
  margin:0px auto;
  padding: 100px 0;
  width: 100%;
}
main{
  transition: all 1s;
  overflow: hidden;
}

@media screen and (max-width: 1024px) and (min-width: 769px){
  .common{
    width:90%;
  }
}
@media screen and (max-width: 768px){
  .common{
    margin: 0 auto;
    width: 90%;
  }
}

/*フォント
=======================================================*/
@font-face {
	font-family: "Figtree SemiBold";
	src: url("../font/Figtree-SemiBold.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "NotoSansJP Regular";
	src: url("../font/NotoSansJP-Regular.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "NotoSansJP Medium";
	src: url("../font/NotoSansJP-Medium.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "NotoSansJP SemiBold";
	src: url("../font/NotoSansJP-SemiBold.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "NotoSansJP Bold";
	src: url("../font/NotoSansJP-Bold.ttf");
	font-weight: 500;
}

/*共通アニメーション
=======================================================*/

/* スクロールありで下から上 */
.fadein1 {
  opacity : 0;
  transform: translateY(50px);
  transition: all 1.5s;
}
/* スクロールありで右から左 */
.fadein2 {
  opacity : 0;
  transform: translateX(-50px);
  transition: all 2s;
}
/* スクロールありで左から右 */
.fadein3 {
  opacity : 0;
  transform: translateX(50px);
  transition: all 2s;
}
/* スクロールありで上から下 */
.fadein4 {
  opacity : 0;
  transform: translateY(-50px);
  transition: all 1.5s;
}

/* スクロールなし下から上でフェードイン */
.no-fadein1 {
  animation-duration: 2s;
  animation-name: fadein1;
}
/* スクロールなしで上から下フェードイン */
.no-fadein2 {
  animation-duration: 2s;
  animation-name: no-fadein2;
}

@keyframes fadein1 {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(50px);
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0);
  }
}
@keyframes no-fadein2 {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*header
=======================================================*/
header{
  width:100%;
  animation-duration: 0.5s;
  z-index: 99999;
  position: relative;
}
.header-inner{
  width: 65%;
  height: 60px;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.header-logo{
  margin-top: 30px;
  position: fixed;
}
.header-logo img{
  width: 100%;
  height: 50px;
  display: block;
  object-fit: contain;
}
.header-nav{
  margin-top: 45px;
  margin-left: auto;
}
.header-nav ul{
  display: flex;
  width: 100%;
  justify-content: flex-end;
}
.header-nav ul li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-nav ul li:hover{
  background: #000;
}
.header-nav ul li:hover a{
  color: #fff;
}
.header-nav ul li img{
  width: 25px;
  height: 25px;
}
.header-nav ul li a{
  display: block;
  font-size: 20px;
  font-family: "Figtree SemiBold";
  text-decoration: none;
  height: 60px;
  line-height: 60px;
  text-align: center;
  position: relative;
  padding: 0 20px;
}

@media screen and (max-width: 1300px){
  .header-inner{
    width: 100%;
  }
}
@media screen and (max-width: 768px){
  .header{
    height:60px;
  }
  .header-inner{
    height: 60px;
  }
  .header-logo{
    width: 150px;
    margin-top: 0;
    z-index: 9999;
  }
  .header-logo a{
    z-index: 9999;
    position: relative;
  }
  .header-logo img{
    margin-left: 10px;
  }
  .header-nav{
    margin-top: 0;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    background: #fff;
    display: none;
  }
}

/* ヘッダースクロール */
header::after{
  content: "";
  background: url(../img/header-bg-pc.png) no-repeat;
  background-size: contain;
  background-position: 19.2% 70%;
  height: 179px;
  width: 2100px;
  display: block;
  top: -30px;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

@media screen and (max-width: 768px){
  header.is-anime{
    width:100%;
    position: fixed;
    top:0;
    left:0;
    z-index:99999;
    visibility: visible;
    animation-duration: 0.5s;
    animation-name: slideDown;
  }
  header::after{
    content: unset;
  }
  header.is-anime::after{
    content: "";
    background: url(../img/header-bg-sp.png) no-repeat;
    background-size: contain;
    background-position: top center;
    height: 14vh;
    width: 100vw;
    display: block;
    top: 0;
    position: absolute;
    z-index: 9998;
    left: 0;
    right: 0;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
  }
  header :has(> .header-nav.is-open){
    animation:none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
  }
  header :has(> .header-nav.is-open) .header-logo::after {
    content: "";
    background: url(../img/header-bg-sp.png) no-repeat;
    background-size: contain;
    height: 14vh;
    width: 100vw;
    display: block;
    top: -5px;
    position: absolute;
    z-index: 9998;
    left: 0;
  }
}

/* ハンバーガーメニュー */
@media screen and (max-width: 768px){
  .header-nav.is-open{
    display: block;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
    height: 60vh;
    width: 100%;
    padding-top: 14vh;
    box-shadow: 0px 2px 5px #eee;
    position: fixed;
  }
  .header-nav ul{
    width: 80%;
    margin: 0 auto;
    flex-wrap: wrap;
  }
  .header-nav ul li{
    width: 100%;
    display: block;
    margin-right: 0;
  }
  .header-nav ul li a{
    color:#000;
    font-size: 22px;
    border-bottom: 1px solid #D9D9D9;
    text-align: left;
    display: flex;
    align-items: center;
  }
  .header-nav ul li a::before{
    content: "";
    background: url(../img/arrow-b.svg) no-repeat;
    background-size: contain;
    width: 18px;
    height: 14px;
    display: block;
    margin-right: 10px;
  }
  .header-sp{
    position:fixed;
    display:block;
    top:10px;
    right: 10px;
    z-index: 9999;
  }
  .header-sp button,
  .header-sp button span{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
  }
  .header-sp button{
    width:55px;
    height:55px;
    border:none;
    position:relative;
    background:rgba(255,255,255,0.4);
  }
  .header-sp button span{
    position: absolute;
    right: 11px;
    width: 33px;
    height: 2px;
    background-color: #000;
    border-radius: 1px;
  }
  .header-sp button span:nth-of-type(1){
    top: 37%;
  }
  .header-sp button span:nth-of-type(2){
    top: 50%;
  }
  .header-sp button span:nth-of-type(3){
    top:65%;
  }
  .header-sp button.is-open{
    background:rgba(0,0,0,0.8);
  }
  .header-sp button.is-open span{
    background-color: #fff;
  }
  .header-sp button.is-open span:nth-of-type(1){
    top: 32%;
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }
  .header-sp button.is-open span:nth-of-type(2){
    opacity: 0;
  }
  .header-sp button.is-open span:nth-of-type(3){
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }
  .header-nav ul li a::after{
    content: unset;
  }
  .header-nav.is-open::after{
    content: "";
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    width: 100vw;
    height: 100vh;
    display: block;
    position: absolute;
    top: 60vh;
  }
}

/*タイトル
=======================================================*/
.ttl-L{
  font-size: 74px;
	font-family: "Figtree SemiBold";
  position: relative;
}

@media screen and (max-width: 768px){
  .ttl-L{
    font-size: 40px;
  }
}

/*カラー
=======================================================*/
.fc-w{
  color:#fff;
}
.fc-b{
  color:#000;
}
.bg-blue{
  background: #003883!important;
}

/*ボタン
=======================================================*/
a.btn-normal{
	font-family: "NotoSansJP Medium";
  max-width: 440px;
  display: block;
  background: #000;
  color: #fff;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition:all 3s;
  position: relative;
}
a.btn-normal span{
  position: relative;
  z-index: 1;
}
a.btn-normal::after{
  content: "";
  background: url(../img/arrow-w.svg) no-repeat;
  background-size: contain;
  width: 18px;
  height: 14px;
  display: block;
}
a.btn-normal:hover{
  background: unset;
  border: 1px solid #000;
}
a.btn-normal:hover span{
  color: #000;
}
a.btn-normal:hover::after{
  content: "";
  background: url(../img/arrow-b.svg) no-repeat;
  background-size: contain;
  width: 18px;
  height: 14px;
  display: block;
  z-index: 1;
  position: relative;
}
a.btn-normal:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
a.btn-normal::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

a.btn-normal span.btn-normal-img{
  display: flex;
  align-items: center;
}
a.btn-normal span.btn-normal-img svg{
  margin-right: 20px;
}
a.btn-normal-b{
  background: #fff;
  color: #000;
}
a.btn-normal-b::after{
  content: "";
  background: url(../img/arrow-b.svg) no-repeat;
  background-size: contain;
  width: 18px;
  height: 14px;
}
a.btn-normal:nth-child(2n){
  margin-top: 20px;
}

@media screen and (max-width: 768px){
  a.btn-normal{
    max-width: 430px;
    width: 90%;
    margin-left: auto;
    font-size: 3.7vw;
  }
}

/*footer
=======================================================*/
footer{
  width: 1080px;
  margin: 0 auto;
  position: relative;
}
.footer-logo img{
  width: 130px;
  object-fit: contain;
}
.footer-inner{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 30px 0;
}
.footer-inner ul{
  display: flex;
}
.footer-inner ul li{
  padding: 0 15px;
}
.footer-inner ul li:first-child{
  padding: 0 15px 0 0;
}
.footer-inner ul li:last-child{
  padding: 0 0 0 15px;
}

.footer-inner ul li a{
	font-family: "Figtree SemiBold";
  font-size: 18px;
  line-height: 1.2;
}
.footer-bottom{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 12px;
  margin-top: 40px;
}
.footer-bottom a{
  margin-right: 50px;
}
p#copyright{
  margin: 0;
}
p#copyright small{
  font-size: 12px;
}
.bottom-bg{
  position: absolute;
  background: #F5F5F5;
  width: 130vw;
  height: 130vh;
  display: block;
  transform: skewX(-60deg);
  left: 60%;
  z-index: -2;
  bottom: 0;
}

@media screen and (max-width: 768px){
  footer{
    width: 100%;
    background: #F5F5F5;
  }
  .footer-inner{
    width: 90%;
    margin: 0 auto;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-menu{
    width: 100%;
  }
  .footer-bottom{
    margin-top: 0;
    justify-content: space-between;
  }
  .footer-bottom a{margin-right: 0;}
  .bottom-bg{
    display: none;
  }
}