/*
Theme Name:GyakutenGames_ja
*/

@charset "utf-8";
/* CSS Document */
@import url(../../../../../fonts.googleapis.com/earlyaccess/notosansjp.css);
html{
	font-size: 62.5%;
	font-family: 'Noto Sans JP', sans-serif;
	/*scroll-behavior: smooth;
	scroll-padding: 150px;*/
}
.br_pc{
	display: inline-block;
}
.br_sp{
	display: none;
}
a{
	color: #dd5900;
}
img{
	width: 100%;
	height: auto;
}
a[target="_blank"]:after {
	font-family: "Font Awesome 5 Free";
	font-weight: 600;
	font-size: .8rem;
	content: "\f35d";
	margin: 0 0 0 5px;
}
#wrapper{
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	position: relative;
}
main{
	margin-bottom: 120px;
}
/* ローディングアニメーション ここから */
.body-no-scroll {
	overflow: hidden;
}
.loading-container {
    position: fixed; /* または absolute */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    z-index: 999999; /* headerより上に表示されるようにz-indexを高く設定 */
    background: rgba(255, 255, 255, 1); /* 背景を透明にしてアニメーションを強調（任意） */
}

@keyframes svg {
    0% {
        fill: transparent;
        stroke-dashoffset: 468px;
    }
    100%{
        stroke-dashoffset: 0;
    }
}
.pass_1 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 340px;
    stroke-dashoffset: 340px;
    animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
    animation-delay: 0s, 3s;
}
.pass_2 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 312px;
    stroke-dashoffset: 312px;
    animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
    animation-delay: 0.3s, 3s;
}
.pass_3 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 451px;
    stroke-dashoffset: 451px;
    animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
    animation-delay: 0.6s, 3s;
}
.pass_4 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 362px;
    stroke-dashoffset: 362px;
    animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
    animation-delay: 0.9s, 3s;
}
.pass_5 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 468px;
    stroke-dashoffset: 468px;
    animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
    animation-delay: 0.9s, 3s;
}
.pass_6 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 270px;
    stroke-dashoffset: 270px;
    animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
    animation-delay: 0.9s, 3s;
}
.pass_7 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 312px;
    stroke-dashoffset: 312px;
    animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
    animation-delay: 1.2s, 3s;
}
.pass_8 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 295px;
    stroke-dashoffset: 295px;
    animation: svg 0.8s ease-in both, svg-color 2s ease-in both;
    animation-delay: 1.5s, 3s;
}
.pass_9 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 282px;
    stroke-dashoffset: 282px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 0s, 3s;
}
.pass_10 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 431px;
    stroke-dashoffset: 431px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 0.2s, 3s;
}
.pass_11 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 362px;
    stroke-dashoffset: 362px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 0.4s, 3s;
}
.pass_12 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 454px;
    stroke-dashoffset: 454px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 0.6s, 3s;
}
.pass_13 {
    stroke: #111;
    stroke-width: 0.5px;
    stroke-dasharray: 467px;
    stroke-dashoffset: 467px;
    animation: svg 0.5s ease-in both, svg-color 2s ease-in both;
    animation-delay: 0.8s, 3s;
}
@keyframes svg-color {
    0% {
        fill: transparent;
    }
    90% {
        fill: #111;
    }
    100%{
        fill: #111;
    }   
}
@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

.loading-container.finished {
    animation: fadeOut 1s ease-out forwards;
    animation-delay: 2s; /* アニメーションが終了した後の遅延時間 */
}
/* ローディングアニメーション ここまで */

/* グローバルナビ ここから */
header{
	position: fixed;
	width: 100%;
	z-index: 999999;
	top: 0;
}
#logo {
	width: 100%;
	max-width: 70px;
	display:block;
}

nav{
	width: 100%;
	position: relative;
	background: #FFF;
	border-bottom: 1px solid #D5D5D5;;
}

.drawer{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 70px;
	padding: 0 1em;
}

/*ナビゲーション部分*/
p.lang_select{
	font-size: 1.5rem;
	font-weight: bold;
	width: 100%;
	max-width: 120px;
}
p.lang_select a{
	text-decoration: none;
	color: #dd5900;
	font-weight: normal;
}
p.sp_lang{
	display: none;
}
.menu ul li.circle-bg{
	background: #ffa21a;
	border-radius: 30px;
}
.menu ul li.circle-bg a{
	color: #FFFFFF;
	padding: 10px 15px;
	border-radius: 30px;
	transition: .3s;
}
.menu ul li.circle-bg a:hover{
	background: #ffd939;
	color: #FFF;
	border-radius: 30px;
}
.menu ul li a {
	display:block;
	font-weight:bold;
	padding: 2em;
	border-bottom: 1px dotted #CCC;
	color:#333;
	text-decoration:none;
	transition: .3s;
}

.menu ul li a:hover{
	color: #31A8C6;
}

.menu{
	text-align:center;
	background-color:rgba(255,255,255,0.5);
	transition: .5s ease;/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);/*左に隠しておく*/
	font-size: 2rem;
}

/*OPEN時の動き*/
.menu.open {
	-webkit-transform: translateX(0%);
	transform: translateX(0%);/*中身を表示（右へスライド）*/
}
.menu ul{
	list-style: none;
}

/*トグルボタンのスタイルを指定*/
.Toggle {
	display: block;
	position: fixed;    /* bodyに対しての絶対位置指定 */
	width: 42px;
	height: 42px;
	cursor: pointer;
	z-index: 3;
	right:15px;
}

.Toggle span {
	display: block;
	position: absolute;
	width: 42px;
	border-bottom: solid 4px #333;
	-webkit-transition: .35s ease-in-out; /*変化の速度を指定*/
	-moz-transition: .35s ease-in-out;    /*変化の速度を指定*/
	transition: .35s ease-in-out;     /*変化の速度を指定*/
}
 
.Toggle span:nth-child(1) {
	top:5px;
}
 
.Toggle span:nth-child(2) {
	top: 18px;
}
 
.Toggle span:nth-child(3) {
	top: 32px;
}

.Toggle.active span:nth-child(1) {
	top: 18px;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}

@media screen and (min-width: 600px) {
	header::after{
		display:none;
	}
	nav{
		display: flex;
		padding: 15px 0;
		background: #FFF;
		border-bottom: 1px solid #D5D5D5;
	}
	.Toggle{
		display: none;
	}
	.menu{
		width: 100%;
		background-color: transparent;
		margin-top:0;
		-webkit-transform: translateX(0);
		transform: translateX(0);
		padding-right: 1em;
		display: flex;
		justify-content: flex-end;
		align-items: center;
		gap: 0 30px;
	}
	.menu ul{
		height: 70px;
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: center;
		list-style: none;
		gap: 30px;
	}
	.menu ul li a{
		padding: 0 1em;
		border-bottom: none;
	}
	.menu ul li a:hover{
		background-color:transparent;
	}
}

@media screen and (max-width: 500px) {
	nav{
		max-height: 70px;
	}
}
/* グローバルナビ ここまで */
.main_visual_inner{
	position: relative;
}
.main_visual_pc{
	display: block;
}
.main_visual_sp{
	display: none;
}
.main_logo{
	position: absolute;
	top: 10%;
	left: 3%;
	width: 100%;
	max-width: 470px;
}
.main_catch{
	position:absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 850px;
}
h1.top_catch{
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 5rem;
}
h2.top_catch_read{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 2.7rem;
	line-height: 1.5;
}
.main_content_inner{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}
.main_content_inner h3{
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 50px;
}
.main_content_inner p{
	font-size: 2rem;
}
p.intro_txt{
	width: 100%;
	max-width: 850px;
	margin: auto;
}
.image_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 70px;
}
.image_wrap_inner{
	width: 100%;
	max-width: 500px;
}
.iframe-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.iframe-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.center-txt{
	text-align: center;
}
.center-txt a{
	text-decoration: none;
}
.introduction_container{
	margin-top: 140px;
	padding: 60px 0;
	background: #EFEFEF;
}
.servise_container{
	margin-top: 140px;
}
ol.service_list{
	width: 100%;
	max-width: 870px;
	margin: 70px auto 0 auto;
	font-size: 2rem;
}

/* 制作実績 ここから */
.work-inner{
	margin-top: 160px;
}
.work-inner h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 70px;
}
.work-inner h3 {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 40px;
}
.work_content_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 80px auto;
	gap: 70px 130px;
}
.work_content{
	width: 100%;
	max-width: 300px;
	overflow-wrap: break-word;
}
h3.work_title{
	font-size: 2rem;
	text-align: left;
	margin-bottom: 0;
}
.app_work_txt{
	font-size: 1.6rem;
	margin-top: 8px;
}
p.movie_aspect{
	width: 100%;
	margin: 10px auto 20px auto;
}
p.movie_aspect img{
	height: auto;
}
ul.AppStore{
	display: flex;
	justify-content: space-around;
	list-style: none;
	margin: 20px auto;
}
ul.AppStore li img{
	width: 100%;
	height: 100%;
	max-height: 60px;
}
ul.AppStore li a:after{
	display: none;
}
div.work_tags{
	display: flex;
	flex-wrap: wrap;
	gap: 3px 7px;
}
/* 各種タグ用css ここから */
p.web{
	font-size: 1.3rem;
	display: inline-block;
	margin: 0 .1em .6em 0;
	padding: .6em;
	line-height: 1;
	text-decoration: none;
	color: #268BA5;
	background-color: #fff;
	border: 1px solid #268BA5;
	border-radius: 2em;
}
p.app{
	font-size: 1.3rem;
	display: inline-block;
	margin: 0 .1em .6em 0;
	padding: .6em;
	line-height: 1;
	text-decoration: none;
	color: #2DA526;
	background-color: #fff;
	border: 1px solid #2DA526;
	border-radius: 2em;
}
/* p.webを複製し、クラス名、背景色、文字色、線の色を変更する */
/* 各種タグ用css ここまで */

div.work_txt p{
	font-weight: bold;
}
div.work_txt p a{
	text-decoration: none;
	color: #0033CC;
}
div.work_txt p{
	font-size: 1.6rem;
}
p.work_caption{
	margin-top: 10px;
	font-size: 1.3rem;
}
div.work_txt strong{
	font-size: 1.8rem;
}
.work_none{
	font-size: 2rem;
}
/* 制作実績 ここまで */

.sns_container{
	margin-top: 150px;
}
a.sbi_header_link:after,
a.sbi_photo:after{
	display: none;
}
.contact_container{
	margin-top: 150px;
}
#sb_instagram > #sb_instagram .sb_instagram_header, .sb_instagram_header{
	max-width: 250px;
}
/* 問い合わせフォーム用css ここから */
.Form {
	margin: 80px auto 50px auto;
	max-width: 890px;
}
.wpcf7-spinner{
	display: none;
}
@media screen and (max-width: 820px) {
	.Form {
		margin-top: 40px;
	}
}
.Form-Item {
	border-top: 1px solid #ddd;
	padding-top: 24px;
	padding-bottom: 24px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	font-size: 2rem;
}
@media screen and (max-width: 820px) {
	.Form-Item {
		padding-left: 14px;
		padding-right: 14px;
		padding-top: 16px;
		padding-bottom: 16px;
		flex-wrap: wrap;
		max-width: 680px;
		margin: auto;
	}
}
.Form-Item:nth-child(5) {
	border-bottom: 1px solid #ddd;
	justify-content: center;
}
.Form-Item p.Form-Item-Label {
	width: 100%;
	max-width: 248px;
	letter-spacing: 0.05em;
	font-weight: bold;
	font-size: 18px;
	margin-bottom: 25px;
	text-align: left;
}
.Form-Item p.input_area{
	width: 100%;
	text-align: left;
}
@media screen and (max-width: 820px) {
	.Form-Item-Label {
		max-width: inherit;
		display: flex;
		align-items: center;
		font-size: 15px;
	}
}
.Form-Item-Label.isMsg {
	margin: 18px 0;
}
@media screen and (max-width: 820px) {
	.Form-Item-Label.isMsg {
		margin-top: 0;
	}
}
.Form-Item-Label-Required {
	border-radius: 6px;
	margin-right: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
	width: 48px;
	display: inline-block;
	text-align: center;
	background: #ff7a39;
	color: #fff;
	font-size: 14px;
}
@media screen and (max-width: 820px) {
	.Form-Item-Label-Required {
		border-radius: 4px;
		padding-top: 4px;
		padding-bottom: 4px;
		width: 32px;
		font-size: 10px;
	}
}
.Form-Item-Input {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding-left: 1em;
	padding-right: 1em;
	height: 48px;
	flex: 1;
	width: 100%;
	background: #eaedf2;
	font-size: 18px;
}
@media screen and (max-width: 820px) {
	.Form-Item-Input {
		margin-left: 0;
		height: 40px;
		flex: inherit;
		font-size: 15px;
	}
}
.Form-Item-Textarea {
	border: 1px solid #ddd;
	border-radius: 6px;
	padding-left: 1em;
	padding-right: 1em;
	height: 216px;
	flex: 1;
	width: 100%;
	background: #eaedf2;
	font-size: 18px;
}
@media screen and (max-width: 820px) {
	.Form-Item-Textarea {
		margin-left: 0;
		height: 200px;
		flex: inherit;
		font-size: 15px;
	}
}
.Form-Btn {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	background: #333;
	padding: 20px 30px;
	border-radius: 6px;
	transition: .3s;
	width: 100%;
	max-width: 220px;
	margin: auto;
}
.Form-Btn:hover {
	background: #ffa21a;
}
div.Btn_wrap p{
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.Form-Btn_fix{
	border: none;
	border-radius: 6px;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 220px;
	display: block;
	letter-spacing: 0.05em;
	background: #ababab;
	color: #fff;
	font-weight: bold;
	font-size: 2rem;
	margin: auto;
	text-decoration: none;
}
.Btn_wrap{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 40px;
}
@media screen and (max-width: 820px) {
	.Form-Btn {
		padding-top: 20px;
		padding-bottom: 20px;
		width: 280px;
		font-size: 2rem;
	}
	.input_area{
		max-width: none;
	}
	.Form-Item-Input,
	.Form-Item-Textarea{
		max-width: 670px;
		width: 100%;
	}
}
p.privacy{
	text-align: center;
	margin: 20px auto;
}
p.privacy a{
	text-decoration: none;
}
.checkbox_wrap{
	font-size: 2rem;
}
button{
	cursor: pointer;
}
.thanks-inner{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	padding: 0 20px;
}
.center-txt{
	text-align: center;
	margin-top: 30px;
}
.wpcf7 form .wpcf7-response-output{
	width: 100%;
	max-width: 890px;
	margin: auto;
	font-size: 2rem;
}
/* 問い合わせフォーム用css ここまで */

.confirm_inner{
	font-size: 2rem;
	width: 100%;
	max-width: 1200px;
	margin: 80px auto 0 auto;
}
.confirm_inner p{
	text-align: center;
}
.contact_thanks{
	width: 100%;
	max-width: 600px;
	font-size: 2rem;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.company_container{
	margin-top: 150px;
}
table.company_table {
	width: 100%;
	max-width: 850px;
	margin: auto;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 2rem;
}
table.company_table th {
	width: 22%;
	background: #ffa21a;
	border: 1px solid #ccc;
	box-sizing: border-box;
	padding: 15px;
	vertical-align: middle;
	font-weight: bold;
	text-align: center;
	color: #FFF;
}
table.company_table td {
	background: #fff;
	border: 1px solid #ccc;
	box-sizing: border-box;
	padding: 15px;
	vertical-align: top;
	text-align: left;
}
.map_container{
	margin: 150px auto 80px auto;
}
p.map_address{
	width: 100%;
	max-width: 800px;
	margin: 40px auto;
}
iframe{
	width: 100%;
	max-width: 800px;
}

/* 制作実績一覧 ここから */
.work_archive h1{
	text-align: center;
	font-size: 2.5rem;
	margin: 80px auto;
}
.work_archive_list{
	display: flex;
	flex-wrap: wrap;
	gap: 45px;
	justify-content: flex-start;
	width: 100%;
	max-width: 1110px;
	margin: 50px auto 120px auto;
}

article.work_column{
	width: 100%;
	max-width: 300px;
	padding: 50px 20px;
}
article.work_column > ul.AppStore{
	gap: 30px;
}
article.work_column > ul.AppStore li img{
	width: 100%;
	max-width: 144px;
	height: 100%;
	max-height: 60px;
}
section.work_single{
	width: 100%;
	max-width: 300px;
	margin: auto;
	padding: 100px 20px;
}
p.work_more {
	background: none;
	border: none;
	position: relative;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
	letter-spacing: 3px;
	cursor: pointer;
	width: 100%;
	max-width: 200px;
	margin: 100px auto;
}
p.work_more:after,
p.work_more:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	border: 2px solid #000;
	transition: transform 0.2s;
	pointer-events: none;
}
p.work_more:after {
	transform: translate(3px,3px);
}
p.work_more:before {
	transform: translate(-3px,-3px);
}
p.work_more:hover:after,
p.work_more:hover:before {
	transform: translate(0);
}
p.work_more a{
	text-decoration: none;
	font-size: 2rem;
	color: #000;
	display: block;
	padding: 20px;
}
/* 制作実績一覧 ここまで */

/* プライバシーポリシー ここから */
.privacy_container{
	width: 100%;
	max-width: 1200px;
	margin: 100px auto;
}
.privacy_inner{
	padding: 0 20px;
}
.privacy_inner h1{
	text-align: center;
	font-size: 2.7rem;
	margin-bottom: 60px;
}
.privacy_inner h2{
	font-size: 2.5rem;
	margin-bottom: 10px;
}
.privacy_inner p{
	font-size: 2rem;
}
.privacy_content{
	margin-top: 50px;
}
.privacy_content ul,
.privacy_content ol{
	padding-left: 40px;
	font-size: 2rem;
	margin-top: 20px;
}
/* プライバシーポリシー ここまで */

/* 404 ここから */
.error_content_wrap{
	width: 100%;
	max-width: 1200px;
	font-size: 2rem;
	text-align: center;
	margin: 60px auto;
	padding: 0 20px;
}
.error_content_wrap h1 img{
	width: 100%;
	max-width: 400px;
}
.error_content_txt{
	width: 100%;
	max-width: 700px;
	text-align: left;
	margin: 60px auto;
}
/* 404 ここまで */
footer{
	background: #EFEFEF;
	margin-top: auto;
}
.footer_inner{
	padding-top: 30px;
	font-size: 2rem;
}
ul.footer_sns{
	display: flex;
	justify-content: center;
	list-style: none;
	gap: 0 20px;
}
ul.footer_sns li a img{
	width: 100%;
	max-width: 40px;
}
ul.footer_sns li a::after{
	display: none;
}
ul.footer_sns li.twitter-x a{
	display: flex;
	background: #000;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
}
ul.footer_sns li.twitter-x a img{
	max-width: 20px;
	vertical-align: middle;
}
/* タブレット用css ここから */
@media screen and (min-width:501px) and (max-width:1280px) {
	p.sp_lang{
		display: block;
	}
	.main_logo{
		top: 10%;
		max-width: 270px;
	}
	.main_catch{
		max-width: 540px;
	}
	h1.top_catch{
		font-size: 2.7rem;
		width: 100%;
		top: 35%;
	}
	h2.top_catch_read{
		font-size: 2.3rem;
		width: 100%;
		max-width: 480px;
		top: 70%;
	}
	.image_wrap{
		justify-content: center;
		gap: 60px 0;
	}
	.image_wrap_inner{
		max-width: 600px;
	}
	ol.service_list{
		padding-left: 20px;
	}
	.work_content_wrap{
		justify-content: space-around;
		gap: 60px;
		padding: 0 30px;
	}
	.work_content{
		max-width: 290px;
	}
	.drawer{
		width: 100%;
	}
	.menu {
		width: 100%;
		height: 100vh;
		background-color: #FFF;
		margin-top: 0;
		transform: translateX(-120%);
		position: absolute;
		top: 90px;
		padding-right: 0;
		display: block;
	}
	.menu.open {
		transform: translateX(0%);
		height: 100vh;
		position: absolute;
		top: 100px;
		display: block;
	}
	.Toggle{
		display: none;
	}
	.menu ul{
		display: block;
		height: initial;
	}
	.menu ul li.circle-bg{
		width: 100%;
		max-width: 200px;
		margin: 35px auto;
	}
	.menu ul li a{
		padding: 2em;
		border-bottom: 1px dotted #ccc;
	}
	.work_archive_list{
		justify-content: space-between;
		gap: 70px 30px;
		max-width: 750px;
	}
	article.work_column{
		max-width: 360px;
	}
	.introduction_container{
		padding: 60px 20px;
	}
	.company_container{
		padding: 0 20px;
	}
	.float_contact {
		display: none; /* 初期状態では非表示 */
		position: fixed;
		bottom: 0;
		width: 100%;
		background-color: rgba(0,0,0,0.5); /* 背景色はお好みで */
		color: #fff; /* テキスト色はお好みで */
		text-align: center;
		z-index: 1000; /* 他の要素より前面に */
	}
	.float_contact a{
		display: block;
		padding: 20px 0;
		text-decoration: none;
		font-size: 2rem;
		color: #FFF;
	}
}
/* タブレット用css ここまで */

/* スマホ用css ここから */
@media screen and (max-width:500px) {
	p.sp_lang{
		display: block;
	}
	.Toggle{
		display: none;
	}
	.br_pc{
		display: none;
	}
	.br_sp{
		display: inline-block;
	}
	#logo{
		max-width: 50px;
	}
	.main_visual_pc{
		display: none;
	}
	.main_visual_sp{
		display: block;
	}
	.main_logo{
		max-width: 180px;
		top: 6%;
	}
	.main_catch{
		max-width: 350px;
	}
	h1.top_catch{
		top: 50%;
		transform: translate(-50%, -50%);
		font-size: 2.5rem;
		width: 100%;
		max-width: 300px;
	}
	h2.top_catch_read{
		font-size: 2rem;
		width: 100%;
		transform: translate(-50%, 80%);
		padding: 0 20px;
		text-align: left;
		font-weight: 400;
	}
	.br_pc{
		display: none;
	}
	.introduction_container{
		margin-top: 70px;
		padding: 60px 10px;
	}
	.contact_container,
	.company_container{
		padding: 0 10px;
	}
	.image_wrap{
		gap: 50px 0;
	}
	.sp_align{
		text-align: left;
	}
	ol.service_list{
		padding-left: 20px;
	}
	ol.service_list li{
		margin-bottom: 20px;
	}
	div.work_txt p{
		font-size: 1.5rem;
		font-weight: bold;
	}
	p.work_caption{
		font-size: 1.5rem;
	}
	.work_content{
		border-top: 1px solid #000;
		padding-top: 50px;
	}
	table.company_table th, table.company_table td {
		display: block;
		width: 100%;
		border-bottom: none;
	}
	table.company_table tr:last-child td:last-child {
		border-bottom: 1px solid #ccc;
	}
	.menu{
		height: 100vh;
		background: #FFF;
	}
	.menu ul{
		padding-top: 20px;
	}
	.menu.open{
		height: 100vh;
	}
	.menu ul li.circle-bg{
		width: 100%;
		max-width: 300px;
		margin: 35px auto;
	}
	.Form-Item p.Form-Item-Label{
		margin-bottom: 10px;
	}
	.confirm_message{
		padding: 0 20px;
	}
	.Form-Btn_fix{
		text-align: center;
	}
	div.Btn_wrap p{
		gap: 20px 0;
	}
	.confirm_inner{
		padding: 0 20px;
	}
	.confirm_inner p{
		text-align: left;
	}
	p.privacy{
		text-align: left;
	}
	p.check{
		text-align: center;
	}
	.work_archive_list{
		padding: 0 20px;
		justify-content: center;
	}
	.error_content_wrap h1 img{
		max-width: 200px;
	}
	.work_content_wrap{
		justify-content: center;
	}
	.float_contact {
		display: none; /* 初期状態では非表示 */
		position: fixed;
		bottom: 0;
		width: 100%;
		background-color: rgba(0,0,0,0.5); /* 背景色はお好みで */
		color: #fff; /* テキスト色はお好みで */
		text-align: center;
		z-index: 1000; /* 他の要素より前面に */
	}
	.float_contact a{
		display: block;
		padding: 20px 0;
		text-decoration: none;
		font-size: 2rem;
		color: #FFF;
	}
}
/* スマホ用css ここまで */
