@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@500&display=swap');

/*** all ***/

*:focus {
  outline:none;
}
html{
  font-size: 16px;
}
body{
  -webkit-text-size-adjust: 100%;
	line-height: 1.5;
  letter-spacing: 0;
}
body, .font_sans-serif{
	font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}

h2, h3, h4, h5, h6{
  line-height: 1.5;
}
#wrap {
	max-width: 562.5px;
	margin: 0 auto;
}
input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
  outline-offset: -2px;
}
textarea{
  overflow: auto
}

/*---------------------------------------------------------------------------*/

/*** cta ***/
/*.cta .btn1 a {
	display: block;
    transition: all 0.3s;
}
.cta .btn1 a:hover {
	transform: translateY(-5px);
}*/
/*** download ***/

.download input::placeholder, .download textarea::placeholder{
  opacity: 0.5
}
.download input{
  transition: border-color 0.2s;
}
.download input:focus{
  border-color: var(--color1);
}
.download .form_title.required{
  position: relative;
  padding-right: 55px;
}
.download .form_title.required::before{
  position: absolute;
  content: "必須";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 3px 10px;
  background-color: var(--color1);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: normal;
}
.download select{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.download .select_wrap::before{
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-right: solid 1px var(--color1);
  border-bottom: solid 1px var(--color1);
  transform: translateY(-60%) rotate(45deg);
  top: 50%;
  right: 15px;
}
.download #submit input{
  cursor: pointer;
}

/*ここからタブレット用（780px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 768px){
}

/*ここからスマホ用（750px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media screen and (max-width: 667px){
  .cta .cta_title{
    margin-top: -30px;
  }
}