@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		outline: 0;
		font-size: 100%;
		vertical-align: baseline;
		background: transparent;
}

body {
		line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
		display: block;
}

blockquote, q {
		quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
		content: '';
		content: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
		font-weight: inherit;
}

a {
		margin: 0;
		padding: 0;
		font-size: 100%;
		vertical-align: baseline;
		background: transparent;
}

ins {
		background-color: #ff9;
		color: #000;
		text-decoration: none;
}

mark {
		background-color: #ff9;
		color: #000;
		font-style: italic;
		font-weight: bold;
}

del {
		text-decoration: line-through;
}

abbr[title], dfn[title] {
		border-bottom: 1px dotted;
		cursor: help;
}

table {
		border-collapse: collapse;
		border-spacing: 0;
}

th {
		text-align: left;
		vertical-align: top;
		font-weight: normal;
}

td {
		text-align: left;
		vertical-align: top;
}

hr {
		display: block;
		height: 1px;
		border: 0;
		border-top: 1px solid #ccc;
		margin: 1em 0;
		padding: 0;
}

input, select, textarea, img {
		vertical-align: middle;
}

ul, dl, ol {
		list-style: none;
}

em {
		font-style: normal;
}

* {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-o-box-sizing: border-box;
		-ms-box-sizing: border-box;
		box-sizing: border-box;
}

/* ========================================
    ■ 必須設定
======================================== */
/* 文字色 */
.font_blue {
		color: #0065b4;
}

.font_orange {
		color: #f88625;
}

/* 関数
----------------------------- */
.kenten, .kenten_half {
		/* 圏点 */
		padding: 0.5em 0;
		background-repeat: repeat-x;
		background-size: 1em 0.5em;
		background-position: top left;
		background-image: radial-gradient(0.16em 0.16em at center center, #f88625 50%, transparent 53%);
		font-feature-settings: normal;
}

.kenten_half {
		background-size: 0.65em 0.5em;
}

.is_sp {
		display: block;
		/* メディアクエリ用 */
}

@media screen and (min-width: 769px) {
		.is_sp {
				display: none;
		}
}

.is_pc {
		display: none;
		/* メディアクエリ用 */
}

@media screen and (min-width: 769px) {
		.is_pc {
				display: block;
		}
}

img.is_sp,
br.is_sp {
		display: inline-block;
		/* メディアクエリ用 */
}

@media screen and (min-width: 769px) {
		img.is_sp,
		br.is_sp {
				display: none;
		}
}

img.is_pc,
br.is_pc {
		display: none;
		/* メディアクエリ用 */
}

@media screen and (min-width: 769px) {
		img.is_pc,
		br.is_pc {
				display: inline-block;
		}
}

/* ========================================
■ General
======================================== */
html {
		font-size: 3.64583vw;
		/* メディアクエリ用 */
}

@media screen and (min-width: 769px) {
		html {
				font-size: 1.6276vw;
		}
}

body {
		font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
		color: #222;
		line-height: 1.8;
		background: #fff;
		-webkit-text-size-adjust: 100%;
		overflow-x: hidden;
}

a {
		color: #0033cc;
		text-decoration: underline;
		transition: 0.2s ease;
}

a::before, a::after {
		transition: 0.2s ease;
}

a:hover {
		text-decoration: none;
		transition: 0.2s ease;
}

a:hover::before, a:hover::after {
		transition: 0.2s ease;
}

img,
video,
object {
		width: 100%;
		height: auto;
		vertical-align: bottom;
		border: none;
}

section {
		position: relative;
}

mark {
		background: none;
		color: inherit;
		font-weight: normal;
		font-style: normal;
}

/* utility class
----------------------------- */
.wrap {
		position: relative;
		width: 100%;
		margin: 0 auto;
}

.clearfix {
		overflow: hidden;
		zoom: 1;
}

.clearfix:after {
		content: "";
		display: block;
		clear: both;
}

.hover:hover {
		transition: 0.2s ease;
}

.hover:hover:hover {
		transform: scale(0.98, 0.98);
		transition: 0.2s ease;
}

.scrollbar::-webkit-scrollbar {
		background: #ccc;
		width: 10px;
}

.scrollbar::-webkit-scrollbar-thumb {
		background: #aaa;
}

table.tbl_block {
		display: block;
		text-align: left;
		/* メディアクエリ用 */
}

@media screen and (min-width: 769px) {
		table.tbl_block {
				display: table;
		}
}

table.tbl_block tbody {
		display: block;
		text-align: left;
		/* メディアクエリ用 */
}

@media screen and (min-width: 769px) {
		table.tbl_block tbody {
				display: table-row-group;
		}
}

table.tbl_block tr {
		display: block;
		text-align: left;
		/* メディアクエリ用 */
}

@media screen and (min-width: 769px) {
		table.tbl_block tr {
				display: table-row;
		}
}

table.tbl_block th,
table.tbl_block td {
		display: block;
		text-align: left;
		/* メディアクエリ用 */
}

@media screen and (min-width: 769px) {
		table.tbl_block th,
		table.tbl_block td {
				display: table-cell;
		}
}

/* マーカー */
/* ・リスト */
.list_dot > li {
		position: relative;
		padding-left: 1em;
}

.list_dot > li::before {
		content: '・';
		display: inline-block;
		position: absolute;
		left: 0;
		top: 0;
}

/* 背景 */
.bg_orange {
		background: linear-gradient(to right, #ffcb16, #ffdb17);
}

/* ========================================
    ■ ページトップボタン
======================================== */
#page_top {
		position: fixed;
		right: 20px;
}

#page_top a {
		display: block;
		width: 12vw;
		height: 12vw;
		color: #fff;
		text-align: center;
		background: rgba(0, 0, 0, 0.25);
		border-radius: 50%;
		/* メディアクエリ用 */
}

#page_top a:hover {
		background: rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 769px) {
		#page_top a {
				width: 44px;
				height: 44px;
		}
}

#page_top .material-icons {
		line-height: 12vw;
		font-size: 9vw;
		/* メディアクエリ用 */
}

@media screen and (min-width: 769px) {
		#page_top .material-icons {
				line-height: 44px;
				font-size: 20px;
		}
}

.animated:hover {
		animation-name: pulse;
		animation-duration: 1s;
}

/* ========================================
■ header
======================================== */
.header_container {
		display: block;
		width: 100%;
		background: #f88625;
}

.header_logo {
		display: block;
		margin: auto;
		padding-bottom: 0;
		/* メディアクエリ用 */
		/* メディアクエリ用 */
}

@media screen and (min-width: 769px) {
		.header_logo {
				width: 13.9974vw;
				padding: 9px 0 3px;
		}
}

@media screen and (max-width: 768px) {
		.header_logo {
				width: 30.46875vw;
				padding: 9px 0 0;
		}
}

/* ========================================
■ keyv
======================================== */
.keyv {
		width: 100%;
		/* メディアクエリ用 */
		/* メディアクエリ用 */
}

.keyv_title {
		margin: auto;
}

.keyv_container {
		overflow: hidden;
		position: relative;
		width: 100%;
}

@media screen and (min-width: 769px) {
		.keyv {
				padding-top: 4.55729vw;
				background: url("../images/kv_bg_pc.jpg") top center/cover no-repeat;
		}
		.keyv_title {
				margin-bottom: 2.92969vw;
				width: 60.09115vw;
		}
		.keyv_img01 {
				width: 35.09115vw;
				float: left;
				margin: 0 0 0 14.45313vw;
		}
		.keyv_img02 {
				width: 42.57812vw;
				float: right;
				margin: 3.25521vw 4.23177vw 0 0;
		}
}

@media screen and (max-width: 768px) {
		.keyv {
				padding-top: 6.11979vw;
				background: url("../images/kv_bg_sp.jpg") top center/cover no-repeat;
		}
		.keyv_title {
				padding-bottom: 8.46354vw;
				width: 76.82292vw;
		}
		.keyv_img01 {
				width: 86.84896vw;
				margin: 0 auto 0.39062vw;
		}
		.keyv_img02 {
				width: 86.84896vw;
				margin: 0 auto;
		}
}

/* ========================================
■ cta
======================================== */
.cta {
		color: #fff;
		text-align: center;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
		letter-spacing: 0.1em;
		/* メディアクエリ用 */
		/* メディアクエリ用 */
}

.cta_tel {
		margin: auto;
}

.cta_tel span[data-action=call] {
		cursor: pointer;
}

.cta_container {
		overflow: hidden;
		margin: auto;
		width: 100%;
}

.cta_mail {
		float: left;
}

.cta_line {
		float: right;
}

.cta_btn {
		display: block;
}

.cta .txt {
		position: relative;
}

.cta .txt:before {
		content: '\FF3c';
}

.cta .txt:after {
		content: '\FF0F';
}

@media screen and (min-width: 769px) {
		.cta {
				padding: 4.03646vw 0 3.90625vw;
				background: url("../images/cta_bg_pc.jpg") top center/cover no-repeat;
		}
		.cta_title {
				font-size: 2.47396vw;
		}
		.cta_tel {
				margin: 1.5625vw auto 1.17188vw;
				width: 42.1875vw;
		}
		.cta_container {
				width: 42.1875vw;
		}
		.cta_mail {
				width: 20.70312vw;
		}
		.cta_line {
				width: 20.70312vw;
		}
		.cta .txt {
				font-size: 1.4974vw;
		}
		.cta .txt:before {
				font-size: 1.30208vw;
		}
		.cta .txt:after {
				font-size: 1.30208vw;
		}
}

@media screen and (max-width: 768px) {
		.cta {
				padding: 5.46875vw 0 2.99479vw;
				background: url("../images/cta_bg_sp.jpg") top center/cover no-repeat;
		}
		.cta_title {
				line-height: 1.395;
				font-size: 5.59896vw;
		}
		.cta_tel {
				margin: 3.38542vw auto;
				width: 84.375vw;
		}
		.cta_tel .txt {
				font-size: 2.99479vw;
		}
		.cta_tel .txt:before {
				font-size: 2.60417vw;
		}
		.cta_tel .txt:after {
				font-size: 2.60417vw;
		}
		.cta_container {
				width: 84.375vw;
		}
		.cta_mail {
				width: 41.40625vw;
		}
		.cta_mail .txt {
				font-size: 2.73438vw;
		}
		.cta_mail .txt:before {
				font-size: 2.34375vw;
		}
		.cta_mail .txt:after {
				font-size: 2.34375vw;
		}
		.cta_line {
				width: 41.40625vw;
		}
		.cta_line .txt {
				font-size: 2.73438vw;
		}
		.cta_line .txt:before {
				font-size: 2.34375vw;
		}
		.cta_line .txt:after {
				font-size: 2.34375vw;
		}
}

/* ========================================
■ sec01
======================================== */
.sec01 {
		/* メディアクエリ用 */
		/* メディアクエリ用 */
}

.sec01_title {
		text-align: center;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
		letter-spacing: 0.025em;
		line-height: 1.722;
}

.sec01_insta {
		margin: auto;
}

.sec01_insta iframe {
		margin: auto !important;
}

.sec01_btn {
		display: block;
		margin: auto;
}

.sec01_contents02 {
		background: #fff0e8;
		letter-spacing: 0.05em;
		text-align: center;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.sec01_contents02 .txt02 {
		color: #f88625;
}

.sec01_ballon {
		margin: auto;
}

.sec01_ballon .chk {
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
		color: #f88625;
}

.sec01_manager {
		margin: auto;
		background: #f88625;
		color: #fff;
		overflow: hidden;
}

.sec01_manager .name {
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

@media screen and (min-width: 769px) {
		.sec01_contents01 {
				padding: 5.20833vw 0 4.23177vw;
		}
		.sec01_title {
				font-size: 2.34375vw;
				padding-bottom: 1.82292vw;
		}
		.sec01_btn {
				padding-top: 2.92969vw;
				width: 42.1875vw;
		}
		.sec01_contents02 {
				padding: 3.90625vw 0 3.58073vw;
				line-height: 1.5;
		}
		.sec01_contents02 .txt01 {
				font-size: 2.27865vw;
		}
		.sec01_contents02 .txt02 {
				font-size: 2.66927vw;
		}
		.sec01_contents03 {
				padding: 4.7526vw 0 4.23177vw;
				background: url("../images/sec01_bg_pc.jpg") top center/cover no-repeat;
		}
		.sec01_ballon {
				padding: 1.95313vw 1.30208vw 3.125vw 1.5625vw;
				margin-bottom: 0.91146vw;
				width: 61.13281vw;
				height: 16.01562vw;
				font-size: 1.6276vw;
				line-height: 1.68;
				letter-spacing: 0.05em;
				background: url("../images/sec01_balloon01_pc.png") top center/100% no-repeat;
		}
		.sec01_manager {
				padding: 1.10677vw 0.65104vw 1.4974vw 2.08333vw;
				width: 60.8724vw;
		}
		.sec01_manager .txt03 {
				padding-top: 1.4974vw;
				font-size: 1.43229vw;
		}
		.sec01_manager .name {
				font-size: 1.5625vw;
		}
		.sec01_img02 {
				width: 7.68229vw;
				margin-right: 2.08333vw;
				float: left;
		}
}

@media screen and (max-width: 768px) {
		.sec01_contents01 {
				padding: 7.03125vw 0 4.29688vw;
		}
		.sec01_title {
				font-size: 4.6875vw;
				padding-bottom: 4.55729vw;
				line-height: 1.45;
		}
		.sec01_title .big {
				font-size: 5.98958vw;
		}
		.sec01_btn {
				padding-top: 6.51042vw;
				width: 84.375vw;
		}
		.sec01_contents02 {
				padding: 4.94792vw 0 3.51563vw;
				line-height: 1.5;
		}
		.sec01_contents02 .txt01 {
				font-size: 4.55729vw;
		}
		.sec01_contents02 .txt02 {
				font-size: 5.33854vw;
		}
		.sec01_contents03 {
				padding: 6.51042vw 0;
				background: url("../images/sec01_bg_sp.jpg") top center/cover no-repeat;
		}
		.sec01_ballon {
				padding: 4.29688vw 2.60417vw 4.6875vw 3.51563vw;
				margin-bottom: 2.60417vw;
				width: 82.94271vw;
				height: 32.42188vw;
				font-size: 3.25521vw;
				line-height: 1.8;
				letter-spacing: 0.05em;
				background: url("../images/sec01_balloon01_sp.png") top center/100% no-repeat;
		}
		.sec01_manager {
				padding: 2.34375vw 3.90625vw;
				width: 82.94271vw;
		}
		.sec01_manager .txt03 {
				padding-top: 1.82292vw;
				font-size: 3.25521vw;
		}
		.sec01_manager .name {
				font-size: 3.125vw;
				text-align: right;
				display: block;
		}
		.sec01_img02 {
				width: 25vw;
				margin-right: 1.69271vw;
				float: left;
		}
}

/* ========================================
■ sec02
======================================== */
.sec02 {
		/* メディアクエリ用 */
		/* メディアクエリ用 */
}

.sec02_contents01 {
		position: relative;
		background: #fff0e8;
		letter-spacing: 0.05em;
		line-height: 1.5;
		text-align: center;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.sec02_contents01 .txt02 {
		color: #f88625;
}

.sec02_contents01:after {
		content: '';
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin: auto;
		display: block;
		width: 0;
}

@media screen and (min-width: 769px) {
		.sec02_contents01 {
				padding: 3.90625vw 0;
		}
		.sec02_contents01 .txt01 {
				font-size: 2.60417vw;
		}
		.sec02_contents01:after {
				border-top: 1.69271vw solid #fff0e8;
				border-right: 2.60417vw solid transparent;
				border-left: 2.60417vw solid transparent;
		}
		.sec02_contents02 {
				padding: 4.55729vw 0 5.20833vw;
				background: url("../images/sec02_bg_pc.jpg") top center/cover no-repeat;
		}
		.sec02_img01 {
				width: 62.5vw;
				margin: auto;
		}
		.sec02_list {
				overflow: hidden;
				width: 60.9375vw;
				margin: 1.43229vw auto 0;
		}
		.sec02_item {
				width: 11.97917vw;
				float: left;
				margin-right: 0.26042vw;
		}
		.sec02_item:last-of-type {
				margin-right: 0;
		}
}

@media screen and (max-width: 768px) {
		.sec02_contents01 {
				padding: 5.98958vw 0 3.38542vw;
		}
		.sec02_contents01 .txt01 {
				font-size: 5.20833vw;
		}
		.sec02_contents01:after {
				border-top: 3.38542vw solid #fff0e8;
				border-right: 3.51563vw solid transparent;
				border-left: 3.51563vw solid transparent;
		}
		.sec02_contents02 {
				padding-bottom: 6.51042vw;
				background: url("../images/sec02_bg_sp.jpg") top center/cover no-repeat;
		}
		.sec02_img01 {
				width: 93.75vw;
				margin: 3.90625vw auto -1.82292vw;
		}
		.sec02_list {
				overflow: hidden;
				width: 82.03125vw;
				margin: 2.60417vw auto 0;
		}
		.sec02_item {
				width: 34.63542vw;
		}
		.sec02_item:nth-of-type(1) {
				float: left;
				margin-bottom: -8.46354vw;
		}
		.sec02_item:nth-of-type(2) {
				float: right;
				margin-bottom: -8.46354vw;
		}
		.sec02_item:nth-of-type(3) {
				clear: both;
				margin: -7.8125vw auto;
		}
		.sec02_item:nth-of-type(4) {
				float: left;
		}
		.sec02_item:last-of-type {
				float: right;
		}
}

/* ========================================
■ sec03
======================================== */
.sec03 {
		/* メディアクエリ用 */
		/* メディアクエリ用 */
}

.sec03_voice_balloon {
		letter-spacing: 0.025em;
}

.sec03_voice_balloon .chk {
		color: #f88625;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

@media screen and (min-width: 769px) {
		.sec03 {
				padding: 5.53385vw 0 0;
				background: url("../images/sec03_bg_pc.jpg") top center/cover no-repeat;
		}
		.sec03_img01 {
				margin: auto;
				width: 36.06771vw;
		}
		.sec03_txt01 {
				font-size: 1.30208vw;
				text-align: center;
				padding: 0.65104vw 0;
		}
		.sec03_voice {
				overflow: hidden;
				clear: both;
		}
		.sec03_voice:nth-of-type(1) {
				padding-bottom: 5.72917vw;
		}
		.sec03_voice:nth-of-type(2) {
				padding-bottom: 3.90625vw;
		}
		.sec03_voice_img {
				width: 38.34635vw;
				margin-left: 11.06771vw;
				float: left;
				position: relative;
				z-index: 5;
		}
		.sec03_voice_balloon {
				float: right;
				font-size: 1.4974vw;
				line-height: 1.826;
				width: 37.5651vw;
				height: 21.875vw;
				margin: 1.17188vw 11.71875vw 0 -1.95313vw;
				padding: 1.30208vw 1.6276vw 1.6276vw 2.92969vw;
				letter-spacing: 0.025em;
				background: url("../images/sec03_balloon_pc.png") top center/100% no-repeat;
		}
}

@media screen and (max-width: 768px) {
		.sec03 {
				padding: 8.07292vw 0 1.30208vw;
				background: url("../images/sec03_bg_sp.jpg") top center/cover no-repeat;
		}
		.sec03_img01 {
				margin: auto;
				width: 72.13542vw;
		}
		.sec03_txt01 {
				font-size: 2.60417vw;
				text-align: center;
				padding: 1.30208vw 0 0.39062vw;
		}
		.sec03_voice {
				overflow: hidden;
				clear: both;
				padding-bottom: 7.8125vw;
		}
		.sec03_voice_img {
				width: 93.75vw;
				margin: auto;
		}
		.sec03_voice_balloon {
				font-size: 3.25521vw;
				line-height: 1.8;
				width: 89.84375vw;
				height: 46.35417vw;
				margin: auto;
				padding: 7.8125vw 3.90625vw 3.38542vw 3.90625vw;
				letter-spacing: 0.025em;
				background: url("../images/sec03_balloon_sp.png") top center/100% no-repeat;
		}
}

/* ========================================
■ sec04
======================================== */
.sec04 {
		/* メディアクエリ用 */
		/* メディアクエリ用 */
}

.sec04_contents01 {
		position: relative;
		background: #fff0e8;
		letter-spacing: 0.05em;
		line-height: 1.5;
		text-align: center;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.sec04_contents01 .txt02 {
		color: #f88625;
}

.sec04_txt03 {
		margin: auto;
		text-align: center;
}

.sec04_map {
		margin: auto;
}

.sec04_map iframe {
		width: 100%;
		height: 100%;
}

@media screen and (min-width: 769px) {
		.sec04_contents01 {
				padding: 4.03646vw 0 3.64583vw;
		}
		.sec04_contents01 .txt01 {
				font-size: 2.27865vw;
		}
		.sec04_contents01 .txt02 {
				font-size: 2.66927vw;
		}
		.sec04_txt03 {
				border-bottom: 0.0651vw solid #f88625;
				padding: 3.77604vw 0 0.19531vw;
				margin-bottom: 1.30208vw;
				width: 60.9375vw;
				font-size: 1.95313vw;
		}
		.sec04_map {
				width: 60.9375vw;
				height: 44.92188vw;
				margin-bottom: 5.20833vw;
		}
}

@media screen and (max-width: 768px) {
		.sec04_contents01 {
				padding: 4.94792vw 0 5.20833vw;
		}
		.sec04_contents01 .txt01 {
				font-size: 4.55729vw;
		}
		.sec04_contents01 .txt02 {
				font-size: 5.33854vw;
		}
		.sec04_txt03 {
				padding: 5.20833vw 0 0.65104vw;
				margin-bottom: 2.60417vw;
				font-size: 3.38542vw;
				border-bottom: 0.13021vw solid #f88625;
				width: 89.84375vw;
		}
		.sec04_map {
				width: 89.84375vw;
				height: 66.40625vw;
				margin-bottom: 6.90104vw;
		}
}

/* ========================================
■ sec05
======================================== */
.sec05 {
		/* メディアクエリ用 */
		/* メディアクエリ用 */
}

.sec05_contents01 {
		position: relative;
		background: #fff0e8;
		letter-spacing: 0.05em;
		line-height: 1.5;
		text-align: center;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.sec05_contents01:after {
		content: '';
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		margin: auto;
		display: block;
		width: 0;
}

.sec05 .chk {
		color: #f88625;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.sec05_txt02 {
		text-align: center;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
		position: relative;
}

.sec05_txt02:before {
		content: '';
		margin: auto;
		display: block;
		background: url("../images/sec05_arrow.png") top center/100% no-repeat;
}

.sec05_txt03 {
		text-align: center;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

@media screen and (min-width: 769px) {
		.sec05_contents01 {
				padding: 3.90625vw 0;
		}
		.sec05_contents01 .txt01 {
				font-size: 2.60417vw;
		}
		.sec05_contents01:after {
				border-top: 1.69271vw solid #fff0e8;
				border-right: 2.60417vw solid transparent;
				border-left: 2.60417vw solid transparent;
		}
		.sec05_contents02 {
				background: url("../images/sec05_bg_pc.jpg") top center/cover no-repeat;
				padding: 4.42708vw 0 3.45052vw;
		}
		.sec05_list {
				width: 61.97917vw;
				margin: auto;
		}
		.sec05_item {
				font-size: 1.6276vw;
				line-height: 1.6;
				letter-spacing: 0.06em;
				width: 61.97917vw;
				height: 13.15104vw;
		}
		.sec05_item:nth-of-type(2n+1) {
				padding: 3.51563vw 1.95313vw 0 11.32812vw;
				margin-bottom: 2.47396vw;
		}
		.sec05_item:nth-of-type(2n) {
				padding: 3.71094vw 9.76562vw 0 1.95313vw;
				margin-bottom: 2.73438vw;
		}
		.sec05_item:nth-of-type(1) {
				background: url("../images/sec05_question01_pc.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(2) {
				background: url("../images/sec05_answer01_pc.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(3) {
				background: url("../images/sec05_question02_pc.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(4) {
				background: url("../images/sec05_answer02_pc.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(5) {
				background: url("../images/sec05_question03_pc.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(6) {
				background: url("../images/sec05_answer03_pc.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(7) {
				background: url("../images/sec05_question04_pc.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(8) {
				background: url("../images/sec05_answer04_pc.png") top center/100% no-repeat;
		}
		.sec05_txt02 {
				font-size: 2.27865vw;
		}
		.sec05_txt02:before {
				width: 8.85417vw;
				height: 2.79948vw;
				margin-bottom: 0.91146vw;
		}
		.sec05_txt03 {
				font-size: 2.73438vw;
				margin-top: -0.78125vw;
		}
}

@media screen and (max-width: 768px) {
		.sec05_contents01 {
				padding: 5.46875vw 0 3.90625vw;
		}
		.sec05_contents01 .txt01 {
				font-size: 5.20833vw;
		}
		.sec05_contents01:after {
				border-top: 3.38542vw solid #fff0e8;
				border-right: 3.51563vw solid transparent;
				border-left: 3.51563vw solid transparent;
		}
		.sec05_contents02 {
				background: url("../images/sec05_bg_sp.jpg") top center/cover no-repeat;
				padding: 2.21354vw 0 6.51042vw;
		}
		.sec05_list {
				width: 91.66667vw;
				margin: auto;
		}
		.sec05_item {
				font-size: 3.25521vw;
				line-height: 1.6;
				letter-spacing: 0.1em;
				width: 91.66667vw;
				height: 31.64063vw;
		}
		.sec05_item:nth-of-type(2n+1) {
				padding: 6.77083vw 2.60417vw 0 23.4375vw;
				margin-bottom: 1.5625vw;
		}
		.sec05_item:nth-of-type(2n) {
				padding: 7.29167vw 20.83333vw 0 5.20833vw;
				margin-bottom: 6.25vw;
		}
		.sec05_item:nth-of-type(1) {
				background: url("../images/sec05_question01_sp.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(2) {
				background: url("../images/sec05_answer01_sp.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(3) {
				background: url("../images/sec05_question02_sp.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(4) {
				background: url("../images/sec05_answer02_sp.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(5) {
				background: url("../images/sec05_question03_sp.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(6) {
				background: url("../images/sec05_answer03_sp.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(7) {
				background: url("../images/sec05_question04_sp.png") top center/100% no-repeat;
		}
		.sec05_item:nth-of-type(8) {
				background: url("../images/sec05_answer04_sp.png") top center/100% no-repeat;
		}
		.sec05_txt02 {
				font-size: 4.55729vw;
				margin-top: -2.86458vw;
		}
		.sec05_txt02:before {
				width: 17.70833vw;
				height: 5.59896vw;
				margin-bottom: 1.82292vw;
		}
		.sec05_txt03 {
				font-size: 5.46875vw;
				margin-top: -1.30208vw;
		}
}

/* ========================================
■ sec06
======================================== */
.sec06 {
		/* メディアクエリ用 */
		/* メディアクエリ用 */
}

.sec06_contents01 {
		background: #fff0e8;
		letter-spacing: 0.05em;
		line-height: 1.5;
		text-align: center;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.sec06_contents01 .txt02 {
		color: #f88625;
}

.sec06_contents02 {
		overflow: hidden;
}

@media screen and (min-width: 769px) {
		.sec06_contents01 {
				padding: 3.90625vw 0 2.60417vw;
		}
		.sec06_contents01 .txt01 {
				font-size: 2.27865vw;
		}
		.sec06_contents01 .txt02 {
				font-size: 2.66927vw;
		}
		.sec06_contents02 {
				padding: 1.95313vw 0 3.25521vw;
				background: url("../images/sec06_bg_pc.jpg") top center/cover no-repeat;
		}
		.sec06_point {
				width: 48.17708vw;
		}
		.sec06_point:nth-of-type(1) {
				float: left;
				margin: 1.95313vw 0 0 11.06771vw;
		}
		.sec06_point:nth-of-type(2) {
				float: right;
				margin: 1.30208vw 11.06771vw 0 0;
		}
		.sec06_point:nth-of-type(3) {
				float: left;
				margin: -1.17188vw 0 0 11.06771vw;
		}
}

@media screen and (max-width: 768px) {
		.sec06_contents01 {
				padding: 5.20833vw 0;
		}
		.sec06_contents01 .txt01 {
				font-size: 4.55729vw;
		}
		.sec06_contents01 .txt02 {
				font-size: 5.33854vw;
		}
		.sec06_contents02 {
				padding: 1.5625vw 0 5.20833vw;
				background: url("../images/sec06_bg_sp.jpg") top center/cover no-repeat;
		}
		.sec06_point {
				width: 96.35417vw;
				margin: 1.04167vw auto;
		}
}

/* ========================================
■ sec07
======================================== */
.sec07 {
		/* メディアクエリ用 */
		/* メディアクエリ用 */
}

.sec07_contents01 {
		background: #fff0e8;
		letter-spacing: 0.05em;
		line-height: 1.5;
		text-align: center;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.sec07_contents01 .txt02 {
		color: #f88625;
}

.sec07_contents02 {
		overflow: hidden;
}

.sec07_list {
		overflow: hidden;
}

.sec07 .chk {
		color: #f88625;
		font-weight: 600;
		font-family: "游ゴシック体", YuGothic, "游ゴシック Bold", "Yu Gothic Bold", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

@media screen and (min-width: 769px) {
		.sec07_contents01 {
				padding: 3.90625vw 0 3.51563vw;
		}
		.sec07_contents01 .txt01 {
				font-size: 2.27865vw;
		}
		.sec07_contents01 .txt02 {
				font-size: 2.66927vw;
		}
		.sec07_contents02 {
				padding: 3.58073vw 0 4.55729vw;
				background: url("../images/sec07_bg_pc.jpg") top center/cover no-repeat;
		}
		.sec07_list {
				width: 60.9375vw;
				margin: auto;
		}
		.sec07_item {
				width: 41.86198vw;
				height: 9.76562vw;
				padding: 2.86458vw 0 0;
				margin: auto;
				font-size: 1.5625vw;
				text-align: center;
		}
		.sec07_item:nth-of-type(2n+1) {
				margin-left: 0;
				background: url("../images/sec07_balloon01_pc.png") top center/100% no-repeat;
		}
		.sec07_item:nth-of-type(2n) {
				margin-right: 0;
				background: url("../images/sec07_balloon02_pc.png") top center/100% no-repeat;
		}
}

@media screen and (max-width: 768px) {
		.sec07_contents01 {
				padding: 5.59896vw 0 7.55208vw;
		}
		.sec07_contents01 .txt01 {
				font-size: 4.55729vw;
		}
		.sec07_contents01 .txt02 {
				font-size: 5.33854vw;
		}
		.sec07_contents02 {
				padding: 3.90625vw 0 5.20833vw;
				background: url("../images/sec07_bg_sp.jpg") top center/cover no-repeat;
		}
		.sec07_list {
				width: 74.21875vw;
				margin: auto;
		}
		.sec07_item {
				width: 61.19792vw;
				height: 19.53125vw;
				padding: 3.64583vw 0 0;
				margin: auto;
				font-size: 3.25521vw;
				text-align: center;
				line-height: 1.4;
		}
		.sec07_item:nth-of-type(2n+1) {
				margin-left: 0;
				background: url("../images/sec07_balloon01_sp.png") top center/100% no-repeat;
		}
		.sec07_item:nth-of-type(2n) {
				margin-right: 0;
				background: url("../images/sec07_balloon02_sp.png") top center/100% no-repeat;
		}
}

/* ========================================
■ footer
======================================== */
.footer {
		/* メディアクエリ用 */
		/* メディアクエリ用 */
}

.footer_container {
		width: 100%;
		background: #f88625;
		text-align: center;
}

.footer_logo {
		margin: auto;
}

.footer_link {
		color: #fff;
		text-decoration: underline;
		letter-spacing: 0.1em;
		line-height: 2;
}

@media screen and (min-width: 769px) {
		.footer_container {
				padding: 2.60417vw 0;
		}
		.footer_logo {
				width: 14.64844vw;
		}
		.footer_item {
				display: inline-block;
				margin: 0 0.5em;
		}
		.footer_link {
				font-size: 1.17188vw;
		}
}

@media screen and (max-width: 768px) {
		.footer_container {
				padding: 5.20833vw 0;
		}
		.footer_logo {
				width: 29.29688vw;
		}
		.footer_list {
				margin: auto;
		}
		.footer_link {
				font-size: 2.34375vw;
		}
}
