@charset "UTF-8";

/* For Common Top_page
====================================================*/

/* --- common --- */

#anime-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
  overflow: hidden;
}
#anime-section{
    padding: 0!important;
}

/* loading表示 */
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.loading-container {
  text-align: center;
  width: 70vw;
  max-width: 400px;
}

.loading-logo {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background-color: #ccc;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background-color: #d12f19; /* 進撃っぽい赤 */
  animation: loadingProgress 2.5s linear forwards;
}

@keyframes loadingProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* 画像ラッパー */
.anime-wrapper {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* 画像共通スタイル */
.anime-img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2000px;
  height: 1170px;
  transform: translate(-50%, -50%);
  opacity: 0;
  object-fit: cover; /* 画像の切り取り */
  object-position: center center; /* 画像の中央配置 */
}

/* タイトル画像の調整 */
.title {
  width: 80%;
  height: auto;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

/* スマホ用のスタイル */
@media screen and (max-width: 800px) {
    .anime-wrapper{
        background: #000;
    }
  .mono{
    width: auto;
    height: 100%;
    object-fit: contain; 
  }
   .title {
    width: 100%;
    height: auto;
  }
}



.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
.mt30{margin-top: 30px;}
.mt50{margin-top: 50px;}
.mt100{margin-top: 100px;}
.mb30{margin-bottom: 30px;}
.mb50{margin-bottom: 50px;}
.mb100{margin-bottom: 100px;}

.f-bold{
    font-weight: bold!important;
}
.f-italic{
    font-style: italic!important;
}
.txt-white {
    color: #fff;
}

html {
	min-width:320px;
	font-family:'Noto Sans JP', sans-serif;
	line-height:1.5;
	-ms-text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
	min-height:100%;
	position: relative;
	font-size:16px;
	letter-spacing:1.6;
	color:#000000;
	scroll-behavior:smooth;
}

body {
	min-height:100vh;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-ms-flex-direction:column;
	flex-direction:column;
    text-rendering: optimizeLegibility;
    font-feature-settings: "palt";
    letter-spacing: 0.02em;
}

a {
	color:#fff;
	text-decoration:none;
}

a:hover {
	opacity:0.6;
}

.txt_u {
	text-decoration:underline !important;
}

.txt_u:hover {
	text-decoration:none !important;
}

ul {
	padding:0;
	margin:0;
}

ul li {
	list-style:none;
}

.sp_inline {
	display:inline-block !important;
}

.pc {
	display:none !important;
}

.pc_inline {
	display:none !important;
}

.btn {
	max-width:600px;
	margin:40px auto;
}

/* --- header --- */

.header_sp {
	display:none;
}

header {
    background: linear-gradient(to right, #000, #474747, #000);
    padding: 0;
    width: 100%;
    position: fixed;
    z-index: 9998;
}

.header_inner {
	max-width:100vw;
	margin:14px auto 0;
	position:relative;
    display: flex;
    justify-content: space-evenly;
}

header nav h1 {
    padding-left: 10px;
    display: table;
	z-index:100;
    padding-top: 3px;
}
p.header-rogo {
    margin-right: 15px;
    max-width: 310px;
    min-width: 200px;
}
p.header-rogo img {
    width: 100%;
}
header nav h1 img {
	
}
header nav h1 p.header-rogo-text{
    margin-left: 0.6vw;
  	color:#deb86f;  
    font-size: calc(8px + 6 * ((100vw - 890px) / 1030));/*最大24px/最小14px*/
    display: table-cell;
    vertical-align: middle;
}
header nav h1 span.secondline {
    display: block;
    font-size: calc(6px + 5 * ((100vw - 890px) / 1030));/*最大24px/最小14px*/
}

header nav ul {
	display:none;
}

header nav ul li {
	text-align:center;
    position: relative;
}
header nav ul li+ li {
/*  border-left: 0;
  border-right: 1px solid #765000;*/
}

header nav ul li a {
	display:block;
	font-size: calc(10px + 6 * ((100vw - 890px) / 1030));
	font-weight:bold;
}

/*マウスオーバー*/
header nav ul li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1px;
background: #fff;
bottom: -4px;               /*アンダーラインがaタグの下端から現れる*/
transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
transition: transform 0.3s; /*変形の時間*/
}
    
header nav ul li a:hover::after {
transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

header nav ul li a span {
	display:block;
	font-size:10px;
	font-weight:normal;
	color:#8F8F8F;
}
/*お問い合わせボタン*/
#header_contact{
	flex-basis: 18%;
	box-sizing:border-box;
	height: auto;
	padding: 10px 2%;
}

#header_contact a{
	color: #fff;
    box-sizing: border-box;
    background: rgb(252,67,8);
    background: linear-gradient(0deg, rgba(252,67,8,1) 0%, rgba(205,58,13,1) 100%);
    text-align: center;
    font-size: calc(10px + 6 * ((100vw - 890px) / 1030));/*最大20px/最小12px*/
    font-weight: bold;
    display: block;
    border-radius: 6px;
    padding: 6% 4%;
    line-height: 1.3;
    outline: 3px solid #cd3a0d;
    position: relative;
}
#header_contact a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1em;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 0.5em;
    height: 0.5em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

#header_contact a:hover{
	color: #fff;
    background: rgb(252,67,8);
    background: linear-gradient(180deg, rgba(252,67,8,1) 0%, rgba(205,58,13,1) 100%);
	text-align: center;
	display: block;
    opacity: 1;
    
}

.header-entry {
	display:none;
}

.header-entry a {
	display:block;
	padding:0;
	text-align:center;
	font-weight:bold;
	color:#FFF;
}

.header-entry a img {
	max-height:80px;
}

.menu_sp {
	position:absolute;
	top:5px;
	right:0;
    z-index:10000;
    padding-right: 5px;
}

.menu_sp img {
	height:26px;
}

header .overlay {
    display:none;
}

header .menu_wrap {
    display:none;
}

header nav.open {

}


/* --- main --- */

section {
	padding:50px 0;
}

.sec_inner {
	max-width:1100px;
	margin:0 20px;
}

h2 {
	font-size:26px;
	margin:40px 0 30px;
	text-align:center;
	font-weight:900;
	color:#875900;
    font-feature-settings: "palt";
}
#example > .sec_inner > h2:before {
  content: url(https://shingeki.shinfield.co.jp/img/h2-icon.webp);
  display: block;/*前後に改行を入れる*/
  }

h2 span {
	font-size:22px;
}
#kv-new , #kv {
padding: 0;
    background: #f3dbe0;
}
#kv-new .inner{
        background: #fce7ee;
}


#kv-new .inner img , #kv img ,#project img {
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}
#fv{ 
    padding: calc(55px + 20 * ((100vw - 800px) / 1030)) 0 0;
}

#ambassador {
	padding:0 0 40px;
	background:linear-gradient(180deg, #edc6d7, #f1f1e1);
    
}
#ambassador .sec_inner{
    /*width: 1000px;*/
}
#ambassador .about .cnt_left {
	max-width:100%;
    margin-left: 50px;
}

#ambassador .about {
    padding: 100px 0;
}


#ambassador .about .cnt_left {
	max-width:100%;
}


#ambassador .about .cnt_left img {
	max-width:462px;
	margin:35px auto 0;
}

#ambassador .about .cnt_left p {
	margin-top:30px;
	font-size:18px;
	line-height:2;
    color: #fff;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif
}
#ambassador .about .cnt_left p.about-copy {
	margin-top:30px;
	font-size:26px;
	line-height:1.2;
    color: #dbb202;
    border: 1px solid #dbb202;
    text-align: center;
    background: #000;
    padding: 20px;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif
}

#ambassador .about .cnt_left p b {
	font-size:28px;
	color:#dbb202;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif
}

#strengths{
    background: url("https://shingeki.shinfield.co.jp/img/strengths-bg.jpg");
    background-repeat: repeat-y;
}
#strengths .sec_inner{
    font-size: 20px;
    text-align: center;
}
#strengths .sec_inner img{
    margin: 0 auto;
}

.support-ttl , .entry-ttl{
    margin-top: 80px;
}
.support-ttl{
    padding-top: 100px;
}
.support-ttl img , .entry-ttl img{
    margin:0 auto;
}

#support{
    padding: 100px 0 60px;
    background: #000;
}
#support img{
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}
#seacret-order{
    padding-bottom: 0;
}
#special-support , #seacret-order{
    padding-top: 0;
    background-color: #000;
}
#special-support .btn{
    margin: 0 auto;
}

#seacret-order img{
    margin: 0 auto;
}


#support h2 {
	margin-top:0;	
}
#support .sec_inner {
    max-width: 1796px;
    margin: 30px auto 0;
}

#support .btn {
	margin-bottom:10px;
}

#why {
	padding:50px 0;
	background:#fff;

}

#why h2 {
	margin-top:0;
    font-feature-settings: "palt";
    
}

.shingeki-manga img{
    aspect-ratio: auto 110 / 165;
}

#example{
    background-image: url("https://shingeki.shinfield.co.jp/img/shingeki-case-bg.webp");
    background-repeat: no-repeat;
    background-position: top;
    background-color: #fdefbd;
    padding-top: 50px;
    padding-bottom: 80px;
}
#example .sec_inner{
    max-width: 1500px;
}#example .sec_inner p img{
    margin: 0 auto;
}
#example .sec_inner h2 img{
    margin: 0 auto;
}
#example .sec_inner span.note{
   font-size: 12px;
}
#example .sec_inner .case{
    background: #fff;
    margin-top: 40px;
    padding: 60px 50px;
}
#why img , #why02 img , #why03 img , #support-bottom img {
	margin:0 auto;
}
#example h2{
    margin-top: 30px;
    margin-bottom: 0;
}
#example .three-column{
    display: flex;
    max-width: 1500px;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 30px;
}
#example .three-column div{
    width: 32%;
}
#example .two-column{
    display: flex;
    max-width: 1350px;
    justify-content: space-between;
}
#example .two-column div{
    width: 49%;
}
#example .one-column{
        max-width: 1350px;
}
#example .one-column img{
    margin: 0 auto;
}
dl.purpose {
    flex-wrap: wrap;
    display: table;
    margin: 15px auto 0;
}
dl.purpose dt {
    background: #000;
    font-size: 0.8rem;
    color: #fff;
    padding: 0.1rem 0.3rem;
    justify-content: center;
    align-items: center;
    width: auto;
    display: table-cell;
}
dl.purpose dd {
font-size: clamp(1rem, 1.2rem, 1.8rem);
    color: #000;
    line-height: 1.2;
    font-weight: bold;
    width: auto;
    padding: 0 5px;
    align-items: center;
    display: table-cell;
    vertical-align: bottom;
}
#example .example-copy{
    margin-top: 15px;
    font-size: 18px;
    line-height: 1.2;
    font-feature-settings: "palt";
    color: #000;
}
#example .example-copy span{
    font-size: 16px;
    line-height: 1.1;
    color: #000;
}

.default_close {
	display:none;
}

.comic {
    width:100vw;
	height:366px !important;
    max-width:none;
    /*margin:30px calc(50% - 50vw) 0;*/
    margin:30px calc(49% - 50vw) 0;
	padding:18px 0;
	background-color:#000;
}

.comic .slider div, .comic .slider2 div {
	display:none;
}

.comic .infiniteslide_wrap .slider, .comic .infiniteslide_wrap .slider2 {
	display:block;
}


.comic .slider > div, .comic .slider2 > div {
	max-width:100px !important;
	margin-left:9px;
}

.comic .slider {
	margin-bottom:9px;
}


.comic div > div img {
	display:block;
	object-fit:cover;
	width:100%;
	height:auto;
}
#limited{

        background: #000;
        position: relative;
        padding-top: 60px;
    padding-bottom: 0;;
    }
#limited .sec_inner{
       max-width: 1500px; 
}
#limited .pc img{
    
}
#limited .btn{
    position: absolute;
    bottom: 4.5%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 50%;
}
#limited .btn img{
    max-width: 600px;
    width: 100%;
    min-width: 400px;
}


.entry-ttl p{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}


.entry_btn, .open_btn {
	max-width:580px;
	margin:40px auto 0;
}

.entry_btn a {
	padding:15px 35px;
	display:block;
	font-size:18px;
	font-weight:bold;
	text-align:center;
	background-color:#005CB9;
	background-image:url(https://shingeki.shinfield.co.jp/img/arrow.png);
	background-repeat:no-repeat;
	background-size:auto 16px;
	background-position:center right 20px;
	color:#FFFFFF;
}

.open_btn a {
	padding:20px 35px;
	display:block;
	font-size:18px;
	font-weight:bold;
	text-align:center;
	background-color:#005CB9;
	background-image:url(https://shingeki.shinfield.co.jp/img/arrow_more.png);
	background-repeat:no-repeat;
	background-size:auto 10px;
	background-position:center right 30px;
	border-radius:50px;
	color:#FFFFFF;
	opacity:0.9;
}

.open_btn span:nth-of-type(2) {
	display:none;
}

.open_btn.opened span:nth-of-type(1) {
	display:none;
}

.open_btn.opened span:nth-of-type(2) {
	display:block;
}

.open_btn.opened a {
	background-image:url(https://shingeki.shinfield.co.jp/img/arrow_close.png);
}

.entry_btn a:hover, .open_btn:hover {
	text-decoration:none;
}
/* --- QA --- */
#qa_cnt{
    background-image: url("https://shingeki.shinfield.co.jp/img/shingeki-qa-bg.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-color: #faf8f2;
    padding-bottom: 100px!important;
    padding-top: 40px;
    position: relative;

}
#qa_cnt h2{
    margin: 10px 0 30px;
}
p.singeki-15th-rogo {
    text-align: center;
    margin: 0 auto;
}
.singeki-15th-rogo img{
    width:350px;
    display: inline-block;
}

.qa_item {
	/*margin-bottom:20px;*/
	padding:20px 15px;
	
}

.qa_item > p {
	padding-left:50px;
}
.qa_item a{
    color: #002d88;
}

p.q {
	height:auto;
    color: #875900;
    font-weight: bold;
	min-height:35px;
	padding-top:5px;
	font-size:15px;
	background-image:url(https://shingeki.shinfield.co.jp/img/q.png);
	background-repeat:no-repeat;
	background-size:35px 35px;
	background-position:left top;
}

p.a {
	height:auto;
	min-height:66px;
	padding-top:20px;
	font-size:13px;
	border-bottom:1px dashed #875900;
	background-image:url(https://shingeki.shinfield.co.jp/img/a.png);
	background-repeat:no-repeat;
	background-size:35px 35px;
	background-position:left top 20px;	
}
.qa_item {
	padding:30px 30px 0;
}

.qa_item > p {
	padding-left:70px;
}

p.q {
	min-height:45px;
	padding-top:0px;
	font-size:20px;
	background-size:45px 45px;
	background-position:left top;
}

p.a {
	min-height:76px;
	font-size:16px;
	background-size:45px 45px;
	background-position:left top 15px;	
        padding-bottom: 40px;
}

/*シンフィールドとは*/
#aboutus{
    background-image: url("https://shingeki.shinfield.co.jp/img/aboutus-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}
#aboutus .sec_inner{
    max-width: 1000px;
}
#aboutus h2{
margin: 0 30px 40px;
}
.aboutus > .read > span{
    font-size: 26px;
    font-weight: bold;
}
.aboutus > .rogo > img{
    margin: 30px auto 0;
    width: 150px;
}
.read {
    font-size: 20px;
    text-align: center;
    line-height: 1.8;
}
.service_bnr {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 50px;
    flex-wrap: nowrap;
}

/* --- footer --- */

footer {
	margin-top:auto;
	padding:40px 60px 10px;
	background: linear-gradient(to right, #000, #474747, #000);
	color:#fff;
    border-top: 1px solid;
    border-image: linear-gradient(to right, rgba(255, 242, 58, 1), rgba(224, 162, 8, 1)) 1;
}

footer a {
	color:#fff;
}

#gototop {
	display:inline-block;
	position:fixed;
	bottom:10px;
	right:10px;
	z-index:3000;
}

#gototop a {
	width:190px;
	display:inline-block;
}

.footer_logo {
	max-width:240px;
	margin:30px auto 40px;
}

.footer_inner {
	max-width:1000px;
	margin:0 auto;
}

.cp {
    font-size:10px;
	text-align:center;
}
.note{font-size: 13px;margin-top: 10px;}
.note a{text-decoration: underline;}

#limted{
    padding-top: 50px;
}
/*問い合わせ*/
    .contact{
    padding: 80px 0 0;
    background: #e3dfdc;
    width: 100%;
    margin: 0 auto;
    }
    .contact .inner{
    text-align: center;
    }
    .contact .inner iframe{
    width: 90%;
    height: 400px;
    }

/* Only SP */
@media only screen and (max-width: 800px) {

/* --- common --- */


/* --- header --- */
p.header-rogo {
    margin-right: 15px;
    max-width: 150px;
    min-width: 100px;
}
p.header-rogo img {
   
}
.header_inner {
    margin: 14px auto 14px;
    display: flex;
    justify-content: left;
}
header nav h1 img {
	
}
header nav h1 p.header-rogo-text{
    margin-left: 0.6vw;
  	color:#deb86f;  
    font-size: calc(10px + 6 * ((100vw - 890px) / 1030));/*最大24px/最小14px*/
    display: inherit;
    vertical-align: middle;
}
header nav h1 span.secondline {
    display: inline;
    font-size: calc(10px + 6 * ((100vw - 890px) / 1030));/*最大24px/最小14px*/
}
header nav ul li a {
    display: block;
    font-size: calc(20px + 6*((100vw - 890px) / 1030));
    /* font-weight: bold; */
}
#fv {
    padding: 55px 0 0;
}
.menu_sp img {
	height:26px !important;
}

.open .menu_sp a {
    width:30px !important;
    height:30px !important;
    background-size:30px auto !important;
    top:20px;
    right:20px;
}
    .menu-cv {
    width: 38%;
    position: absolute;
    top: 0;
    left: 50%;
    text-align: center;
    background-color: #db0a1f;
    font-size: 0.8rem;
    line-height: 1.1;
    padding: 0.25rem 0.35rem 0.35rem;
    color: #fff;
    border-radius: 4px;
}
    .menu-cv a{
        color: #fff;
    }

/* --- main --- */
h2 {
    font-size: 26px;
    margin: 20px 0 10px;
    text-align: center;
    font-weight: 900;
    color: #875900;
}
#kv-new , #kv {
    background-image: none;
    width: 100%;
    height: auto;
    margin: 0;
    position: inherit;
    left: 0;
    padding: 0;
}
#kv-new{
    padding: 60px 0 0;        
    }  
    
#kv-new .inner {
    margin:0;
    width: 100%;

}
#kv .sec_inner {
	margin:0;
}

/*SP*/
#why {
    padding: 30px 0;
    width: 100%;
    margin: 0;
}
#why .sec_inner{
    margin: 0;
}
#why p{
    padding: 0 10px;
    text-align: center;
    color: #fff;
}
#why p.big {
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    color: #fff;
}
#support-bottom p , #example p {
        font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #000;    
    }
#support{
        padding: 0 0 60px;
}

.support-ttl {
    padding-top: 30px;
    margin-top: 50px;;
}
#example{
    background-image: url("https://shingeki.shinfield.co.jp/img/shingeki-case-bg-sp.jpg");
    background-repeat: no-repeat;
    background-position: top;
    background-color: #fdefbd;
    padding-top: 50px;
    padding-bottom: 15px;
}
#example .two-column {
    display: flex;
    max-width: inherit;
    justify-content: space-evenly;
    flex-direction: column;
    gap: 50px;
}
 #example .sec_inner {
    max-width: 1100px;
    width: auto;
    margin: 0 10px;
}

#example .sec_inner .case{
    padding: 0 10px 40px;
}
.merit{
    margin-top: 20px;
}
#example .two-column div {
    width: auto;
}
#example .two-column img {
    margin: 0 auto;
}
#example .three-column div{
    width: 48%;
}
/*起用例*/
dl.purpose dt{
    font-size: 0.6rem; 
    }
dl.purpose dd {
    vertical-align: baseline;
    font-size: 0.8rem;
}
/*起用例のコピーが長くなる場合の対応*/
#example .one-column dt , #example .two-column dt{
    display: none;
}
#example .one-column dl , #example .two-column dl{
    margin-top: 5px;
}
#example p.exmaple-mark {
    background: #000;
    color: #fff;
    display: inline-block;
    font-size: 0.6rem; 
    padding: 0.2rem;
}
#support .sec_inner{
        margin: 0;
}
#support .sec_inner .cnt_wrap .ttl{
        padding: 60px 10px 0; margin: 0 auto;font-size: 28px;font-weight: bold;text-align: center;
}

#ambassador {
	padding:0 0 20px;
	background:#000;
}
#ambassador .about{
    padding: 60px 0 0;
}
    
#ambassador .about .cnt_left {
    width:100vw;
    margin:0 auto;
}
#ambassador .about .cnt_left p{
        margin-top: 15px;
        font-feature-settings: "palt";
        line-height: 1.6;
}
#ambassador .about .cnt_left p b{
        font-size: 24px;
    }
#ambassador .about .cnt_left img{
        max-width: inherit;
        margin: 0 auto;
}
#ambassador .about .cnt_left p.about-copy {
    margin-top: 15px;
    font-size: 20px;
    padding: 10px;
}

/*SP*/
#qa_cnt {
    background-image: url(https://shingeki.shinfield.co.jp/img/shingeki-qa-bg.jpg);
    background-repeat: repeat;
    width: 100%;
    margin-left: 0;
    left: 0;
    padding-bottom: 130px;
}
.qa_item {
    padding: 20px 0 0;
}
.qa_item > p {
    padding-left: 50px;
}
p.a {
    padding-bottom: 20px;
}
.note{font-size: 12px;}
#limited{
        background: #000;
        position: relative;
        padding-top: 40px;
    padding-bottom: 0;
    
    }
    #limited .sec_inner{
        margin: 0;
    }
#limited .sec_inner .btn{
    position: absolute;
        bottom: 4.5%;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 70vw;
}
#limited .sec_inner .btn img {
        max-width: 75vw;
        width: 100%;
        min-width: 70vw;
}
/* --- footer --- */

footer {
	padding:10px 0 80px 0;
	text-align:center;
}

.footer_wrap .footer_menu {
	/*border-top:#F1F1F1 1px solid;
	border-bottom:#F1F1F1 1px solid;*/
}

.footer_wrap .footer_menu li a {
	display:block;
	padding:10px 20px;
	font-size:13px;
	text-align:left;
}

.footer_wrap .footer_menu li + li {
	/*border-top:#F1F1F1 1px solid;*/
}

.cp {
	padding:15px 20px;
    text-align: left;
}
    h2.blog-headline2 span{
    width: 50%;

}

#aboutus h2 {
        font-size: 26px;
        line-height: 1.5;
        margin-bottom: 10px;
    }
#aboutus .read {
    }
#aboutus .read > span {
    font-size: 22px;
}
.service_bnr {
    flex-wrap: wrap;
}
    .service_bnr > p{
        width: 45%;
    }
#gototop a {
    width: 60px;
    display: inline-block;
}
    .footer-rogo-text{
        color: #deb86f;
    }
/*問い合わせ*/
    .contact{
    padding: 80px 0 0;
    background: #e3dfdc;
    width: 100%;
    margin: 0 auto;
    }
    .contact .inner{
    text-align: center;
    }
    .contact .inner iframe{
    width: 100%;
    height: 400px;
    }
}


/* Only PC */
@media only screen and (min-width: 801px) {

/* --- common --- */

.sp {
	display:none !important;
}

.pc {
	display:block !important;
}

.btn {
	margin:80px auto;
}


/* --- header --- */

.header_inner {
	margin:8px auto 7px;
}


/* --- main --- */

section {
	padding: 80px 0;
}

.sec_inner {
	margin:0 auto;
}

h2 {
	font-size:44px;
	margin:80px 0 30px;
    font-feature-settings: "palt";
}

h2 span {
	font-size:38px;
	letter-spacing:10;
}

.cnt_wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	/*display:flex;*/
}


#ambassador {
	padding:0;
    /*max-width: 1920px;*/
}


#ambassador .ambassador_bg {
	background:url(https://shingeki.shinfield.co.jp/img/shingeki-about-bg.jpg) no-repeat center 0;
    position: relative;
}

#ambassador .about .cnt_right p {
	margin-left:50px;
	padding-bottom:40px;
	font-size:21px;
	line-height:2;
}

#ambassador .about .cnt_right img {
	max-width:250px;
	margin:60px auto 0;
}

#ambassador .about .cnt_right p b {
    font-size:26px;
}


.comic {
	height:600px !important;
}

.comic .slider {
	margin-bottom:18px;
}

.comic .slider > div, .comic .slider2 > div {
	max-width:170px !important;
	margin-left:18px;
}


#ambassador .about .cnt_left {
	max-width:40%;
}

#ambassador .about .cnt_right {
	max-width:60%;
}

#support .cnt_wrap .no {
	font-size:40px;
	top:0;
	left:20px;
}

#support .cnt_wrap.support_contents img {
	max-width:none;
}


#support .btn {
	margin-bottom:30px;
}

#why {
	/*padding:100px 0;*/
}
#why p {
    font-size: 20px;
    line-height: 2.0;
    text-align: center;
    color: #fff;
}

#why p.big {
    font-size: 30px;
    line-height: 2.0;
    text-align: center;
    color: #fff;
}
#why02 p , #why03 p ,#support-bottom p , #example p {
        font-size: 20px;
    line-height: 2.0;
    text-align: center;
    color: #000;    
    }

.entry_btn, .open_btn {
	margin:60px auto 0;
}

.entry_btn a, .open_btn a {
	font-size:26px;
}


/* --- footer --- */

footer {
    padding:40px 0 40px;
}

.footer_wrap {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
    justify-content: center;
	align-items:center;
}

#gototop {
	bottom:20px;
}

#gototop a {
	width:135px;
}

.footer_logo {
	max-width:320px;
	min-width:120px;
	margin:0 105px 0 0;
}
.footer-rogo-text{
    font-size: 14px;
    color: #deb86f;
    text-align: center;  
    }
.footer_wrap .footer_menu {
	min-width:310px;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
    justify-content: right;
}

.footer_wrap .footer_menu li a {
	padding:0 10px;
	font-size:13px;
}

.footer_wrap .footer_menu li:last-child a {
	padding:0 0 0 10px;
}

.footer_wrap .footer_menu li + li {
    position:relative;
}

.footer_wrap .footer_menu li+li::before{
    content: "";
    display: block;
    height:13px;
    border-left:1px solid #747474;
    position:absolute;
    top:0;
    bottom:0;
    margin:auto;
}

.cp {
	margin-top: 10px;
    font-size: 12px;
    text-align: center;
}

}
/*ナビ(タブレット)*/
@media (min-width: 820px) and (max-width: 1024px) {

    .header_inner{
        justify-content: flex-start;
    }
  header nav ul li.pc {
    display: none!important;
}
  header nav ul li img.header_sp {
    margin: 0 auto;
}
  header nav ul li.sp {
    display: block!important;
}
    #ambassador .about .cnt_left {
        max-width: 45%;
    }
    #ambassador .about .cnt_left p{
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.7;
    }
    #ambassador .about .cnt_left p br.pc {
        display: none!important;
    }
    #ambassador .about .cnt_left p.about-copy {
        font-size: 22px;
    }
}

/* For header adjust */
@media only screen and (max-width: 890px) {

/* --- common --- */


/* --- header --- */

.header_sp {
	display:block;
    margin: 0 auto;
}
.menu_sp img {
	height:26px !important;
}

.open .menu_sp a {
    width:30px !important;
    height:30px !important;
    background-size:30px auto !important;
    top:20px;
    right:20px;
}
.menu-cv {
    width: 36%;
    position: absolute;
    top: 0;
    left: 52%;
    text-align: center;
    background: linear-gradient(0deg, rgba(252, 67, 8, 1) 0%, rgba(205, 58, 13, 1) 100%);
    font-size: 0.75rem;
    line-height: 1.1;
    padding: 0.6rem 0.15rem 0.6rem;
    color: #fff;
    border-radius: 4px;
    margin-top: 0.15rem;
}
    .menu-cv a{
        color: #fff;
    }
    .menu-cv a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1em;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 0.6em;
    height: 0.6em;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);

    }
.header_pc {
	display:none;
}
.header_inner {
    padding-left: 10px;
}

header h1 img {
	max-height:40px !important;
}

.menu_sp img {
	height:26px;
}

header .open .overlay {
    width:100%;
    height:100vh;
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    background-color:#000;
}

header .open ul {
    width:100%;
    display: inline-block;
    position:fixed;
    top:100px;
    left:0;
    right:0;
    bottom:0;
    z-index:10000;
    overflow-y:auto;
}

.open .header-entry {
	width:80%;
	max-width:400px;
	display:block;
	margin:0 auto;
    position:fixed;
    top:400px;
    left:0;
    right:0;
    bottom:0;
    z-index:10000;
    overflow-y:auto;
}

.open .menu_sp a {
    width:30px;
    height:30px;
    display:block;
    background-image:url(https://shingeki.shinfield.co.jp/img/close_sp.png);
    background-size:30px auto;
    background-repeat:no-repeat;
    background-position:top center;
    position:fixed;
    top:20px;
    right:20px;
}

.open .menu_sp span {
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
}

.header-entry a img {
	max-height:none;
}
    /*常駐ボタン*/
.header-entry{
    width: 80%;
    max-width: 400px;
    margin: 0 auto;
    position: fixed;
    left: 0;
    right: 15%;
    bottom: 10px;
    z-index: 9998;
    overflow-y: auto;
}

header nav ul li a {
	color:#FFFFFF;
    text-shadow:none;
}

header nav ul li a span {
	color:#FFFFFF;
}

header nav ul li + li {
	margin-top:30px;
}

/* --- main --- */


/* --- footer --- */

}

/* For header adjust */
@media only screen and (min-width: 891px) {

/* --- common --- */


/* --- header --- */

.menu_sp , .menu-cv {
	display:none !important;
}

header nav {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;

	-webkit-box-align:center;
	-ms-flex-align:center;
	align-items:center;
    justify-content: space-between;
        width: 80%;
}

header nav ul {
	margin-left:0.8vw;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
    align-items: center;
}

header nav ul li + li {
	margin-left:2vw;
}

header nav ul li a span {
	padding-bottom:15px;
	background-image:url(https://shingeki.shinfield.co.jp/img/arrow_header.png);
	background-repeat:no-repeat;
	background-size:auto 6px;
	background-position:center bottom;
}

.header-entry {
	margin-left:auto;
	display:block;
    position: fixed;
    right: 15%;
    z-index: 99999;
}


/* --- main --- */


/* --- footer --- */

}


/* For adjust */
@media screen and (min-width: 801px) and (max-width: 1020px) {

#ambassador .about .cnt_right {
    padding-bottom:0;
}

#ambassador .about .cnt_right p {
	margin-left:50px;
	padding-bottom:0;
	font-size:21px;
	line-height:2;
}

}


@media only screen and (min-width: 2000px) {

.comic {
	height:728px !important;
}


.comic .slider > div, .comic .slider2 > div {
	max-width:240px !important;
	margin-left:18px;
}

}

