@charset "UTF-8";

/*====================================================================

  =Global Layout

====================================================================*/

:root {
  --color-primary: #02328D;
  --color-secondary:#FFE037;
  --color-cv:#FFE037;
  --color-cv-hover:#eac200;
  --color-white: #fff;
  --color-black: #222;
  --bg-light-grey: #F2F4F5;
  --font-family-en: "Outfit", sans-serif;
  --border-radius: 2.4rem;
	--border-radius-md:1.6rem;
	--border-radius-sm: .8rem;
}
html {
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 10px;
  color: #222;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased !important;
  -webkit-tap-highlight-color: transparent;
}

body{
  font-family: "Outfit","Noto Sans JP", sans-serif ;
  background: #fff;
  width: 100%;
  font-size: 1.6rem;
  font-feature-settings: 'palt' 1;
  letter-spacing:.08em;
  line-height: 1.8;
}
@media only screen and ( max-width:960px) {
  body{
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px){
  body {
    min-width: 320px;
  }
}


/*====================================================================

  =Common Layout

====================================================================*

/* ------------------------------------------
 =Frame Format
---------------------------------------------*/
#l-wrapper {
  width: 100%;
  position: relative;
  padding-top: 8rem;
}
.inner {
  max-width: 134rem;
  margin: 0px auto;
  padding: 0 7rem;
}
.wrap {
  padding: 12rem 0;
}


@media screen and ( max-width:960px) {
  #l-wrapper {
    padding-top: 6rem;
  }
  .wrap {
    padding:8rem 0 ;
  }
  .inner {
    padding: 0 2rem;
  }
}


.pre-content{
  text-align: center;
  padding:0 2rem;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
}
.logo{
  width: 35rem;
  margin:0 auto 4rem;
}
.mail-txt span{
  background-image: linear-gradient(#222, #222);
  background-position: 100% 100%;
  background-size: 100% 1px;
  background-repeat: no-repeat;
  transition: background-size 0.6s cubic-bezier(0.170, 0.935, 0.305, 1.000);
}
.mail-txt a:hover span{
  background-position: 100% 100%;
  background-size: 0% 1px;
}
@media screen and (max-width: 768px){
  .logo{
  width: 20rem;
  margin:0 auto 2.4rem;
}
}
