@media only screen and (min-width:750px) {
	body {
		min-width: 1080px;
		margin: 0;
		font-family: '游ゴシック', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'Arial', sans-serif;
		font-weight: 500;
		color: #333333;
	}
	.pc_off {
		display: none !important;
	}
	h1,
	h2,
	h3,
	p {
		margin: 0;
	}
	ul {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	img {
		display: block;
		max-width: 100%;
		margin: 0;
	}
	a {
		text-decoration: none;
		color: #333333;
	}
	.fadein_l {
		opacity: 0;
		transition: 1.5s;
		transform: translate(-50px, 0);
	}
	.fadein_r {
		opacity: 0;
		transition: 1.5s;
		transform: translate(50px, 0);
	}
	.fadein {
		opacity: 0;
		transition: 1.5s;
		transform: translate(0, 50px);
	}
	.fadein_l.fade_in_l,
	.fadein_r.fade_in_r,
	.fadein.fade_in {
		opacity: 1;
		transform: translate(0px, 0);
	}
	.scalein {
		opacity: 0;
		transition: 0.8s;
		transform: scale(0);
	}
	.scalein.scale_in {
		opacity: 1;
		transform: scale(1);
	}
	/* common */
	.ub {
		font-family: 'Ubuntu', sans-serif;
		font-weight: bold;
	}
	.t_tl_h2 {
		font-family: 'Ubuntu', sans-serif;
		font-size: 30px;
		line-height: 40px;
		letter-spacing: 0.75px;
	}
	.t_tl_h2::first-letter {
		color: #ff47d6;
	}
	.t_btn_more {
		display: block;
		width: 200px;
		border-radius: 3px;
		position: relative;
	}
	.t_btn_more .t_btn_more_inner {
		display: flex;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
		padding: 15px 10px 15px 0;
		font-family: 'Ubuntu', sans-serif;
		font-size: 16px;
		line-height: 18px;
		letter-spacing: 0.4px;
		position: relative;
	}
	.t_btn_more .t_btn_more_inner:before {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
		content: '';
		transform-origin: right top;
		transform: scale(0, 1);
		transition: transform .3s;
	}
	.t_btn_more:hover .t_btn_more_inner {
		color: #fff;
	}
	.t_btn_more:hover .t_btn_more_inner:before {
		transform-origin: left top;
		transform: scale(1, 1);
	}
	.t_btn_more:before {
		content: "";
		width: 30px;
		height: 30px;
		border-radius: 50%;
		margin: auto;
		position: absolute;
		right: 10px;
		top: 0;
		bottom: 0;
		transition: transform .3s;
	}
	.t_btn_more:after {
		content: "";
		width: 4px;
		height: 4px;
		border-top: 2px solid #FFF;
		border-right: 2px solid #FFF;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		margin: auto;
		position: absolute;
		right: 23px;
		top: 0;
		bottom: 0;
		transition: transform .3s;
	}
	/* header */
	header {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		box-sizing: border-box;
		padding: 30px 30px;
	}
	.h_logo {
		display: block;
		width: 250px;
	}
	header div {
		display: flex;
		align-items: center;
		gap: 0 30px;
	}
	header nav ul {
		display: flex;
		gap: 0 38px;
	}
	header nav ul a {
		display: inline-block;
		font-size: 14px;
		line-height: 18px;
		letter-spacing: 0.4px;
		position: relative;
	}
	header nav ul li:last-child a {
		color: #fc4d50;
	}
	header nav ul a:after {
		position: absolute;
		bottom: -4px;
		left: 0;
		content: '';
		width: 100%;
		height: 2px;
		background: #333;
		transform: scale(0, 1);
		transform-origin: center top;
		transition: transform .3s;
	}
	header nav ul li:last-child a:after {
		background: #fc4d50;
	}
	header nav ul a:hover:after {
		transform: scale(1, 1);
	}
	.h_sns {
		display: flex;
		gap: 0 12px;
	}
	.h_sns li a {
		display: flex;
		box-sizing: border-box;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border-radius: 50%;
		transition: all 0.3s;
	}
	.h_sns li a svg {
		fill: #ffffff;
		transition: all 0.3s;
	}
	.h_sns li:nth-child(1) a {
		border: 2px solid #ff47d6;
		background: #ff47d6;
	}
	.h_sns li:nth-child(2) a {
		border: 2px solid #1d9bf0;
		background: #1d9bf0;
	}
	.h_sns li:nth-child(3) a {
		border: 2px solid #1ed760;
		background: #1ed760;
	}
	.h_sns li a:hover {
		background: #fff;
	}
	.h_sns li:nth-child(1) a:hover svg {
		fill: #ff47d6;
	}
	.h_sns li:nth-child(2) a:hover svg {
		fill: #1d9bf0;
	}
	.h_sns li:nth-child(3) a:hover svg {
		fill: #1ed760;
	}
	/* footer */
	footer {
		width: 100%;
		margin: 100px 0 0 0;
		padding: 5px 0 0 0;
		border-top: 3px solid #0000ff;
	}
	.f_inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 0 0 20px 0;
		border-top: 1px solid #0000ff;
	}
	.f_inner_l {
		margin: 0 0 0 30px;
	}
	.f_inner_l div {
		text-align: right;
	}
	.f_inner_l a {
		display: block;
		margin: 0 0 10px 0;
	}
	.f_inner_l a img {
		width: 280px;
	}
	.f_4ctive {
		margin: 0 0 7px 0;
		font-size: 13px;
		line-height: 14px;
		font-weight: bold;
	}
	.f_contact {
		width: 280px;
		padding: 8px 0;
		background: #0000ff;
		border-radius: 3px;
		font-size: 16px;
		line-height: 20px;
		color: #fff;
		text-align: center;
		letter-spacing: 0.4px;
	}
	.f_inner_r {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	.f_inner nav {
		margin: 0 0 20px 0;
		font-size: 16px;
		line-height: 20px;
		color: #fff;
	}
	.f_inner nav ul {
		display: flex;
		gap: 0 55px;
		padding: 35px 60px 35px 65px;
		background: #0000ff;
		border-radius: 0 0 0 20px;
	}
	.f_inner nav ul li a {
		display: inline-block;
		font-size: 16px;
		line-height: 20px;
		color: #fff;
		letter-spacing: 0.4px;
		position: relative;
	}
	/*.f_inner nav ul li:last-child a {
		color: #fc4d50;
	}*/
	.f_inner nav ul a:after {
		position: absolute;
		bottom: -4px;
		left: 0;
		content: '';
		width: 100%;
		height: 2px;
		background: #FFF;
		transform: scale(0, 1);
		transform-origin: center top;
		transition: transform .3s;
	}
	.f_inner nav ul li:last-child a:after {
		background: #fc4d50;
	}
	.f_inner nav ul a:hover:after {
		transform: scale(1, 1);
	}
	.f_inner_btm {
		padding: 0 10px 0 0;
		display: flex;
		align-items: center;
		gap: 0 10px;
	}
	.f_sns {
		display: flex;
		gap: 0 12px;
		margin: 0 15px 0 0;
	}
	.f_sns li a {
		display: flex;
		box-sizing: border-box;
		align-items: center;
		justify-content: center;
		width: 36px;
		height: 36px;
		border-radius: 50%;
		transition: all 0.3s;
	}
	.f_sns li a svg {
		fill: #fff;
		transition: all 0.3s;
	}
	.f_sns li:nth-child(1) a {
		border: 2px solid #1ed760;
		background: #1ed760;
	}
	.f_sns li:nth-child(2) a {
		border: 2px solid #5865f2;
		background: #5865f2;
	}
	.f_sns li:nth-child(3) a {
		border: 2px solid #1d9bf0;
		background: #1d9bf0;
	}
	.f_sns li:nth-child(4) a {
		border: 2px solid #ff0000;
		background: #ff0000;
	}
	.f_sns li:nth-child(5) a {
		border: none;
		background: #FFF;
		position: relative;
	}
	.f_sns li:nth-child(5) a:hover {
		background: #1da0c3;
	}
	.f_sns li:nth-child(5) a svg {
		fill: #1da0c3;
	}
	.f_sns li:nth-child(5) a:after {
		content: "";
		width: 36px;
		height: 36px;
		box-sizing: border-box;
		border: 2px solid #1da0c3;
		border-radius: 50%;
		transition: all 0.3s;
		position: absolute;
		top: 0;
		left: 0;
	}
	.f_sns li a:hover {
		background: #fff;
	}
	.f_sns li:nth-child(1) a:hover svg {
		fill: #1ed760;
	}
	.f_sns li:nth-child(2) a:hover svg {
		fill: #5865f2;
	}
	.f_sns li:nth-child(3) a:hover svg {
		fill: #1d9bf0;
	}
	.f_sns li:nth-child(4) a:hover svg {
		fill: #ff0000;
	}
	.f_sns li:nth-child(5) a:hover svg {
		fill: #fff;
	}
	.f_inner_btm .f_tr a {
		display: block;
		width: 100px;
		padding: 6px 0;
		background: #000;
		border-radius: 3px;
		font-size: 12px;
		line-height: 16px;
		color: #FFF;
		font-weight: bold;
		text-align: center;
		transition: all 0.2s;
	}
	.f_inner_btm .f_tr a:hover {
		background: #0000ff;
	}
	.f_copy {
		padding: 7px 0;
		background: #0000ff;
		font-size: 13px;
		line-height: 16px;
		color: #fff;
		text-align: center;
	}
	@media only screen and (min-width:750px) and (max-width:1199px) {
		body {
			width: 100%;
		}
	}
}