@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Italianno&family=Noto+Sans+JP:wght@100..900&display=swap');

html {
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
}
html, body {
	overflow-x: hidden;
}
.txt_center {
	text-align: center;
}
.txt_right {
	text-align: right;
}
.txt_left {
	text-align: left;
}
.txt_blue {
	color: #00B9F2;
}
.txt_link {
	color: #008cd2;
	text-decoration: underline;
}
.txt_link:hover {
	text-decoration: none;
}
b {
	font-weight: bold;
}
.txt_red {
	color: #E5002D;
}
figure,div {
	line-height: 0;
}
#topback {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 60px;
    height: 60px;
    background: rgba(51,51,51, 0.8);
    z-index: 2;
    cursor: pointer;
    border: 1px solid #fff;
	border-radius: 50%;
}
#topback::after {
    position: absolute;
    content: "";
    top: 26px;
    right: 0;
	left: 0;
	margin: auto;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.wrap {
	max-width: 1200px;
	margin: auto;
	width: 100%;
}
.wrap01 {
	max-width: 1000px;
	margin: auto;
	width: calc(100% - 80px);
}
input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid #aaa;
  border-radius: 2px;
  vertical-align: middle;
  position: relative;
}
input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 0;
  left: 4px;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
input[type="checkbox"]:checked {
	border-color: #22b573;
	background: #22b573;
}
/* ラジオボタン本体 */
input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  border: 1px solid #ccc;
  border-radius: 50%; /* 丸くする */
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s;
}
/* 選択時の外枠の色 */
input[type="radio"]:checked {
  border-color: #22b573;
}
/* 選択時の内側の丸 */
input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background-color: #22b573;
  border-radius: 50%;
}

/* フォーカス時 */
input[type="radio"]:focus-visible {
  outline: 1px solid #22b573;
  outline-offset: 1px;
}

/* 無効時 */
input[type="radio"]:disabled {
  border-color: #aaa;
  cursor: not-allowed;
}

input[type="radio"]:disabled:checked::after {
  background-color: #aaa;
}

input[type="text"],
input[type="button"],
input[type="submit"] {
  appearance: none; /* WebKit系 */
  -webkit-appearance: none; /* Safari/Chrome */
  -moz-appearance: none; /* Firefox */
}
dl {
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, dl dt, dl dd, td, th, ul li, ol li, figcaption, p {
	color: #333;
}
a {
	text-decoration: none;
}
p {
	font-size: 18px;
	font-weight: 400;
	line-height: 2;
}
th, td, dd {
	font-size: 18px;
}
p.f-14 {
	font-size: 14px;
	line-height: 1.71;
}
p.f-20 {
	font-size: 2rem;
	line-height: 1.5;
}
p.f-24 {
	font-size: 2.4rem;
	line-height: 1.5;
}
.f-w500 {
	font-weight: 500;
}
img {
	max-width: 100%;
}

.container {
	opacity: 0;
	pointer-events: none;
	position: relative;
	z-index: 2;
}
body.appear .container {
	animation-name: PageAnime-content;
	animation-duration: 0.55s;
	animation-delay: 0.55s;
	animation-fill-mode: forwards;
	opacity: 0;
	pointer-events: auto;
}
.animation .container {
	opacity: 1;
	pointer-events: auto;
}
.gradation .animation-bg {
	--color01: 255, 255, 255;
	background: linear-gradient(180deg, rgba(var(--color01), 1) 0%, rgba(var(--color01), 0) 100%);
	background-size: 200% 200%;
	content: "";
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	animation-name: PageAnime-gradation;
	animation-duration: 1s;
	animation-delay: 1s;
	animation-timing-function: ease-in-out;
	animation-fill-mode: forwards;
	pointer-events: none;
}

@keyframes PageAnime-gradation {
	0% {
		background-position: 100% 0;
	}

	100% {
		background-position: 100% 100%;
	}
}

@keyframes PageAnime-content {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#js-mouse {
    pointer-events: none;
    position: fixed;
    top: -20px;
    left: -20px;
    width: 20px;
    height: 20px;
    background-color: rgba(230, 230, 230, 0.3);
    border-radius: 50%;
    transform: translate(0, 0);
    transition: transform 0.5s ease-out, width 0.5s ease-out, height 0.5s ease-out; /* 変更点：widthとheightにもtransitionを追加 */
    z-index: 9999;
    opacity: 0;
}
#js-mouse.js-hover {
    width: 80px;
    height: 80px;
    background-color: rgba(230, 230, 230, 0.3);
}

.fadeIn {
	opacity: 0;
}
.fadeIn.add {
    animation-name: fadeIn;
    animation-duration: 1s;
	animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    transform: translateY(30px);
    opacity: 0;
}
.contact main {
	background-image: repeating-linear-gradient(-45deg, #d2ffde, #d2ffde 1px, #e6fff2 1px, #e6fff2 21px);
}
.wrap_header {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.wrap_header .btn_contact {
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1.5;
	color: #fff;
	background: #ff1c24;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 260px;
	height: 60px;
	padding-left: 20px;
	border-radius: 30px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.wrap_header .btn_contact span {
	width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    margin-left: 25px;
}
.contact .sec_form {
	padding: 0 40px 100px;
}
.contact .wrap_1680 {
	max-width: 1680px;
	margin: auto;
	padding: 100px 40px;
	background: #fff;
	border-radius: 80px;
}
.contact .contents_title {
	min-height: 227px;
	display: flex;
}
.contact .contents_title .staff01 {
	display: flex;
	align-items: flex-end;
	height: 100%;
	margin-right: 44px;
}
.contact .contents_title .staff01 span {
	background: url(../contact/images/staff01.svg) no-repeat;
	width: 97px;
	height: 137px;
}
.contact .contents_title .staff02 {
	display: flex;
	align-items: flex-end;
	height: 100%;
	margin-left: 44px;
}
.contact .contents_title .staff02 span {
	background: url(../contact/images/staff02.svg) no-repeat;
	display: flex;
	width: 106px;
	height: 133px;
	align-items: flex-end;
}
.contact .contents_title .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: auto;
	margin: 0 auto;
}
.contact .contents_title .wrap .txt_title {
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.contact .contents_title p {
	font-family: "Italianno", cursive;
	font-weight: 400;
	margin-bottom: 10px;
	font-size: 3.2rem;
	line-height: 1;
	color: #22b573;
}
.contact .contents_title h1 {
	font-size: 4.4rem;
	font-weight: bold;
	line-height: 1.2;
	color: #22b573;
}
.contact .contents_title h1 .txt_sub {
	font-size: 2.4rem;
	font-weight: bold;
	line-height: 1.5;
	letter-spacing: 0.1em;
	display: block;
	margin-top: 20px;
}
.contact table.form {
	width: 100%;
	margin-bottom: 50px;
}
#input input[type="text"],
#input input[type="email"] {
	border-radius: 10px;
	border: 1px solid #ccc;
	padding: 15px 20px;
	width: 100%;
	max-width: 600px;
	font-size: 18px;
}
#input textarea {
	font-size: 18px;
	border-radius: 10px;
	border: 1px solid #ccc;
	padding: 15px 20px;
	width: 100%;
	display: block;
	height: 200px;
}
#input input#zip {
	max-width: 200px;
}
#input input#people {
	max-width: 160px;
}
#input .wrap_people {
	display: flex;
	align-items: center;
}
#input .wrap_people p {
	margin-left: 20px;
}
#input #button_zip {
	background: #22b573;
	padding: 20px 32px;
	border-radius: 32px;
	font-weight: bold;
	color: #fff;
	margin-left: 20px;
	cursor: pointer;
	transition: .5s ease-in-out;
}
#input #button_zip:hover {
	opacity: 0.7;
}
#input input[type="radio"] {
	margin-right: 8px;
	width: 20px;
	height: 20px;
	position: relative;
	top: 3px;
}
#input select {
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 12px 15px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: none;
	min-width: 360px;
	position: relative;
	z-index: 2;
	color: #333;
}
#input .selectbox {
	position: relative;
  display: inline-block;
}
#input .selectbox::after {
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-top: solid 2px #333;
	border-right: solid 2px #333;
	position: absolute;
	right: 20px;
	top: 20px;
	margin: auto;
	transform: rotate(135deg);
}
#input input[type="checkbox"] {
	margin-right: 8px;
}
#input .policy_txt {
	font-weight: 400;
	margin-bottom: 20px;
}
#input .policy_txt a {
	color: #333;
	text-decoration: underline;
}
#input .policy_txt a:hover {
	text-decoration: none;
}
#input .policy_txt a:first-of-type {
	margin-right: 20px;
}
#input input#address,
#input input#means,
#input input#town,
#input input#day {
	max-width: 100%;
}
#input input::placeholder {
	color: #ddd;
	font-weight: 400;
	font-size: 18px;
}
.contact .list_step {
  display: flex;
  justify-content: center;
  gap: 100px;
}
.contact .list_step li {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .list_step .step-label {
  position: relative;
  z-index: 2;
  font-size: 24px;
  font-weight: 500;
  color: #22b573;
}
.contact .list_step li::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #22b573;
  background: #fff;
  z-index: 1;
}
.contact .list_step li.current::before {
	background: #22b573;
}
.contact .list_step li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -50px;
  width: 20px;
  height: 20px;
  margin: auto;
  border-top: 2px solid #22b573;
  border-right: 2px solid #22b573;
  transform: rotate(45deg);
  box-sizing: border-box;
}
.contact .list_step li.current .step-label { color: #fff; }
.contact .explanation {
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	margin: 70px 0;
}
.contact tr {
	border-bottom: 1px solid #e6e6e6;
}
.contact tr:first-child {
	border-top: 1px solid #e6e6e6;
}
.contact th {
	width: 32.5%;
	background: #fafafa;
	padding: 20px;
	text-align: left;
	min-width: 314px;
}
.contact th label {
	font-size: 18px;
	font-weight: 500;
}
.contact th label small {
	font-weight: 500;
	font-size: 15px;
}
.contact th span {
	font-size: 13px;
	color: #fff;
	background: #ed1c24;
	padding: 3px 14px 4px;
	border-radius: 4px;
	line-height: 1.2;
	margin-right: 20px;
	position: relative;
	bottom: 2px;
}
.contact th span.gray {
	background: #aaa;
}
.contact td {
	width: calc(100% - 32.5%);
	padding: 20px;
}
.contact .wrap_radio {
	display: flex;
}
.contact td p,
.contact td label {
	font-size: 18px;
	font-weight: 500;
}
.contact td .wrap_radio label {
	position: relative;
	top: -5px;
}
.contact td.item_checkbox .wrap_checkbox {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	border-bottom: 1px dotted #ccc;
	padding-bottom: 26px;
	margin-bottom: 24px;
}.contact td.item_checkbox .wrap_checkbox:last-of-type {
	padding-bottom: 0;
	margin-bottom: 5px;
	border-bottom: none;
}
.contact td p.municipality_title {
	font-weight: bold;
	margin-bottom: 5px;
}
.contact td.item_checkbox .wrap_checkbox label {
	width: calc((100% - 30px) / 6);
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	font-size: 16px;
	margin-bottom: 5px;
}
.contact td.item_checkbox .wrap_checkbox label input[type="checkbox"] {
	margin-top: 6px;
}
.contact .contents_policy {
	width: 100%;
	max-width: 570px;
	margin: auto;
	border: 2px solid #602176;
	padding: 30px 40px 35px;
}
.contact .contents_policy h2 {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
	color: #602176;
}
.contact .contents_policy .wrap_tel {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	margin-top: 10px;
}
.contact .contents_policy dt {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	color: #602176;
}
.contact .contents_policy dd {
	margin-top: 6px;
	font-size: 36px;
	font-weight: bold;
	line-height: 1.0;
	font-family: "Oswald", sans-serif;
	color: #602176;
	white-space: nowrap;
}

#input .button-form {
	height: 80px;
	display: flex;
	align-items: center;
	justify-items: center;
	border-radius: 40px;
	overflow: hidden;
  transform: translateZ(0);
	-webkit-mask-image: -webkit-radial-gradient(#fff, #000);
	border: 1px solid #333;
}
#input .btn-submit {
	width: 100%;
	height: 100%;
	font-size: 24px;
	font-weight: bold;
	color: #333;
	cursor: pointer;
	background: #fff000;
	transition: .5s ease-in-out;
	outline: none;
  -webkit-appearance: none;
  appearance: none;
	-webkit-tap-highlight-color: transparent;
}
#input .button-shadow {
		margin: 80px auto 20px;
		max-width: 360px;
    filter: drop-shadow(2px 2px 0 #333);
		transition: .3s ease-in-out;
		position: relative;
		top: 0;
		left: 0;
}
#input .button-shadow:hover {
	opacity: 0.7;
	top: 2px;
	left: 2px;
	filter: drop-shadow(0 0 0 #333);
}
#input .btn-submit:focus,
#input .btn-submit:active {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
#confirm .wrap_btn-form {
	display: flex;
	justify-content: center;
	margin-top: 80px;
}
#confirm .button-form input,
#confirm .btn-formback button {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
	cursor: pointer;
}
#confirm .btn-formback button {
	background: #b3b3b3;
	color: #fff;
	border: none;
	transition: .5s ease-in-out;
}
#confirm .button-form input {
	background: #fff000;
	transition: .5s ease-in-out;
	color: #333;
}
#confirm .button-form:hover,
#confirm .btn-formback:hover {
	top: 4px;
	left: 4px;
	filter: drop-shadow(0 0 0 #333);
}
#confirm .button-form:hover input {
	background: #fff064;
	color: #666;
}
#confirm .btn-formback:hover .btn-back {
	background: #ccc;
}
#confirm .button-form,
#confirm .btn-formback {
	width: calc((100% - 60px) / 2);
	max-width: 360px;
	min-height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 40px;
	overflow: hidden;
	transform: translateZ(0);
	filter: drop-shadow(2px 2px 0 #333);
	border: 1px solid #333;
	position: relative;
	top: 0;
	left: 0;
	transition: .3s ease-in-out;
}
#confirm .btn-formback {
	margin-right: 60px;
}
.dotted {
	border: 1px dashed #ccc;
	width: 100%;
	margin: 30px 0;
	max-width: 700px;
}
#thanks h2.txt_thanks {
	font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.4;
	text-align: center;
	margin-top: 70px;
}
.contact#thanks .explanation {
	margin-top: 10px;
	margin-bottom: 40px;
}
#thanks .btn_sale_lp {
	width: 100%;
	max-width: 265px;
	min-height: 60px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	color: #602176;
	border: 1px solid #602176;
	border-radius: 30px;
	transition: .5s ease-in-out;
}
#thanks .btn_sale_lp:hover {
	color: #fff;
	background: #602176;
}
.footer-menu {
	text-align: center;
	padding: 20px;
	background: #fff;
}
.footer-menu small {
	font-size: 13px;
	font-weight: 400;
	color: #333;
}
.wrap_header .btn_contact::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image:  linear-gradient(90deg, rgba(255, 120, 0, 1), rgba(255, 80, 0, 1));
	transform-origin: right top;
	transform: scaleX(0);
	transition: transform .3s ease;
	z-index: -1;
} 
.wrap_header .btn_contact:hover::before {
	transform-origin: left top;
	transform: scaleX(1);
}
@keyframes shine {
  33% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
footer .logo {
	padding: 20px;
}
#allergy_txt.is-disabled {
  background: #f7f7f7;
  color: #777;
}
.breakable{
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  word-wrap: break-word;
}
#thanks .btn_back_contact {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5;
	max-width: 345px;
	width: 100%;
	margin: 50px auto 0;
	padding: 10px 15px;
	border-radius: 30px;
	min-height: 60px;
	color: #22b573;
	border: 1px solid #22b573;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: .5s ease-in-out;
}
#thanks .btn_back_contact:hover {
	opacity: 0.7;
}
#input input#policy {
	position: relative;
	bottom: 2px;
}


.mb0 {
	margin-bottom: 0 !important;
}
.mt0 {
	margin-top: 0 !important;
}
.mt5 {
	margin-top: 5px !important;
}
.mt10 {
	margin-top: 10px !important;
}
.mt12 {
	margin-top: 12px !important;
}
.mt15 {
	margin-top: 15px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt25 {
	margin-top: 25px !important;
}
.mt30 {
	margin-top: 30px !important;
}
.mt35 {
	margin-top: 35px !important;
}
.mt40 {
	margin-top: 40px !important;
}
.mt45 {
	margin-top: 45px !important;
}
.mt50 {
	margin-top: 50px !important;
}
.mt55 {
	margin-top: 55px !important;
}
.mt60 {
	margin-top: 60px !important;
}
.mt65 {
	margin-top: 65px !important;
}
.mt70 {
	margin-top: 70px !important;
}
.mt75 {
	margin-top: 75px !important;
}
.mt80 {
	margin-top: 80px !important;
}
.mt85 {
	margin-top: 85px !important;
}
.mt90 {
	margin-top: 90px !important;
}
.mt95 {
	margin-top: 95px !important;
}
.mt100 {
	margin-top: 100px !important;
}
.mt105 {
	margin-top: 105px !important;
}
.mt110 {
	margin-top: 110px !important;
}
.mt115 {
	margin-top: 115px !important;
}
.mt120 {
	margin-top: 120px !important;
}
.mt125 {
	margin-top: 125px !important;
}
.mt130 {
	margin-top: 130px !important;
}
.mt135 {
	margin-top: 135px !important;
}
.mt140 {
	margin-top: 140px !important;
}
.mt145 {
	margin-top: 145px !important;
}
.mt150 {
	margin-top: 150px !important;
}
.mt155 {
	margin-top: 155px !important;
}
.mt160 {
	margin-top: 160px !important;
}
.mt180 {
	margin-top: 180px !important;
}
.mt200 {
	margin-top: 200px !important;
}
.mr3 {
	margin-right: 3px !important;
}
.mr10 {
	margin-right: 10px !important;
}
.mr20 {
	margin-right: 20px !important;
}
.mr30 {
	margin-right: 30px !important;
}
.mr40 {
	margin-right: 40px !important;
}
.mr55 {
	margin-right: 55px !important;
}
.mr60 {
	margin-right: 60px !important;
}
.mr70 {
	margin-right: 70px !important;
}
.mr75 {
	margin-right: 75px !important;
}
.mr80 {
	margin-right: 80px !important;
}
.mr90 {
	margin-right: 90px !important;
}
.mr110 {
	margin-right: 110px !important;
}
.mb3 {
	margin-bottom: 3px !important;
}
.mb5 {
	margin-bottom: 5px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb25 {
	margin-bottom: 25px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.mb40 {
	margin-bottom: 40px !important;
}
.mb50 {
	margin-bottom: 50px !important;
}
.mb60 {
	margin-bottom: 60px !important;
}
.mb70 {
	margin-bottom: 70px !important;
}
.mb80 {
	margin-bottom: 80px !important;
}
.mb90 {
	margin-bottom: 90px !important;
}
.mb100 {
	margin-bottom: 100px !important;
}
.mb120 {
	margin-bottom: 120px !important;
}
.mb130 {
	margin-bottom: 130px !important;
}
.mb150 {
	margin-bottom: 150px !important;
}
.ml10 {
	margin-left: 10px !important;
}
.ml20 {
	margin-left: 20px !important;
}
.ml100 {
	margin-left: 100px !important;
}
.ml40 {
	margin-left: 40px !important;
}
.pt0 {
	padding-top: 0 !important;
}
.pt40 {
	padding-top: 40px !important;
}
.pt50 {
	padding-top: 50px !important;
}
.pt55 {
	padding-top: 55px !important;
}
.pt60 {
	padding-top: 60px !important;
}
.pt70 {
	padding-top: 70px !important;
}
.pt75 {
	padding-top: 75px !important;
}
.pt80 {
	padding-top: 80px !important;
}
.pt85 {
	padding-top: 85px !important;
}
.pt90 {
	padding-top: 90px !important;
}
.pt95 {
	padding-top: 95px !important;
}
.pt100 {
	padding-top: 100px !important;
}
.pt110 {
	padding-top: 110px !important;
}
.pt120 {
	padding-top: 120px !important;
}
.pt130 {
	padding-top: 130px !important;
}
.pt135 {
	padding-top: 135px !important;
}
.pt140 {
	padding-top: 140px !important;
}
.pt145 {
	padding-top: 145px !important;
}
.pt150 {
	padding-top: 150px !important;
}
.pt160 {
	padding-top: 160px !important;
}
.pt170 {
	padding-top: 170px !important;
}
.pt185 {
	padding-top: 180px !important;
}
.pr55 {
	padding-right: 55px !important;
}
.pr80 {
	padding-right: 80px !important;
}
.pr150 {
	padding-right: 150px !important;
}
.pb30 {
	padding-bottom: 30px !important;
}
.pb40 {
	padding-bottom: 40px !important;
}
.pb50 {
	padding-bottom: 50px !important;
}
.pb55 {
	padding-bottom: 55px !important;
}
.pb60 {
	padding-bottom: 60px !important;
}
.pb70 {
	padding-bottom: 70px !important;
}
.pb75 {
	padding-bottom: 75px !important;
}
.pb80 {
	padding-bottom: 80px !important;
}
.pb85 {
	padding-bottom: 85px !important;
}
.pb100 {
	padding-bottom: 100px !important;
}
.pb110 {
	padding-bottom: 110px !important;
}
.pb120 {
	padding-bottom: 120px !important;
}
.pb125 {
	padding-bottom: 125px !important;
}
.pb130 {
	padding-bottom: 130px !important;
}
.pb140 {
	padding-bottom: 140px !important;
}
.pb150 {
	padding-bottom: 150px !important;
}
.pb160 {
	padding-bottom: 160px !important;
}
.pb200 {
	padding-bottom: 200px !important;
}
.pb220 {
	padding-bottom: 220px !important;
}
.pl45 {
	padding-left: 45px !important;
}
.pl80 {
	padding-left: 80px !important;
}
.pl150 {
	padding-left: 150px !important;
}


@media screen and (min-width: 1367px) {
	.minw1367none {
		display: none;
	}
}
@media screen and (min-width: 1366px) {
	.minw1366none {
		display: none;
	}
}
@media screen and (max-width: 1366px) {
	.max1366none {
		display: none;
	}
	html {
		font-size: 55%;
	}
	p, th, td, dd {
		font-size: 16px;
	}
	#lp .sec04 .emphasis {
		background-position: 0 50px;
	}
}
@media screen and (max-width: 1366px) and (min-width: 769px) {
	.maxw1366minw769none {
		display: none;
	}
}
@media screen and (max-width: 1365px) {
	.maxw1365none {
		display: none;
	}
}

@media screen and (min-width: 1200px) {
	.minw1200none {
		display: none;
	}
}

@media screen and (max-width: 1199px) {
	html,
	body {
		overflow-x: hidden;
	}
	.maxw1199none {
		display: none;
	}
	#lp .sec02 .contents_point .flex01 {
		margin-left: 40px;
	}
}
@media screen and (max-width: 1599px) and (min-width: 1025px) {
	.maxw1599min1025none {
		display: none;
	}
}
@media screen and (min-width: 1025px) {
	.pcnone,
	.minw1025none {
		display: none;
	}
}
@media screen and (max-width: 1024px) {
	html {
		font-size: 40%;
	}
	#js-mouse {
		display: none;
	}
	.contact .contents_title {
		background: url(../images/main_bg_md.jpg) no-repeat;
		background-size: cover;
		background-position: center;
	}
	.contact th,
	.contact td {
		display: block;
		width: 100%;
		min-width: auto;
	}
	.wrap_header .btn_contact {
		font-size: 18px;
	}
	.contact .contents_policy h2 {
		text-indent: -24px;
		padding-left: 24px;
	}
	.contact .contents_policy .wrap_tel {
		gap: 26px;
	}
	.mt15 {
		margin-top: 10px !important;
	}
	.mt20 {
		margin-top: 15px !important;
	}
	.mt25 {
		margin-top: 18px !important;
	}
	.mt30 {
		margin-top: 20px !important;
	}
	.mt35 {
		margin-top: 25px !important;
	}
	.mt40 {
		margin-top: 30px !important;
	}
	.mt45 {
		margin-top: 30px !important;
	}
	.mt50 {
		margin-top: 35px !important;
	}
	.mt55 {
		margin-top: 35px !important;
	}
	.mt60 {
		margin-top: 40px !important;
	}
	.mt65 {
		margin-top: 40px !important;
	}
	.mt70 {
		margin-top: 40px !important;
	}
	.mt75 {
		margin-top: 50px !important;
	}
	.mt80 {
		margin-top: 55px !important;
	}
	.mt95 {
		margin-top: 65px !important;
	}
	.mt100 {
		margin-top: 70px !important;
	}
	.mt110 {
		margin-top: 75px !important;
	}
	.mt115 {
		margin-top: 80px !important;
	}
	.mt120 {
		margin-top: 80px !important;
	}
	.mt125 {
		margin-top: 80px !important;
	}
	.mt130 {
		margin-top: 80px !important;
	}
	.mt135 {
		margin-top: 80px !important;
	}
	.mt140 {
		margin-top: 85px !important;
	}
	.mt145 {
		margin-top: 90px !important;
	}
	.mt150 {
		margin-top: 100px !important;
	}
	.mt155 {
		margin-top: 100px !important;
	}
	.mt160 {
		margin-top: 100px !important;
	}
	.mt180 {
		margin-top: 100px !important;
	}
	.mt200 {
		margin-top: 100px !important;
	}
	.mt85 {
		margin-top: 60px !important;
	}
	.mr55 {
		margin-right: 35px !important;
	}
	.mr70 {
		margin-right: 45px !important;
	}
	.mr90 {
		margin-right: 60px !important;
	}
	.mr110 {
		margin-right: 75px !important;
	}
	.mb40 {
		margin-bottom: 30px !important;
	}
	.mb60 {
		margin-bottom: 40px !important;
	}
	.ml20 {
		margin-left: 15px !important;
	}
	.pt50 {
		padding-top: 35px !important;
	}
	.pt55 {
		padding-top: 35px !important;
	}
	.pt60 {
		padding-top: 40px !important;
	}
	.pt70 {
		padding-top: 45px !important;
	}
	.pt75 {
		padding-top: 50px !important;
	}
	.pt80 {
		padding-top: 55px !important;
	}
	.pt85 {
		padding-top: 60px !important;
	}
	.pt90 {
		padding-top: 60px !important;
	}
	.pt95 {
		padding-top: 65px !important;
	}
	.pt100 {
		padding-top: 70px !important;
	}
	.pt110 {
		padding-top: 80px !important;
	}
	.pt120 {
		padding-top: 80px !important;
	}
	.pt130 {
		padding-top: 80px !important;
	}
	.pt135 {
		padding-top: 80px !important;
	}
	.pt140 {
		padding-top: 80px !important;
	}
	.pt145 {
		padding-top: 90px !important;
	}
	.pt150 {
		padding-top: 100px !important;
	}
	.pt160 {
		padding-top: 100px !important;
	}
	.pt170 {
		padding-top: 100px !important;
	}
	.pt185 {
		padding-top: 100px !important;
	}
	.pr80 {
		padding-right: 55px !important;
	}
	.pb50 {
		padding-bottom: 30px !important;
	}
	.pb55 {
		padding-bottom: 35px !important;
	}
	.pb60 {
		padding-bottom: 40px !important;
	}
	.pb70 {
		padding-bottom: 50px !important;
	}
	.pb75 {
		padding-bottom: 50px !important;
	}
	.pb40 {
		padding-bottom: 30px !important;
	}
	.pb80 {
		padding-bottom: 50px !important;
	}
	.pb85 {
		padding-bottom: 55px !important;
	}
	.pb110 {
		padding-bottom: 75px !important;
	}
	.pb120 {
		padding-bottom: 80px !important;
	}
	.pb125 {
		padding-bottom: 80px !important;
	}
	.pb130 {
		padding-bottom: 80px !important;
	}
	.pb140 {
		padding-bottom: 90px !important;
	}
	.pb150 {
		padding-bottom: 100px !important;
	}
	.pb160 {
		padding-bottom: 100px !important;
	}
	.pb200 {
		padding-bottom: 100px !important;		
	}
	.pl80 {
		padding-left: 50px !important;
	}
	.md_pt30 {
		padding-top: 30px !important;
	}
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
	.minw769maxw1024none {
		display: none;
	}
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.minw768maxw1024none {
			display: none;
	}
	.contact td.item_checkbox .wrap_checkbox label {
		width: calc((100% - 18px) / 4);
	}
}
@media screen and (min-width: 769px) {
	.minw769none {
		display: none;
	}
}
@media screen and (min-width: 768px) {
	.minw768none {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.maxw768none {
		display: none;
	}
}
@media screen and (max-width: 1024px) and (min-width: 481px) {
	.maxw1024minw481none {
		display: none;
	}
}
@media screen and (max-width: 768px) and (min-width: 481px) {
}
@media screen and (max-width: 767px) {
	p, th, td {
		font-size: 14px;
	}
	.maxw767none {
		display: none;
	}
	html {
		font-size: 30%;
	}
	.wrap,
	.wrap01 {
		width: calc(100% - 40px);
	}
	.table_box {
        overflow-x: scroll;
        white-space: nowrap;
        position: relative;
    }
	.table_box::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background: #00A7F3;
	}
	.table_box::-webkit-scrollbar {
		width: 10px;
		height: 10px;
	}
	.wrap_header .btn_contact {
		display: none;
	}
	.contact .contents_title {
		min-height: 160px;
		background: url(../images/main_bg_sp.jpg) no-repeat;
		background-size: cover;
		background-position: center;
	}
	.contact .contents_title p {
		font-size: 20px;
		margin-bottom: 5px;
	}
	.contact .contents_title h1 {
		font-size: 32px;
	}
	.contact .contents_title .staff01 span {
		width: 48.5px;
		height: 68.5px;
	}
	.contact .contents_title .staff02 span {
		width: 53px;
		height: 66.5px;
	}
	.contact .contents_title .wrap {
		position: relative;
	}
	.contact .contents_title .staff01,
	.contact .contents_title .staff02 {
		display: none;
	}
	.contact .wrap_1680 {
		padding: 30px 0;
		border-radius: 20px;
	}
	.contact#thanks .wrap_1680 {
		padding-left: 20px;
		padding-right: 20px;
	}
	.contact .sec_form {
		padding: 0 20px 20px;
	}
	.contact .list_step {
		gap: 40px;
	}
	.contact .list_step li {
		width: 60px;
		height: 60px;
		min-width: 60px;
		min-height: 60px;
	}
	.contact .list_step li:not(:last-child)::after {
		width: 10px;
		height: 10px;
		border-width: 1px;
		right: -25px;
	}
	.contact .list_step .step-label {
		font-size: 16px;
	}
	.contact .explanation {
		font-size: 15px;
		margin: 20px 0;
		text-align: left;
	}
	.contact th label {
		font-size: 15px;
	}
	.contact th span {
		padding: 1px 7px 2px;
		font-size: 11px;
		margin-right: 10px;
	}
	.contact th label small {
		font-size: 12px;
	}
	.contact th {
		padding: 10px;
	}
	.contact td {
		padding: 20px 0;
	}
	#input input[type="text"],
	#input input[type="email"],
	#input input::placeholder,
	.contact td p, .contact td label,
	#input textarea {
		font-size: 15px;
	}
	#input input[type="text"],
	#input input[type="email"],
	#input textarea {
		padding: 10px;
		border-radius: 5px;
	}
	#input .item_radio label {
		margin-right: 15px;
	}
	.contact table.form {
		margin-bottom: 20px;
	}
	.contact .contents_policy {
		padding: 20px;
	}
	.contact .contents_policy h2 {
		font-size: 18px;
		text-indent: -18px;
		padding-left: 18px;
	}
	.contact .contents_policy p {
		font-size: 13px;
	}
	.contact .contents_policy .wrap_tel {
		gap: 20px;
	}
	.contact .contents_policy dt {
		font-size: 16px;
	}
	.contact .contents_policy dd {
		margin-top: 4px;
	}
	.contact td.item_checkbox .wrap_checkbox label {
		width: calc((100% - 6px) / 2);
	}
	#input select {
		min-width: auto;
		width: 100%;
		max-width: 300px;
		padding-right: 40px;
		border-radius: 5px;
	}
	.dotted {
		margin: 15px 0;
	}
	#input .btn-submit {
		margin: 40px 0;
		font-size: 20px;
		min-height: 60px;
	}
	#confirm .wrap_btn-form {
		flex-direction: column;
		margin-top: 40px;
	}
	#confirm .btn-formback {
		margin-right: auto;
		margin-bottom: 30px;
	}
	#input .button-shadow {
		margin-top: 40px;
		margin-bottom: 30px;
		max-width: 300px;
	}
	#input .button-form {
		height: 60px;
	}
	.recaptcha_policy {
		margin-top: 30px !important;
	}
	#confirm .button-form, #confirm .btn-formback {
		width: 100%;
		height: 60px;
		min-height: 60px;
		margin-right: auto;
		margin-left: auto;
		max-width: 300px;
	}
	#confirm .button-form input, #confirm .btn-formback button {
		font-size: 20px;
	}
	#confirm .btn-formback {
		order: 2;
		margin-top: 20px;
	}
	#thanks h2.txt_thanks {
		font-size: 17px;
		margin-top: 30px;
	}
	#thanks h2.txt_thanks,
	#thanks p.explanation {
		text-align: left;
	}
	.footer-menu small {
		font-size: 11px;
	}
	.foot_btn_contact {
		background: #ff1c24;
		color: #fff;
		font-size: 18px;
		font-weight: bold;
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		bottom: 0;
		width: 100%;
		height: 70px;
		z-index: 10;
		padding-left: 15px;
		box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
	}
	.foot_btn_contact span {
		width: 10px;
		height: 10px;
		border-top: solid 2px #fff;
		border-right: solid 2px #fff;
		transform: rotate(45deg);
		margin-left: 15px;
	}
	#lp #topback {
		bottom: 75px;
	}
	#input input#zip {
		width: 140px;
	}
	#input #button_zip {
		padding: 14px 18px;
		border-radius: 5px;
		margin-left: 15px;
	}
	.contact td.item_checkbox .wrap_checkbox label input[type="checkbox"] {
		margin-top: 4px;
	}
	#input input[type="radio"] {
		top: 0;
	}
}
@media screen and (max-width: 767px) and (min-width: 481px) {
}
@media screen and (max-width: 767px) and (min-width: 375px) {
	.maxw767minw375none {
		display: none;
	}
}

@media screen and (min-width: 481px) {
	.minw481none {
		display: none;
	}
}

@media screen and (max-width: 480px) {
	.maxw480none {
		display: none;
	}
	.mt10 {
		margin-top: 5px !important;
	}
	.mt12 {
		margin-top: 6px !important;
	}
	.mt15 {
		margin-top: 7px !important;
	}
	.mt20 {
		margin-top: 10px !important;
	}
	.mt25 {
		margin-top: 10px !important;
	}
	.mt30 {
		margin-top: 15px !important;
	}
	.mt35 {
		margin-top: 15px !important;
	}
	.mt40 {
		margin-top: 20px !important;
	}
	.mt45 {
		margin-top: 20px !important;
	}
	.mt50 {
		margin-top: 25px !important;
	}
	.mt55 {
		margin-top: 25px !important;
	}
	.mt60 {
		margin-top: 30px !important;
	}
	.mt65 {
		margin-top: 30px !important;
	}
	.mt70 {
		margin-top: 35px !important;
	}
	.mt75 {
		margin-top: 35px !important;
	}
	.mt80 {
		margin-top: 40px !important;
	}
	.mt85 {
		margin-top: 40px !important;
	}
	.mt90 {
		margin-top: 45px !important;
	}
	.mt95 {
		margin-top: 45px !important;
	}
	.mt100 {
		margin-top: 50px !important;
	}
	.mt110 {
		margin-top: 50px !important;
	}
	.mt115 {
		margin-top: 50px !important;
	}
	.mt120 {
		margin-top: 50px !important;
	}
	.mt125 {
		margin-top: 50px !important;
	}
	.mt130 {
		margin-top: 50px !important;
	}
	.mt135 {
		margin-top: 50px !important;
	}
	.mt140 {
		margin-top: 50px !important;
	}
	.mt150 {
		margin-top: 50px !important;
	}
	.mt155 {
		margin-top: 50px !important;
	}
	.mt160 {
		margin-top: 50px !important;
	}
	.mt180 {
		margin-top: 50px !important;
	}
	.mt200 {
		margin-top: 80px !important;
	}
	.mr55 {
		margin-right: 25px !important;
	}
	.mb10 {
		margin-bottom: 5px !important;
	}
	.mb20 {
		margin-bottom: 10px !important;
	}
	.mb30 {
		margin-bottom: 15px !important;
	}
	.mb40 {
		margin-bottom: 20px !important;
	}
	.mb50 {
		margin-bottom: 25px !important;
	}
	.mb60 {
		margin-bottom: 30px !important;
	}
	.mb70 {
		margin-bottom: 35px !important;
	}
	.mb80 {
		margin-bottom: 40px !important;
	}
	.mb90 {
		margin-bottom: 45px !important;
	}
	.mb100 {
		margin-bottom: 50px !important;
	}
	.mb120 {
		margin-bottom: 60px !important;
	}
	.mb150 {
		margin-bottom: 70px !important;
	}
	.ml20 {
		margin-left: 10px !important;
	}
	.ml100 {
		margin-left: 50px !important;
	}
	.pt50 {
		padding-top: 25px !important;
	}
	.pt55 {
		padding-top: 25px !important;
	}
	.pt60 {
		padding-top: 30px !important;
	}
	.pt70 {
		padding-top: 35px !important;
	}
	.pt75 {
		padding-top: 35px !important;
	}
	.pt80 {
		padding-top: 40px !important;
	}
	.pt90 {
		padding-top: 45px !important;
	}
	.pt100 {
		padding-top: 50px !important;
	}
	.pt110 {
		padding-top: 50px !important;
	}
	.pt120 {
		padding-top: 50px !important;
	}
	.pt130 {
		padding-top: 50px !important;
	}
	.pt135 {
		padding-top: 50px !important;
	}
	.pt140 {
		padding-top: 50px !important;
	}
	.pt145 {
		padding-top: 50px !important;
	}
	.pt150 {
		padding-top: 50px !important;
	}
	.pt160 {
		padding-top: 50px !important;
	}
	.pt185 {
		padding-top: 50px !important;
	}
	.pb30 {
		padding-bottom: 15px !important;
	}
	.pb40 {
		padding-bottom: 20px !important;
	}
	.pb55 {
		padding-bottom: 25px !important;
	}
	.pb50 {
		padding-bottom: 25px !important;
	}
	.pb60 {
		padding-bottom: 30px !important;
	}
	.pb70 {
		padding-bottom: 35px !important;
	}
	.pb75 {
		padding-bottom: 35px !important;
	}
	.pb80 {
		padding-bottom: 40px !important;
	}
	.pb85 {
		padding-bottom: 45px !important;
	}
	.pb100 {
		padding-bottom: 50px !important;
	}
	.pb110 {
		padding-bottom: 50px !important;
	}
	.pb120 {
		padding-bottom: 50px !important;
	}
	.pb125 {
		padding-bottom: 50px !important;
	}
	.pb130 {
		padding-bottom: 50px !important;
	}
	.pb140 {
		padding-bottom: 50px !important;
	}
	.pb150 {
		padding-bottom: 50px !important;
	}
	.pb160 {
		padding-bottom: 50px !important;
	}
	.pb200 {
		padding-bottom: 80px !important;
	}
	.pb220 {
		padding-bottom: 110px !important;
	}
	.sp_mb0 {
		margin-bottom: 0 !important;
	}
	main nav.pankuzu ol li span {
		font-size: 13px;
		line-height: 1.3;
		display: inline-block;
	}
}
@media screen and (min-width: 376px) {
	.minw376none {
		display: none;
	}
}
@media screen and (max-width: 375px) {
	.maxw375none {
		display: none;
	}
	address ul li:last-child a {
		font-size: clamp(26px, 8.53vw, 32px);
	}
}
@media screen and (max-width: 374px) {
	.maxw374none {
		display: none;
	}
	.contact .list_step li {
		width: 50px;
		height: 50px;
		min-width: 50px;
		min-height: 50px;
	}
	#input #button_zip {
		display: block;
		margin-left: 0;
		margin-top: 15px;
		max-width: 140px;
	}
	.contact .list_step .step-label {
		font-size: 16px;
	}
}
@media screen and (max-width: 349px) {
	.contact .contents_policy dd {
		font-size: clamp(26px, 8.5959vw, 30px)
	}
}
@media screen and (max-width: 320px) {
}
@media screen and (max-width: 319px) {
	.contact .list_step li {
		width: 46px;
		height: 46px;
		min-width: 46px;
		min-height: 46px;
		font-size: 15px;
	}
	.contact .list_step {
		gap: 30px;
	}
	.contact .contents_policy dt {
		font-size: 15px;
	}
}