

/*パソコン*/

@media all {
	.pc_none,
	.sp_logo {
		display: none;
	}

	.fadein {
		opacity: 0;
		transform: translate(0, 40px);
		transition: all 700ms;
	}

	.fadein.scrollin {
		opacity: 1;
		transform: translate(0, 0);
	}

	#effect2 > div .fadein:nth-of-type(1) {
		-moz-transition-delay: 200ms;
		-webkit-transition-delay: 200ms;
		-o-transition-delay: 200ms;
		-ms-transition-delay: 200ms;
	}

	#effect2 > div .fadein:nth-of-type(2) {
		-moz-transition-delay: 400ms;
		-webkit-transition-delay: 400ms;
		-o-transition-delay: 400ms;
		-ms-transition-delay: 400ms;
	}

	h1,
	h2,
	h3 {
		font-weight: 100;
	}

	p {
		font-size: 1.6rem;
	}

	html,
	body {
		background-color: #fff !important;
	}

	.serif {
		font-family: "Noto Serif JP", serif;
	}

	ul {
		list-style: none;
	}

	table {
		border-collapse: collapse;
	}

	.right {
		text-align: right;
	}

	.right img {
		margin: 0px !important;
	}

	.wpcf7 form.invalid .wpcf7-response-output,
	.wpcf7 form.unaccepted .wpcf7-response-output,
	.wpcf7 form.sent .wpcf7-response-output {
		border: none !important;
		padding-bottom: 50px;
		font-size: 1.6rem;
		color: #dc3232;
		margin-top: -20px;
	}

	.wpcf7-not-valid-tip {
		font-size: 1.6rem;
	}

	.header_bg {
		width: 100%;
		height: 80px;
		position: fixed;
		transition: all 0.5s;
		z-index: 10000;
	}

	#header {
		max-width: 1200px;
		width: 100%;
		height: 80px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		color: white;
		margin: auto;
	}

	#header a {
		color: white;
	}

	.header_bg.change-color {
		background-color: rgba(30, 44, 91, 0.9);
	}

	.header_logo {
		display: flex;
		align-items: center;
		font-size: 10px;
		z-index: 2;
	}

	.header_logo h1 {
		font-size: 22px;
	}

	.header_logo img {
		margin-right: 10px;
	}

	.menu_pc {
		font-size: 15px;
		display: flex;
		align-items: center;
		z-index: 2;
		color: white;
	}

	.menu_list {
		margin-right: 35px;
		position: relative;
		/*疑似要素の親を固定*/
		cursor: pointer;
		/*カーソルをポインターへ*/
		text-decoration: none;
	}

	.menu_list:before {
		content: "";
		/*疑似要素の中身は空（記述は必須）*/
		position: absolute;
		/*子要素として疑似要素を固定*/
		left: 0;
		/*長さはテキストの両端まで*/
		right: 0;
		/*長さはテキストの両端まで*/
		bottom: -5px;
		/*線の上下位置*/
		width: 100%;
		/*線の長さ*/
		height: 2px;
		/*線の太さ*/
		background-color: white;
		/*線の色*/
		transform: scale(0, 1);
		/*横方向に0状態から全体まで線を入れる*/
		transform-origin: center;
		/*中央を起点にアニメーション*/
		transition: transform 0.2s;
		/*アニメーションの時間*/
	}

	.menu_list:hover:before {
		transform: scale(1);
		/*ホバー時に等倍へ拡大*/
	}

	.menu_list:last-child {
		margin-right: 0px;
	}

	.main_imgBox {
		width: 100%;
		height: 100vh;
		overflow: hidden;
		position: relative;
		z-index: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		letter-spacing: 5px;
	}

	.main_img {
		z-index: 10;
		opacity: 0;
		width: 100%;
		height: 100vh;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		position: absolute;
		left: 0;
		top: 0;
		-webkit-animation: anime 24s 0s infinite;
		animation: anime 24s 0s infinite;
	}

	.main_imgBox h2 {
		font-family: "Lora";
		font-size: 10rem;
		color: white;
		z-index: 20;
		text-shadow: 3px 3px 6px black;
	}

	.main_imgBox p {
		font-size: 3.5rem;
		color: white;
		z-index: 20;
		text-shadow: 3px 3px 6px black;
		margin-top: -20px;
	}

	.main_imgBox sub {
		font-family: "Lora";
		font-size: 10rem;
		position: absolute;
		color: white;
		z-index: 20;
		text-shadow: 3px 3px 6px black;
	}

	.main_img:nth-of-type(2) {
		-webkit-animation-delay: 4s;
		animation-delay: 4s;
	}

	.main_img:nth-of-type(3) {
		-webkit-animation-delay: 8s;
		animation-delay: 8s;
	}

	.main_img:nth-of-type(4) {
		-webkit-animation-delay: 12s;
		animation-delay: 12s;
	}

	.main_img:nth-of-type(5) {
		-webkit-animation-delay: 16s;
		animation-delay: 16s;
	}

	.main_img:nth-of-type(6) {
		-webkit-animation-delay: 20s;
		animation-delay: 20s;
	}

	@keyframes anime {
		0% {
			opacity: 0;
		}

		8% {
			opacity: 1;
		}

		17% {
			opacity: 1;
		}

		25% {
			opacity: 0;
			z-index: 9;
		}

		100% {
			opacity: 0;
		}
	}

	.top_news {
		width: 800px;
		margin: -50px auto 0px;
		color: white;
		background-color: #1e2c5b;
		z-index: 2;
		position: relative;
		display: flex;
		align-items: center;
		font-size: 1.6rem;
		justify-content: center;
		padding: 30px;
	}

	.top_news a {
		color: white;
	}

	.top_news a:hover {
		opacity: 0.7;
		transition: all 0.5s;
	}

	.top_news_title {
		line-height: 1.8;
	}

	.top_news .wrapper01 {
		margin-right: 70px;
	}

	.top_news .wrapper01 p {
		margin-top: -10px;
	}

	.top_news .wrapper02 {
		display: flex;
		flex-direction: column;
	}

	.top_news .wrapper03 {
		display: flex;
		margin: 5px 0px;
	}

	.top_news h2 {
		font-size: 2.8rem;
	}

	.top_news_data {
		display: flex;
		align-items: center;
		width: 170px;
	}

	.top_news_data:after {
		border-top: 1px solid white;
		content: "";
		flex-grow: 1;
		width: 50px;
		margin: 0px 20px;
	}

	#section01 {
		max-width: 1000px;
		margin: 0px auto 200px;
		padding-top: 200px;
	}

	#section01 .img_size {
		max-width: 65%;
		position: absolute;
		left: 0;
		z-index: 1;
	}

	#section01 .img_size img {
		width: 100%;
		height: auto;
	}

	#section01 .wrapper01 {
		max-width: 700px;
		padding: 50px;
		background: rgba(255, 255, 255, 0.9);
		z-index: 2;
		position: relative;
		margin: 230px 0px 0px auto;
		filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
	}

	#section01 h2,
	#section02 h2,
	#section03 h2,
	#section05 h2,
	#section07 h2 {
		font-size: 8rem;
		color: #1e2c5b;
		font-family: "Caveat";
		line-height: 1;
	}

	#section01 h3,
	#section02 h3,
	#section03 h3,
	#section05 h3,
	#section07 h3 {
		font-size: 2rem;
		margin-top: 15px;
	}

	#section01 h3::after,
	#section02 h3::after,
	#section03 h3::after {
		display: block;
		border-top: 2px solid black;
		content: "";
		flex-grow: 1;
		width: 80px;
		margin: 10px 0px 30px;
	}

	#section02 h3::after,
	#section05 h3::after,
	#section07 h3::after {
		display: block;
		border-top: 2px solid black;
		content: "";
		flex-grow: 1;
		width: 80px;
		margin: 10px auto 30px;
	}

	#section02 {
		width: 100%;
		margin-bottom: 200px;
		overflow: hidden;
		padding-top: 50px !important;
		margin-top: -50px !important;
	}

	#section02 .wrapper01 {
		padding: 100px 0px;
		width: 100%;
		background: #f7f7f7;
		/*margin-left: 500px;*/
	}

	#section02 .wrapper02 {
		width: 1200px;
		text-align: center;
		/*position: relative;
		/*left: -320px;*/
		margin: 0px auto 50px;
	}

	#section02 .wrapper03 {
		max-width: 1200px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		/*position: relative;
		/*left: -320px;*/
		margin: auto;
		gap: 60px;
	}

	#section02 .wrapper04 {
		width: calc((100% - 60px) / 2);
		&:last-child {
			width: 100%;
		}
	}

	#section02 .wrapper04 .image01 {
		width: 100%;
		height: 300px;
		background-image: url(https://k-crude.co.jp/wp-content/themes/crude/images/page_img02.jpg);
		background-size: cover;
		background-position: center;
		display: flex;
		justify-content: center;
		align-items: center;

	}

	#section02 .wrapper04 .image01 p,
	#section02 .wrapper04 .image02 p,
	#section02 .wrapper04 .image03 p {
		color: white;
		font-size: 2.5rem;
		font-family: "Lora";
		text-shadow: 2px 2px 3px black;
	}

	#section02 .wrapper04 .image02 {
		width: 100%;
		height: 300px;
		background-image: url(https://k-crude.co.jp/wp-content/themes/crude/images/page_img03.jpg);
		background-size: cover;
		background-position: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#section02 .wrapper04 .image03 {
		width: 100%;
		height: 300px;
		background-image: url(https://k-crude.co.jp/wp-content/themes/crude/images/page_img03_02.jpg);
		background-size: cover;
		background-position: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	#section02 .wrapper05 {
		text-align: center;
		background: #ca4d97;
		max-width: 450px;
		height: 95px;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		color: white;
		margin: -30px auto 50px;
	}

	#section02 .wrapper05 h4 {
		font-size: 2rem;
		font-weight: 100;
	}

	#section02 .wrapper05 p {
		font-size: 1.3rem;
	}

	#section02 .flow {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		gap: 80px 30px;
		margin-bottom: 60px;
		h5 {
			width: 100%;
			text-align: center;
			font-size: 2.4rem;
		}
		article {
			width: calc((100% - 90px) / 4);
			.round {
				aspect-ratio: 1;
				width: 80px;
				border: 1px solid black;
				background-color: white;
				border-radius: 50%;
				display: flex;
				align-items: center;
				justify-content: center;
				line-height: 1;
				margin: 0px auto 30px;
				font-size: 2rem;
			}
			i {
				font-size: 6.5rem;
				text-align: center;
				display: block;
				margin-bottom: 10px;
			}
			h6 {
				font-size: 2.2rem;
				text-align: center;
				margin-bottom: 20px;
			}
		}
	}

	#section02 {
		.address {
			width: fit-content;
			display: flex;
			align-items: center;
			justify-content: center;
			border-top: 1px solid black;
			border-bottom: 1px solid black;
			padding: 15px;
			margin: auto;
			p {
				font-size: 1.8rem;
				margin-right: 20px;
			}
			ul {
				font-size: 1.6rem;
			}
		}
	}

	#section05,
	#section07 {
		padding-top: 100px !important;
		margin-top: -100px !important;
	}

	#section03_top {
		padding-bottom: 100px;
	}

	#section03 {
		width: 1200px;
		margin: 0px auto 200px;
		padding: 100px;
		background-image: url(https://k-crude.co.jp/wp-content/themes/crude/images/page_img04.jpg);
		background-size: cover;
	}

	#section03 .wrapper01 {
		background: rgba(255, 255, 255, 0.9);
		padding: 50px;
	}

	#section04 {
		width: 100%;
		height: 500px;
		margin-bottom: 200px;
		background-image: url(https://k-crude.co.jp/wp-content/themes/crude/images/page_img05.jpg);
		background-attachment: fixed;
		background-size: cover;
	}

	/*#section04::before {
		content: "";
		display: block;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-image: url(images/page_img05.jpg);
		position: fixed;
		background-size: cover;
		z-index: -1;
	}*/

	#section05 p {
		font-size: 1.8rem;
	}

	#section05 .wrapper01 {
		display: flex;
		justify-content: center;
		align-items: center;
		border-left: 1px solid black;
		border-right: 1px solid black;
		padding: 30px 60px;
		margin: 80px 0px;
		text-align: justify;
	}

	#section05 .wrapper01 p {
		font-size: 1.6rem;
	}

	#section05 .wrapper01 img {
		margin-right: 50px;
	}

	#section05 .name {
		text-align: right;
		display: block;
	}

	#section05 .wrapper02 {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 50px;
		padding-left: 130px;
	}

	#section05 th,
	#section05 td {
		padding: 20px 50px;
		border-bottom: 1px solid black;
		border-top: 1px solid black;
		text-align: left;
		font-weight: 100;
	}

	#section05 th a,
	#section05 td a,
	address a {
		color: black;
	}

	#section05 th {
		background: #f7f7f7;
		font-size: 1.8rem;
	}

	#section05 td {
		font-size: 1.6rem;
	}

	#section05 .wrapper04 {
		width: 1000px;
		margin: auto;
		text-align: center;
	}

	#section06 {
		margin: 250px 0px;
		text-align: center;
	}

	#section06 img {
		margin-left: -250px;
	}

	#section07 {
		text-align: center;
		margin-bottom: 200px;
	}

	#section07 p {
		font-size: 1.6rem;
	}

	#section07 .wrapper01 {
		display: flex;
		justify-content: center;
	}

	#section07 address {
		font-size: 3.5rem;
		font-style: normal !important;
		letter-spacing: 4px;
	}

	.fas {
		margin-right: 10px;
	}

	#section07 .wrapper02 {
		text-align: center;
		margin: 40px 30px;
	}

	#section07 .wrapper02 p {
		font-size: 1.2rem;
		letter-spacing: 1px;
	}

	#section07 table {
		width: 800px;
		margin: auto;
	}

	#section07 th {
		padding: 20px 30px;
		font-size: 1.8rem;
		width: 40%;
	}

	#section07 td {
		padding: 20px 30px 20px 0px;
	}

	#section07 th,
	#section07 td {
		border-bottom: 1px solid black;
		border-top: 1px solid black;
		text-align: left;
		font-weight: 100;
		font-size: 1.6rem;
	}

	.required {
		font-size: 1rem;
		color: white;
		line-height: 1;
		padding: 1px 5px;
		background: #cb4d97;
		margin-left: 10px;
	}

	.check {
		font-size: 1.8rem;
		text-align: center;
		margin-top: 80px;
	}

	.button {
		width: 230px;
		height: 46px;
		color: #eaa200;
		border: 1px solid #eaa200;
		font-size: 2rem;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 50px auto 20px;
		transition: 0.3s;
	}

	.button:hover {
		color: white;
		background: #eaa200;
	}

	.button .fas {
		margin-left: 15px;
		margin-right: 0px;
	}

	#section07 .wrapper03 {
		width: 800px;
		height: 500px;
		margin: auto;
		background-color: #f7f7f7;
		padding: 50px;
		overflow: scroll;
		text-align: justify;
		font-size: 1.4rem;
	}

	#section07 .wrapper03 h2 {
		text-align: center;
		font-size: 2rem;
		color: black;
		margin-bottom: 50px;
	}

	#section07 li {
		margin-bottom: 30px;
	}

	#section07 li:last-child,
	#section07 .mb0 {
		margin-bottom: 0px;
	}

	footer {
		width: 100%;
		padding: 100px 0px 50px;
		background-image: url(https://k-crude.co.jp/wp-content/themes/crude/images/footer_img.jpg);
		background-size: cover;
		text-align: center;
		color: white;
	}

	footer img {
		margin-bottom: 100px;
	}

	footer .menu_pc {
		justify-content: center;
		margin-bottom: 80px;
	}

	footer .menu_pc a {
		color: white;
	}

	.copy {
		width: 800px;
		border-top: 1px solid white;
		font-size: 1.4rem;
		margin: auto;
		padding-top: 30px;
	}

	.form,
	.p-locality {
		width: 100%;
		padding: 5px 10px;
		border: 1px solid black;
	}

	.p-postal-code {
		padding: 5px 10px;
		border: 1px solid black;
	}

	.form_text {
		width: 100%;
		height: 200px;
		padding: 5px 10px;
		border: 1px solid black;
	}
}

/*電話番号発信スマホのみ*/
@media (min-width: 751px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}

	.fullscreenmenu {
		display: none;
	}
}

/*ipad*/
@media screen and (max-width: 1024px) {
	#header {
		width: 100%;
	}

	#header .menu_pc {
		padding-right: 50px;
	}

	.main_imgBox h2 {
		text-align: center;
		line-height: 1.5;
	}

	.main_imgBox p {
		margin-top: 50px;
	}

	#section02 .wrapper01 {
		padding: 100px 30px;
	}

	#section02 .wrapper02 {
		width: 100%;
	}

	#section02 .wrapper03 {
		width: 100%;
		justify-content: space-between;
	}

	#section02 .wrapper05 h4 {
		font-size: 1.8rem;
	}

	#section02 .wrapper05 {
		width: 93%;
	}

	#section02 .wrapper04 .image01 p,
	#section02 .wrapper04 .image02 p {
		font-size: 2rem;
	}

	#section02 .wrapper04 .image01,
	#section02 .wrapper04 .image02 {
		width: 100%;
	}

	#section03 {
		width: 100%;
	}

	#section04 {
		background-attachment: scroll;
	}

	#section05 {
		padding: 0px 50px;
	}

	#section05 .wrapper04 {
		width: 100%;
	}

	#section06 img {
		margin-left: -20%;
	}

	.top_news {
		width: 90%;
	}

	.copy {
		width: 80%;
	}
}

/*ipadmini*/
@media screen and (max-width: 768px) {
	#header .menu_pc {
		padding-right: 30px;
	}

	#header,
	.header_bg {
		height: 67px;
	}

	.menu_list {
		margin-right: 20px;
	}

	.header_logo img {
		width: 180px;
		height: auto;
	}

	#section01 .wrapper01 {
		max-width: 600px;
		padding: 30px;
		margin-right: 20px;
	}

	#section02 .wrapper03 {
		align-items: center;
		flex-direction: column;
	}

	#section02 .wrapper04 {
		width: 100%;
		margin-bottom: 80px;
	}

	#section02 .wrapper04:last-child {
		margin-bottom: 0px;
	}

	#section02 .wrapper05 {
		width: 70%;
	}

	#section02 .wrapper04 .image01 p,
	#section02 .wrapper04 .image02 p {
		font-size: 2.5rem;
	}

	#section02 .flow {
		article {
			width: calc((100% - 30px) / 2);
		}
	}

	#section03 {
		padding: 55px;
	}

	#section05 .wrapper02 {
		padding-left: 0px;
	}

	#section05 h3:last-child {
		text-align: left;
		width: 150px;
	}

	#section05 h3:last-child::after {
		margin: 10px 0px 30px;
	}

	#section05 th,
	#section05 td {
		padding: 20px;
	}

	#section06 img {
		margin-left: -15%;
		width: 450px;
		height: auto;
	}

	#section07 table {
		width: 90%;
	}

	#section07 .wrapper03 {
		width: 90%;
		height: 350px;
	}

	footer {
		padding: 50px 0px;
	}

	footer img {
		margin-bottom: 50px;
	}
}

/*スマホ*/

@media screen and (max-width: 599px) {
	.sp_none {
		display: none;
	}

	.pc_none {
		display: block;
	}

	/*フルスクリーンメニュー*/
	menu,
	.menu span {
		display: inline-block;
		-webkit-transition: all 0.4s;
		transition: all 0.4s;
		box-sizing: border-box;
	}

	.menu {
		position: fixed;
		top: 23px;
		right: 25px;
		width: 35px;
		height: 22px;
		z-index: 10;
		outline: none;
		mix-blend-mode: difference;
	}

	.menu span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: white;
		z-index: 10;
	}

	.menu span:nth-of-type(1) {
		top: 0px;
	}

	.menu span:nth-of-type(2) {
		top: 10px;
	}

	.menu span:nth-of-type(3) {
		bottom: 0px;
	}

	.menu.active span:nth-of-type(1) {
		-webkit-transform: translateY(10px) rotate(45deg);
		transform: translateY(10px) rotate(45deg);
	}

	.menu.active span:nth-of-type(2) {
		opacity: 0;
	}

	.menu.active span:nth-of-type(3) {
		-webkit-transform: translateY(-10px) rotate(-45deg);
		transform: translateY(-10px) rotate(-45deg);
	}

	#nav_sp {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10;
		width: 100%;
		height: 100vh;
		opacity: 0;
		background-color: #fff;
		transition: all 0.3s ease-in-out;
		visibility: hidden;
	}

	#nav_sp.active {
		right: 0;
		opacity: 1;
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		transform: translateX(0);
		visibility: visible;
		background-color: #1e2c5b;
	}

	#nav_sp ul {
		padding: 20px 0;
		height: 80%;
	}

	#nav_sp ul li {
		list-style-type: none;
	}

	#nav_sp ul li a {
		display: inline-block;
		padding: 20px 0;
		transition: all 0.2s ease-in-out;
		text-align: center;
		text-decoration: none;
		color: white;
		font-size: 1.6rem;
	}

	#nav_sp ul li a:hover {
		color: #f65d5d;
	}

	.nav_flex {
		display: flex;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
	}

	#header,
	.header_bg {
		display: none;
	}

	.main_imgBox h2 {
		font-size: 5rem;
		line-height: 1.3;
	}

	.top_news {
		flex-direction: column;
		width: 80%;
		padding: 10px 20px;
	}

	.main_imgBox p {
		margin-top: 20px;
		font-size: 2rem;
	}

	.top_news .wrapper01 {
		margin-right: 0px;
		text-align: center;
		margin-bottom: 20px;
	}

	.top_news .wrapper03 {
		flex-direction: column;
		margin-bottom: 20px;
		font-size: 1.4rem;
	}

	#section01 {
		padding-top: 100px;
		margin-bottom: 100px;
	}

	#section01 .img_size {
		max-width: 80%;
	}

	#section01 h2,
	#section02 h2,
	#section03 h2,
	#section05 h2,
	#section07 h2 {
		font-size: 4.5rem;
	}

	#section01 h3,
	#section02 h3,
	#section03 h3,
	#section05 h3,
	#section07 h3 {
		font-size: 1.8rem;
	}

	#section01 .wrapper01 {
		max-width: 300px;
		margin: 130px 20px 0px auto;
	}

	#section02 {
		margin-bottom: 50px;
	}

	#section02 .flow {
		article {
			width: 100%;
		}
	}

	#section02 .address {
flex-direction: column;
p {
	margin: 0px 0px 20px 0px;
}
	}

	#section02 .wrapper01 {
		padding: 100px 20px;
	}

	#section02 .wrapper04 {
		width: 100%;
	}

	#section02 .wrapper05 {
		width: 93%;
		padding: 10px;
		height: auto;
	}

	#section02 .wrapper05 h4 {
		line-height: 1.5;
		margin-bottom: 5px;
	}

	#section02 .wrapper04 .image01 p,
	#section02 .wrapper04 .image02 p,
	#section02 .wrapper04 .image03 p {
		font-size: 2rem;
		text-align: center;
	}

	#section02 .wrapper04 .image01,
	#section02 .wrapper04 .image02,
	#section02 .wrapper04 .image03 {
		width: 100%;
		height: 200px;
	}

	#section02 .wrapper05 p {
		letter-spacing: 1px;
	}

	#section03 {
		padding: 30px;
	}

	#section03 .wrapper01 {
		padding: 20px;
	}

	#section05 {
		padding: 0px 20px;
	}

	#section05 .wrapper01 img {
		margin-right: 0px;
		margin-bottom: 50px;
	}

	#section05 .wrapper01 {
		padding: 40px 20px;
		flex-direction: column;
	}

	#section05 .wrapper02 {
		flex-direction: column;
	}

	#section06 img {
		margin-left: 0px;
		max-width: 280px;
		height: auto;
	}

	#section06 {
		margin: 150px 0px;
		text-align: left;
	}

	#section07 {
		padding-left: 20px;
		padding-right: 20px;
	}

	#section07 .wrapper01 {
		flex-direction: column;
	}

	#section07 address {
		font-size: 2.5rem;
	}

	#section07 .wrapper02 {
		margin: 40px 0px 0px;
	}

	#section07 table {
		width: 100%;
		margin-top: 50px;
	}

	#section07 th,
	#section07 td {
		display: block;
	}

	#section07 .wrapper03 {
		width: 100%;
		height: 300px;
		padding: 30px;
	}

	#section07 .wrapper03 h2 {
		font-size: 1.8rem;
		margin: 10px 0px 30px;
		line-height: 1.5;
	}

	footer .menu_pc {
		margin-bottom: 50px;
		margin-left: 50px;
		flex-direction: column;
		align-items: baseline;
	}

	.menu_list {
		margin-right: 0px;
		margin-bottom: 10px;
	}

	.copy {
		width: 90%;
		font-size: 1.2rem;
	}

	.sp_logo {
		z-index: 9;
		width: 180px;
		height: auto;
		position: fixed;
		top: 0;
		left: 0;
	}

	#section07 th {
		width: 100%;
	}

	#section07 td {
		border-bottom: 1px solid black;
		border-top: none;
		padding: 5px 0px 20px 0px;
	}

	#section07 th {
		padding: 20px 0px 0px 0px;
		border: none;
	}
}
