@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500&display=swap');

html{
	max-width: 100%;
	overflow: scroll;
	overflow-x: hidden;
}

body {
	font-family: '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', 'Noto Sans JP', sans-serif;
	color: #3f4143;
	line-height: 1.7;
	overflow: hidden;
	font-feature-settings: "palt";
}

.zenmarugo {
	font-family: "Zen Maru Gothic", serif;
}

@media (min-width: 1024px){

.tategaki {
		writing-mode: vertical-rl
}
	}

.l-footer{
	width: 100%;
	height: 100%;
	padding-top: 37.252px;
	background-color: #f6f1e8;
}

.l-footer__text{
		width: 100%;
		height: 100%;
		background-color: #ee869a;
		margin-top: 26px;
		padding: 11px 0;
		text-align: center;
	}

.l-header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 80px;
	z-index: 100;
}

@media (min-width: 640px){

.l-header{
		height: 100px
}
	}

.l-header__container{
		width: 100%;
		height: 100%;
		padding: 24.7px 33.7px 0 22px;
	}

@media (min-width: 640px){

.l-header__container{
			padding: 31.2px 35px 0 30px
	}
		}

.l-header__inner{
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		width: 100%;
	}

.l-header__logo{
		width: 185px;
		height: auto;
		transform: scale(1);
		transform-origin: left top;
		transition: transform .3s ease-out;
	}

@media (prefers-reduced-motion) {

.l-header__logo{
      transition: opacity .8s linear
	}
    }

.scale .l-header__logo{
				transform: scale(0.8);
		}

.l-header__cell{
		position: absolute;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		z-index: 110;
		overflow: hidden;
		pointer-events: none;
	}

.drawer .l-header__cell{
			pointer-events: all;
    }

.l-header__mask{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #000000;
		cursor: pointer;
		opacity: 0;
		transition: opacity .3s ease-out;
	}

@media (prefers-reduced-motion) {

.l-header__mask{
      transition: opacity .8s linear
	}
    }

.drawer .l-header__mask{
			opacity: 0.4;
		}

.l-modal{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 110;
	display: none;
}

.l-modal__mask{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: #000000;
		opacity: 0.4;
	}

.l-modal__close{
		display: block;
		width: 100%;
		height: 100%;
	}

.l-modal__close::before,
		.l-modal__close::after{
			content: "";
			position: absolute;
			top: 50%;
			left: 0;
			width: 100%;
			height: 2px;
			background-color: #3f4143;
			transform-origin: center;
		}

.l-modal__close::before{
			transform: rotateZ(45deg);
		}

.l-modal__close::after{
			transform: rotateZ(-45deg);
		}

.l-modal__container{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 315px;
		max-height: 95vh;
		padding: 0 15px 20px;
		background-color: #ffffff;
		opacity: 0;
		pointer-events: none;
		visibility: hidden;
		transition: opacity 0.3s ease-in-out;
		overflow-y: scroll;
		scrollbar-width: none;
	}

.l-modal__container::-webkit-scrollbar {
			display:none;
		}

@media (min-width: 428px){

.l-modal__container{
			width: 378px;
			padding: 0 20px 36px
	}
		}

@media (min-width: 640px){

.l-modal__container{
			width: 480px;
			height: auto;
			padding: 0 30px 36px
	}
		}

@media (min-width: 800px){

.l-modal__container{
			width: 771.1534px;
			height: 555px;
			padding: 0 35px;
			padding-bottom: 0
	}
		}

.l-modal__container.modal-now{
			pointer-events: all;
			opacity: 1;
			visibility: visible;
		}

@media (prefers-reduced-motion) {

.l-modal__container{
			transition: opacity .8s linear;
			opacity: 0;
			pointer-events: none;
			visibility: hidden
	}

			.l-modal__container.modal-now{
				visibility: visible;
				pointer-events: all;
				opacity: 1;
			}
		}

.l-modal__check{
		display: inline-block;
		width: 13.5762px;
		height: 13.5762px;
		margin-right: 9px;
		-webkit-appearance: none;
		   -moz-appearance: none;
		        appearance: none;
		border: 1px solid #3f4143;
		background-color: #ffffff;
	}

.l-modal__check::before{
			content: "";
			position: relative;
			top: 42%;
			left: 47%;
			transform-origin: center;
			transform: translate(-47%, -50%) rotate(-49deg);
			display: block;
			width: 10px;
			height: 5px;
			border-bottom: 2px solid #ffffff;
			border-left: 2px solid #ffffff;
		}

.l-modal__check:checked{
			background-color: #ee869a;
		}

.l-nav{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	padding-top: 113px;
	padding-bottom: 50px;
	transform: translateX(100%);
	transition: transform 0.3s ease-out;
	overflow-x: hidden;
	overflow-y: scroll;
	z-index: 120;
}

@media (prefers-reduced-motion) {

.l-nav{
		transition: transform .8s linear
}
	}

@media (min-width: 640px){

.l-nav{
		width: 405px
}
	}

.drawer .l-nav{
		transform: translateX(0);
	}

.bubble-arrow::before {
	position: absolute;
	content: "";
	bottom: -9px;
	left: 50%;
	border-top: 10px solid #e75377;
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	transform: translateX(-50%);
}

@media (min-width: 800px) {

.bubble-arrow::before {
		bottom: -14px;
		border-width: 15px 15px 0
}
	}

.bubble-arrow-cases::before {
	position: absolute;
	content: "";
	top: -10px;
	left: 50%;
	border-bottom: 11px solid #ee869a;
	border-right: 7px solid transparent;
	border-left: 7px solid transparent;
	transform: translateX(-50%);
}

.drawer-btn{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	z-index: 120;
}

.drawer-btn__inner{
		position: relative;
		display: block;
		width: 100%;
	}

.drawer-btn__inner span{
			display: block;
			width: 100%;
			height: 2px;
			background-color: #263753;
			opacity: 1;
			transition: opacity .3s ease-out;
		}

@media (min-width: 640px){

.drawer-btn__inner span{
				height: 3px
		}
			}

.drawer .drawer-btn__inner span{
				opacity: 0;
			}

@media (prefers-reduced-motion) {

.drawer-btn__inner span{
				transition: opacity .8s linear
		}
				.drawer .drawer-btn__inner span{
					opacity: 0;
				}
			}

.drawer-btn__inner::before,
		.drawer-btn__inner::after{
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			display: block;
			width: 100%;
			height: 2px;
			background-color: #263753;
			transform-origin: center;
		}

@media (min-width: 640px){

.drawer-btn__inner::before,
		.drawer-btn__inner::after{
				height: 3px
		}
			}

.drawer-btn__inner::before{
			transform: translateY(-8.5px) rotateZ(0deg);
			transition: transform .3s ease-in-out;
		}

@media (min-width: 640px){

.drawer-btn__inner::before{
				transform: translateY(-11.7px) rotateZ(0deg)
		}
			}

.drawer .drawer-btn__inner::before{
				transform: translateY(0) rotateZ(45deg);
			}

@media (prefers-reduced-motion) {

.drawer-btn__inner::before{
				transition: transform .8s linear;
				transform: translateY(-8.5px) rotateZ(0deg)
		}

				@media (min-width: 640px){

.drawer-btn__inner::before{
					transform: translateY(-11.7px) rotateZ(0deg)
		}
				}

				.drawer .drawer-btn__inner::before{
					transform: translateY(0) rotateZ(45deg);
				}
			}

.drawer-btn__inner::after{
			transform: translateY(8.5px) rotateZ(0deg);
			transition: transform .3s ease-in-out;
		}

@media (min-width: 640px){

.drawer-btn__inner::after{
				transform: translateY(11.7px) rotateZ(0deg)
		}
			}

.drawer .drawer-btn__inner::after{
				transform: translateY(0) rotateZ(-45deg);
			}

@media (prefers-reduced-motion) {

.drawer-btn__inner::after{
				transition: transform .8s linear;
				transform: translateY(8.5px) rotateZ(0deg)
		}

				@media (min-width: 640px){

.drawer-btn__inner::after{
					transform: translateY(11.7px) rotateZ(0deg)
		}
				}

				.drawer .drawer-btn__inner::after{
					transform: translateY(0) rotateZ(-45deg);
				}
			}

.faq-btn{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	transform-origin: center;
	transform: rotateZ(0);
	transition: transform 0.3s ease-out;
}

.faq-btn::before,
	.faq-btn::after{
		content: "";
		display: block;
		position: absolute;
		background-color: #3f4143;
	}

.faq-btn::before{
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 2px;
		height: 100%;
	}

.faq-btn::after{
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		width: 100%;
		height: 2px;
	}

.action .faq-btn{
		transform: rotateZ(45deg);
	}

@media (prefers-reduced-motion) {

.faq-btn{
		transition: transform 0.8s linear
}
		.action .faq-btn{
			transform: rotateZ(45deg);
		}
	}

._is-tel-closed::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 15px;
}

.marker-yellow {
	background: linear-gradient(transparent 70%, #ffe100 70%);
}

._arrow__check{
		position: relative;
		width: 25.2525px;
		height: 18.5424px;
	}

._arrow__check::before,
		._arrow__check::after{
			content: "";
			display: block;
			position: absolute;
			z-index: 10;
		}

._arrow__check::before{
			top: 50%;
			left: 0;
			transform: translateY(-50%);
			width: 100%;
			height: 1px;
			background-color: #ffffff;
		}

._arrow__check::after{
			top: 50%;
			right: 2px;
			width: 13.1115px;
			height: 13.1115px;
			transform-origin: center;
			transform: translateY(-50%) rotateZ(45deg);
			border-top: 1px solid #ffffff;
			border-right: 1px solid #ffffff;
		}

._border-mv{
		width: 100%;
		height: 3.9806px;
		background-color: #263753;
	}

._border-heading{
		width: 20.3804px;
		height: 2px;
		background-color: #b2b2b2;
		margin: 0 auto;
	}

._flex-keep{
	flex: 1 0 auto;
}

._lh-tight::before {
			content: '';
			display: block;
			height: 0;
			width: 0;
			margin-top: calc((1 - 1.25) * 0.5em);
		}

._lh-tight::after{
				content: '';
				display: block;
				height: 0;
				width: 0;
				margin-top: calc((1 - 1.25) * 0.5em);
		}

._lh-snug::before {
			content: '';
			display: block;
			height: 0;
			width: 0;
			margin-top: calc((1 - 1.375) * 0.5em);
		}

._lh-snug::after{
				content: '';
				display: block;
				height: 0;
				width: 0;
				margin-top: calc((1 - 1.375) * 0.5em);
		}

._lh-normal::before {
			content: '';
			display: block;
			height: 0;
			width: 0;
			margin-top: calc((1 - 1.5) * 0.5em);
		}

._lh-normal::after{
				content: '';
				display: block;
				height: 0;
				width: 0;
				margin-top: calc((1 - 1.5) * 0.5em);
		}

._lh-default::before {
			content: '';
			display: block;
			height: 0;
			width: 0;
			margin-top: calc((1 - 1.7) * 0.5em);
		}

._lh-default::after{
				content: '';
				display: block;
				height: 0;
				width: 0;
				margin-top: calc((1 - 1.7) * 0.5em);
		}

._lh-loose::before {
			content: '';
			display: block;
			height: 0;
			width: 0;
			margin-top: calc((1 - 2) * 0.5em);
		}

._lh-loose::after{
				content: '';
				display: block;
				height: 0;
				width: 0;
				margin-top: calc((1 - 2) * 0.5em);
		}

.link{
	display: block;
	transition: opacity .3s ease-out;
	opacity: 1;
}

@media (min-width: 1024px){
		.link:hover{
			opacity: 0.6;
		}
	}

@media (prefers-reduced-motion) {

.link{
		transition: opacity 1s linear
}
		.link:hover{
			opacity: 0.6;
		}
	}

.link__inline{
		position: relative;
		display: inline-block;
		transition: opacity .3s ease-out;
		opacity: 1;
	}

@media (min-width: 1024px){
			.link__inline:hover{
				opacity: 0.6;
			}
		}

@media (prefers-reduced-motion) {

.link__inline{
      transition: opacity 1s linear
	}
      .link__inline:hover{
        opacity: 0.6;
      }
    }

/**
 * キーボード以外からフォーカスしたときに
 * outlineを表示しない。
 * このリセットにはwhat-imputが必要
 **************************************** */

html[data-whatinput="mouse"] *:focus,
html[data-whatinput="touch"] *:focus {
		outline: none;
}

._writing{
 writing-mode: vertical-rl;
}

/*! tailwindcss v3.4.6 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

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

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after{
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x:  ;
	--tw-pan-y:  ;
	--tw-pinch-zoom:  ;
	--tw-scroll-snap-strictness: proximity;
	--tw-gradient-from-position:  ;
	--tw-gradient-via-position:  ;
	--tw-gradient-to-position:  ;
	--tw-ordinal:  ;
	--tw-slashed-zero:  ;
	--tw-numeric-figure:  ;
	--tw-numeric-spacing:  ;
	--tw-numeric-fraction:  ;
	--tw-ring-inset:  ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgb(59 130 246 / 0.5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur:  ;
	--tw-brightness:  ;
	--tw-contrast:  ;
	--tw-grayscale:  ;
	--tw-hue-rotate:  ;
	--tw-invert:  ;
	--tw-saturate:  ;
	--tw-sepia:  ;
	--tw-drop-shadow:  ;
	--tw-backdrop-blur:  ;
	--tw-backdrop-brightness:  ;
	--tw-backdrop-contrast:  ;
	--tw-backdrop-grayscale:  ;
	--tw-backdrop-hue-rotate:  ;
	--tw-backdrop-invert:  ;
	--tw-backdrop-opacity:  ;
	--tw-backdrop-saturate:  ;
	--tw-backdrop-sepia:  ;
	--tw-contain-size:  ;
	--tw-contain-layout:  ;
	--tw-contain-paint:  ;
	--tw-contain-style:  ;
}

::backdrop{
	--tw-border-spacing-x: 0;
	--tw-border-spacing-y: 0;
	--tw-translate-x: 0;
	--tw-translate-y: 0;
	--tw-rotate: 0;
	--tw-skew-x: 0;
	--tw-skew-y: 0;
	--tw-scale-x: 1;
	--tw-scale-y: 1;
	--tw-pan-x:  ;
	--tw-pan-y:  ;
	--tw-pinch-zoom:  ;
	--tw-scroll-snap-strictness: proximity;
	--tw-gradient-from-position:  ;
	--tw-gradient-via-position:  ;
	--tw-gradient-to-position:  ;
	--tw-ordinal:  ;
	--tw-slashed-zero:  ;
	--tw-numeric-figure:  ;
	--tw-numeric-spacing:  ;
	--tw-numeric-fraction:  ;
	--tw-ring-inset:  ;
	--tw-ring-offset-width: 0px;
	--tw-ring-offset-color: #fff;
	--tw-ring-color: rgb(59 130 246 / 0.5);
	--tw-ring-offset-shadow: 0 0 #0000;
	--tw-ring-shadow: 0 0 #0000;
	--tw-shadow: 0 0 #0000;
	--tw-shadow-colored: 0 0 #0000;
	--tw-blur:  ;
	--tw-brightness:  ;
	--tw-contrast:  ;
	--tw-grayscale:  ;
	--tw-hue-rotate:  ;
	--tw-invert:  ;
	--tw-saturate:  ;
	--tw-sepia:  ;
	--tw-drop-shadow:  ;
	--tw-backdrop-blur:  ;
	--tw-backdrop-brightness:  ;
	--tw-backdrop-contrast:  ;
	--tw-backdrop-grayscale:  ;
	--tw-backdrop-hue-rotate:  ;
	--tw-backdrop-invert:  ;
	--tw-backdrop-opacity:  ;
	--tw-backdrop-saturate:  ;
	--tw-backdrop-sepia:  ;
	--tw-contain-size:  ;
	--tw-contain-layout:  ;
	--tw-contain-paint:  ;
	--tw-contain-style:  ;
}

.container{
	width: 100%;
	padding-right: 30px;
	padding-left: 30px;
}

@media (min-width: 428px){

	.container{
		max-width: 428px;
		padding-right: 20px;
		padding-left: 20px;
	}
}

@media (min-width: 640px){

	.container{
		max-width: 640px;
		padding-right: 64px;
		padding-left: 64px;
	}
}

@media (min-width: 800px){

	.container{
		max-width: 800px;
	}
}

@media (min-width: 1024px){

	.container{
		max-width: 1024px;
		padding-right: 120px;
		padding-left: 120px;
	}
}

@media (min-width: 1280px){

	.container{
		max-width: 1280px;
		padding-right: 120px;
		padding-left: 120px;
	}
}

.pointer-events-auto{
	pointer-events: auto;
}

.fixed{
	position: fixed;
}

.absolute{
	position: absolute;
}

.relative{
	position: relative;
}

.-bottom-\[70px\]{
	bottom: -70px;
}

.-left-\[14px\]{
	left: -14px;
}

.-left-\[34px\]{
	left: -34px;
}

.-left-\[3px\]{
	left: -3px;
}

.-left-\[82px\]{
	left: -82px;
}

.-left-\[9px\]{
	left: -9px;
}

.-right-\[19px\]{
	right: -19px;
}

.-right-\[3px\]{
	right: -3px;
}

.-right-\[44px\]{
	right: -44px;
}

.-right-\[82px\]{
	right: -82px;
}

.-right-\[9px\]{
	right: -9px;
}

.-top-\[126px\]{
	top: -126px;
}

.-top-\[22px\]{
	top: -22px;
}

.-top-\[73px\]{
	top: -73px;
}

.-top-\[95px\]{
	top: -95px;
}

.bottom-0{
	bottom: 0px;
}

.bottom-\[147px\]{
	bottom: 147px;
}

.bottom-\[21px\]{
	bottom: 21px;
}

.bottom-full{
	bottom: 100%;
}

.left-0{
	left: 0px;
}

.left-\[27\.64px\]{
	left: 27.64px;
}

.left-\[62\.3343px\]{
	left: 62.3343px;
}

.right-0{
	right: 0px;
}

.right-0\.5{
	right: 0.125rem;
}

.right-\[19px\]{
	right: 19px;
}

.top-0{
	top: 0px;
}

.top-1\/2{
	top: 50%;
}

.top-\[19px\]{
	top: 19px;
}

.top-\[27\.12px\]{
	top: 27.12px;
}

.top-\[2px\]{
	top: 2px;
}

.top-\[40\.7035px\]{
	top: 40.7035px;
}

.z-0{
	z-index: 0;
}

.z-10{
	z-index: 10;
}

.mx-\[5px\]{
	margin-left: 5px;
	margin-right: 5px;
}

.mx-auto{
	margin-left: auto;
	margin-right: auto;
}

.mb-12{
	margin-bottom: 3rem;
}

.mb-24{
	margin-bottom: 6rem;
}

.mb-3{
	margin-bottom: 0.75rem;
}

.mb-4{
	margin-bottom: 1rem;
}

.mb-5{
	margin-bottom: 1.25rem;
}

.mb-6{
	margin-bottom: 1.5rem;
}

.mb-\[18px\]{
	margin-bottom: 18px;
}

.mb-\[21px\]{
	margin-bottom: 21px;
}

.mb-\[26px\]{
	margin-bottom: 26px;
}

.mb-\[4\.3px\]{
	margin-bottom: 4.3px;
}

.mb-\[9px\]{
	margin-bottom: 9px;
}

.ml-2{
	margin-left: 0.5rem;
}

.ml-3{
	margin-left: 0.75rem;
}

.ml-4{
	margin-left: 1rem;
}

.ml-\[62px\]{
	margin-left: 62px;
}

.ml-\[64px\]{
	margin-left: 64px;
}

.mr-14{
	margin-right: 3.5rem;
}

.mr-\[10px\]{
	margin-right: 10px;
}

.mr-\[11px\]{
	margin-right: 11px;
}

.mr-\[22px\]{
	margin-right: 22px;
}

.mr-\[5px\]{
	margin-right: 5px;
}

.mr-\[6\.5px\]{
	margin-right: 6.5px;
}

.mt-0\.5{
	margin-top: 0.125rem;
}

.mt-10{
	margin-top: 2.5rem;
}

.mt-12{
	margin-top: 3rem;
}

.mt-2{
	margin-top: 0.5rem;
}

.mt-3{
	margin-top: 0.75rem;
}

.mt-3\.5{
	margin-top: 0.875rem;
}

.mt-4{
	margin-top: 1rem;
}

.mt-5{
	margin-top: 1.25rem;
}

.mt-6{
	margin-top: 1.5rem;
}

.mt-7{
	margin-top: 1.75rem;
}

.mt-8{
	margin-top: 2rem;
}

.mt-\[0\.5px\]{
	margin-top: 0.5px;
}

.mt-\[115px\]{
	margin-top: 115px;
}

.mt-\[20px\]{
	margin-top: 20px;
}

.mt-\[22\.6px\]{
	margin-top: 22.6px;
}

.mt-\[25px\]{
	margin-top: 25px;
}

.mt-\[29px\]{
	margin-top: 29px;
}

.mt-\[30px\]{
	margin-top: 30px;
}

.mt-\[34px\]{
	margin-top: 34px;
}

.mt-\[38\.7px\]{
	margin-top: 38.7px;
}

.mt-\[42\.5px\]{
	margin-top: 42.5px;
}

.mt-\[42\.6px\]{
	margin-top: 42.6px;
}

.mt-\[50px\]{
	margin-top: 50px;
}

.mt-\[52px\]{
	margin-top: 52px;
}

.mt-\[9\.5px\]{
	margin-top: 9.5px;
}

.block{
	display: block;
}

.inline-block{
	display: inline-block;
}

.flex{
	display: flex;
}

.inline-flex{
	display: inline-flex;
}

.grid{
	display: grid;
}

.hidden{
	display: none;
}

.h-4{
	height: 1rem;
}

.h-\[117px\]{
	height: 117px;
}

.h-\[12\.7795px\]{
	height: 12.7795px;
}

.h-\[13px\]{
	height: 13px;
}

.h-\[17\.7871px\]{
	height: 17.7871px;
}

.h-\[177\.4px\]{
	height: 177.4px;
}

.h-\[18\.9362px\]{
	height: 18.9362px;
}

.h-\[24\.3673px\]{
	height: 24.3673px;
}

.h-\[240\.57px\]{
	height: 240.57px;
}

.h-\[61px\]{
	height: 61px;
}

.h-auto{
	height: auto;
}

.h-full{
	height: 100%;
}

.h-px{
	height: 1px;
}

.w-1\/2{
	width: 50%;
}

.w-32{
	width: 8rem;
}

.w-4{
	width: 1rem;
}

.w-\[100px\]{
	width: 100px;
}

.w-\[109\.6335px\]{
	width: 109.6335px;
}

.w-\[113\.4124px\]{
	width: 113.4124px;
}

.w-\[115\.9015px\]{
	width: 115.9015px;
}

.w-\[117px\]{
	width: 117px;
}

.w-\[12\.7795px\]{
	width: 12.7795px;
}

.w-\[120px\]{
	width: 120px;
}

.w-\[122\.7462px\]{
	width: 122.7462px;
}

.w-\[138px\]{
	width: 138px;
}

.w-\[13px\]{
	width: 13px;
}

.w-\[154px\]{
	width: 154px;
}

.w-\[15px\]{
	width: 15px;
}

.w-\[167\.7526px\]{
	width: 167.7526px;
}

.w-\[17\.7871px\]{
	width: 17.7871px;
}

.w-\[170\.619px\]{
	width: 170.619px;
}

.w-\[175px\]{
	width: 175px;
}

.w-\[177\.4px\]{
	width: 177.4px;
}

.w-\[180px\]{
	width: 180px;
}

.w-\[182px\]{
	width: 182px;
}

.w-\[194\.7526px\]{
	width: 194.7526px;
}

.w-\[199px\]{
	width: 199px;
}

.w-\[19px\]{
	width: 19px;
}

.w-\[21px\]{
	width: 21px;
}

.w-\[24\.3673px\]{
	width: 24.3673px;
}

.w-\[240\.57px\]{
	width: 240.57px;
}

.w-\[245px\]{
	width: 245px;
}

.w-\[25px\]{
	width: 25px;
}

.w-\[26\.68px\]{
	width: 26.68px;
}

.w-\[260px\]{
	width: 260px;
}

.w-\[270px\]{
	width: 270px;
}

.w-\[274px\]{
	width: 274px;
}

.w-\[29px\]{
	width: 29px;
}

.w-\[31\.377px\]{
	width: 31.377px;
}

.w-\[313px\]{
	width: 313px;
}

.w-\[323\.7418px\]{
	width: 323.7418px;
}

.w-\[36\%\]{
	width: 36%;
}

.w-\[39\.8582px\]{
	width: 39.8582px;
}

.w-\[41\.8613px\]{
	width: 41.8613px;
}

.w-\[80\%\]{
	width: 80%;
}

.w-\[82\%\]{
	width: 82%;
}

.w-auto{
	width: auto;
}

.w-full{
	width: 100%;
}

.max-w-\[288px\]{
	max-width: 288px;
}

.-translate-y-1\/2{
	--tw-translate-y: -50%;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-rotate-45{
	--tw-rotate: -45deg;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.-scale-x-100{
	--tw-scale-x: -1;
	transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer{
	cursor: pointer;
}

.grid-cols-1{
	grid-template-columns: repeat(1, minmax(0, 1fr));
}

.flex-col{
	flex-direction: column;
}

.flex-col-reverse{
	flex-direction: column-reverse;
}

.flex-wrap{
	flex-wrap: wrap;
}

.items-start{
	align-items: flex-start;
}

.items-end{
	align-items: flex-end;
}

.items-center{
	align-items: center;
}

.items-stretch{
	align-items: stretch;
}

.justify-start{
	justify-content: flex-start;
}

.justify-center{
	justify-content: center;
}

.justify-between{
	justify-content: space-between;
}

.justify-items-center{
	justify-items: center;
}

.gap-6{
	gap: 1.5rem;
}

.gap-y-\[18\.4px\]{
	row-gap: 18.4px;
}

.overflow-hidden{
	overflow: hidden;
}

.whitespace-nowrap{
	white-space: nowrap;
}

.rounded{
	border-radius: 0.25rem;
}

.rounded-\[12\.5227px\]{
	border-radius: 12.5227px;
}

.rounded-\[15px\]{
	border-radius: 15px;
}

.rounded-full{
	border-radius: 9999px;
}

.rounded-lg{
	border-radius: 0.5rem;
}

.rounded-md{
	border-radius: 0.375rem;
}

.rounded-xl{
	border-radius: 0.75rem;
}

.rounded-tl-\[10px\]{
	border-top-left-radius: 10px;
}

.rounded-tr-\[10px\]{
	border-top-right-radius: 10px;
}

.border{
	border-width: 1px;
}

.border-2{
	border-width: 2px;
}

.border-b{
	border-bottom-width: 1px;
}

.border-r{
	border-right-width: 1px;
}

.border-t{
	border-top-width: 1px;
}

.border-solid{
	border-style: solid;
}

.border-black{
	--tw-border-opacity: 1;
	border-color: rgb(0 0 0 / var(--tw-border-opacity));
}

.border-check-blue{
	--tw-border-opacity: 1;
	border-color: rgb(0 159 232 / var(--tw-border-opacity));
}

.border-gray-base-base{
	--tw-border-opacity: 1;
	border-color: rgb(63 65 67 / var(--tw-border-opacity));
}

.border-main-beige{
	--tw-border-opacity: 1;
	border-color: rgb(193 152 107 / var(--tw-border-opacity));
}

.border-main-blue{
	--tw-border-opacity: 1;
	border-color: rgb(113 198 212 / var(--tw-border-opacity));
}

.border-main-main{
	--tw-border-opacity: 1;
	border-color: rgb(238 134 154 / var(--tw-border-opacity));
}

.border-main-pink{
	--tw-border-opacity: 1;
	border-color: rgb(231 83 119 / var(--tw-border-opacity));
}

.border-main-yellow{
	--tw-border-opacity: 1;
	border-color: rgb(251 201 97 / var(--tw-border-opacity));
}

.border-white{
	--tw-border-opacity: 1;
	border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.bg-black{
	--tw-bg-opacity: 1;
	background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}

.bg-check-blue{
	--tw-bg-opacity: 1;
	background-color: rgb(0 159 232 / var(--tw-bg-opacity));
}

.bg-check-red{
	--tw-bg-opacity: 1;
	background-color: rgb(229 0 18 / var(--tw-bg-opacity));
}

.bg-check-yellow{
	--tw-bg-opacity: 1;
	background-color: rgb(255 225 0 / var(--tw-bg-opacity));
}

.bg-main-beige{
	--tw-bg-opacity: 1;
	background-color: rgb(193 152 107 / var(--tw-bg-opacity));
}

.bg-main-blight{
	--tw-bg-opacity: 1;
	background-color: rgb(253 240 243 / var(--tw-bg-opacity));
}

.bg-main-blue{
	--tw-bg-opacity: 1;
	background-color: rgb(113 198 212 / var(--tw-bg-opacity));
}

.bg-main-brown{
	--tw-bg-opacity: 1;
	background-color: rgb(160 49 72 / var(--tw-bg-opacity));
}

.bg-main-light{
	--tw-bg-opacity: 1;
	background-color: rgb(254 225 232 / var(--tw-bg-opacity));
}

.bg-main-lightorange{
	--tw-bg-opacity: 1;
	background-color: rgb(251 239 229 / var(--tw-bg-opacity));
}

.bg-main-main{
	--tw-bg-opacity: 1;
	background-color: rgb(238 134 154 / var(--tw-bg-opacity));
}

.bg-main-orange{
	--tw-bg-opacity: 1;
	background-color: rgb(245 176 144 / var(--tw-bg-opacity));
}

.bg-main-paleyellow{
	--tw-bg-opacity: 1;
	background-color: rgb(255 254 238 / var(--tw-bg-opacity));
}

.bg-main-pink{
	--tw-bg-opacity: 1;
	background-color: rgb(231 83 119 / var(--tw-bg-opacity));
}

.bg-main-purple{
	--tw-bg-opacity: 1;
	background-color: rgb(140 60 128 / var(--tw-bg-opacity));
}

.bg-main-white{
	--tw-bg-opacity: 1;
	background-color: rgb(246 241 232 / var(--tw-bg-opacity));
}

.bg-main-yellow{
	--tw-bg-opacity: 1;
	background-color: rgb(251 201 97 / var(--tw-bg-opacity));
}

.bg-white{
	--tw-bg-opacity: 1;
	background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.bg-opacity-\[0\.85\]{
	--tw-bg-opacity: 0.85;
}

.p-3{
	padding: 0.75rem;
}

.p-4{
	padding: 1rem;
}

.px-1{
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}

.px-\[20px\]{
	padding-left: 20px;
	padding-right: 20px;
}

.px-\[22px\]{
	padding-left: 22px;
	padding-right: 22px;
}

.px-\[23\.4376px\]{
	padding-left: 23.4376px;
	padding-right: 23.4376px;
}

.py-1{
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.py-2{
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.py-5{
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}

.py-\[12\.6px\]{
	padding-top: 12.6px;
	padding-bottom: 12.6px;
}

.py-\[13\.7px\]{
	padding-top: 13.7px;
	padding-bottom: 13.7px;
}

.py-\[17px\]{
	padding-top: 17px;
	padding-bottom: 17px;
}

.py-\[27px\]{
	padding-top: 27px;
	padding-bottom: 27px;
}

.py-\[3px\]{
	padding-top: 3px;
	padding-bottom: 3px;
}

.py-\[48px\]{
	padding-top: 48px;
	padding-bottom: 48px;
}

.py-\[49px\]{
	padding-top: 49px;
	padding-bottom: 49px;
}

.pb-2{
	padding-bottom: 0.5rem;
}

.pb-3{
	padding-bottom: 0.75rem;
}

.pb-9{
	padding-bottom: 2.25rem;
}

.pb-\[14px\]{
	padding-bottom: 14px;
}

.pb-\[17\.06px\]{
	padding-bottom: 17.06px;
}

.pb-\[18px\]{
	padding-bottom: 18px;
}

.pb-\[30px\]{
	padding-bottom: 30px;
}

.pb-\[56\.7px\]{
	padding-bottom: 56.7px;
}

.pb-\[8px\]{
	padding-bottom: 8px;
}

.pl-\[20\.7px\]{
	padding-left: 20.7px;
}

.pr-0{
	padding-right: 0px;
}

.pr-4{
	padding-right: 1rem;
}

.pt-1{
	padding-top: 0.25rem;
}

.pt-10{
	padding-top: 2.5rem;
}

.pt-3{
	padding-top: 0.75rem;
}

.pt-5{
	padding-top: 1.25rem;
}

.pt-\[11\.6px\]{
	padding-top: 11.6px;
}

.pt-\[192px\]{
	padding-top: 192px;
}

.pt-\[20\.4px\]{
	padding-top: 20.4px;
}

.pt-\[30px\]{
	padding-top: 30px;
}

.pt-\[50px\]{
	padding-top: 50px;
}

.pt-\[53px\]{
	padding-top: 53px;
}

.text-left{
	text-align: left;
}

.text-center{
	text-align: center;
}

.font-gothic{
	font-family: 'ヒラギノ角ゴ ProN W3', 'HiraKakuProN-W3', 'ヒラギノ角ゴ Pro W3', 'HiraKakuPro-W3', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

.font-helvetica{
	font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.text-\[1\.3em\]{
	font-size: 1.3em;
}

.text-\[15px\]{
	font-size: 15px;
}

.text-\[22px\]{
	font-size: 22px;
}

.text-\[28px\]{
	font-size: 28px;
}

.text-\[36px\]{
	font-size: 36px;
}

.text-lg{
	font-size: 18px;
}

.text-md{
	font-size: 16px;
}

.text-sm{
	font-size: 14px;
}

.text-xl{
	font-size: 20px;
}

.text-xs{
	font-size: 12px;
}

.text-xxl{
	font-size: 24px;
}

.font-bold{
	font-weight: 700;
}

.font-light{
	font-weight: 300;
}

.font-medium{
	font-weight: 500;
}

.leading-6{
	line-height: 1.5rem;
}

.leading-7{
	line-height: 1.75rem;
}

.leading-none{
	line-height: 1;
}

.leading-normal{
	line-height: 1.5;
}

.leading-snug{
	line-height: 1.375;
}

.leading-tight{
	line-height: 1.25;
}

.tracking-tight{
	letter-spacing: -0.025em;
}

.tracking-wide{
	letter-spacing: 0.025em;
}

.tracking-wider{
	letter-spacing: 0.05em;
}

.tracking-widest{
	letter-spacing: 0.1em;
}

.text-black{
	--tw-text-opacity: 1;
	color: rgb(0 0 0 / var(--tw-text-opacity));
}

.text-check-blue{
	--tw-text-opacity: 1;
	color: rgb(0 159 232 / var(--tw-text-opacity));
}

.text-check-red{
	--tw-text-opacity: 1;
	color: rgb(229 0 18 / var(--tw-text-opacity));
}

.text-check-yellow{
	--tw-text-opacity: 1;
	color: rgb(255 225 0 / var(--tw-text-opacity));
}

.text-gray-base-heading{
	--tw-text-opacity: 1;
	color: rgb(38 55 83 / var(--tw-text-opacity));
}

.text-main-main{
	--tw-text-opacity: 1;
	color: rgb(238 134 154 / var(--tw-text-opacity));
}

.text-main-pink{
	--tw-text-opacity: 1;
	color: rgb(231 83 119 / var(--tw-text-opacity));
}

.text-white{
	--tw-text-opacity: 1;
	color: rgb(255 255 255 / var(--tw-text-opacity));
}

.underline{
	text-decoration-line: underline;
}

.transition-opacity{
	transition-property: opacity;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.only\:block:only-child{
	display: block;
}

@media not all and (min-width: 800px){

	.max-md\:mx-auto{
		margin-left: auto;
		margin-right: auto;
	}

	.max-md\:mb-4{
		margin-bottom: 1rem;
	}

	.max-md\:mt-4{
		margin-top: 1rem;
	}

	.max-md\:hidden{
		display: none;
	}

	.max-md\:text-center{
		text-align: center;
	}
}

@media (min-width: 428px){

	.xs\:ml-\[72px\]{
		margin-left: 72px;
	}

	.xs\:ml-\[74px\]{
		margin-left: 74px;
	}

	.xs\:mt-10{
		margin-top: 2.5rem;
	}

	.xs\:mt-\[27px\]{
		margin-top: 27px;
	}

	.xs\:block{
		display: block;
	}

	.xs\:hidden{
		display: none;
	}

	.xs\:w-\[131\.9816px\]{
		width: 131.9816px;
	}

	.xs\:w-\[250px\]{
		width: 250px;
	}

	.xs\:w-\[305\.9897px\]{
		width: 305.9897px;
	}

	.xs\:w-\[312\.6799px\]{
		width: 312.6799px;
	}

	.xs\:w-\[320px\]{
		width: 320px;
	}

	.xs\:w-full{
		width: 100%;
	}

	.xs\:px-2{
		padding-left: 0.5rem;
		padding-right: 0.5rem;
	}

	.xs\:py-\[27px\]{
		padding-top: 27px;
		padding-bottom: 27px;
	}

	.xs\:pb-4{
		padding-bottom: 1rem;
	}

	.xs\:pt-\[70\.6px\]{
		padding-top: 70.6px;
	}

	.xs\:text-center{
		text-align: center;
	}

	.xs\:text-3xl{
		font-size: 32px;
	}

	.xs\:text-\[19px\]{
		font-size: 19px;
	}

	.xs\:text-\[23px\]{
		font-size: 23px;
	}

	.xs\:text-lg{
		font-size: 18px;
	}

	.xs\:text-md{
		font-size: 16px;
	}

	.xs\:text-sm{
		font-size: 14px;
	}

	.xs\:text-xxl{
		font-size: 24px;
	}

	.xs\:tracking-wide{
		letter-spacing: 0.025em;
	}

	.xs\:tracking-widest{
		letter-spacing: 0.1em;
	}
}

@media (min-width: 640px){

	.sm\:mb-0{
		margin-bottom: 0px;
	}

	.sm\:mb-\[95px\]{
		margin-bottom: 95px;
	}

	.sm\:ml-0{
		margin-left: 0px;
	}

	.sm\:mr-0{
		margin-right: 0px;
	}

	.sm\:mt-\[35px\]{
		margin-top: 35px;
	}

	.sm\:block{
		display: block;
	}

	.sm\:inline{
		display: inline;
	}

	.sm\:hidden{
		display: none;
	}

	.sm\:h-\[26\.5177px\]{
		height: 26.5177px;
	}

	.sm\:w-\[318\.2256px\]{
		width: 318.2256px;
	}

	.sm\:w-\[350px\]{
		width: 350px;
	}

	.sm\:w-\[43\.8697px\]{
		width: 43.8697px;
	}

	.sm\:flex-row{
		flex-direction: row;
	}

	.sm\:pt-\[55px\]{
		padding-top: 55px;
	}

	.sm\:text-left{
		text-align: left;
	}

	.sm\:text-center{
		text-align: center;
	}

	.sm\:text-3xl{
		font-size: 32px;
	}

	.sm\:text-\[23px\]{
		font-size: 23px;
	}

	.sm\:text-md{
		font-size: 16px;
	}

	.sm\:text-xl{
		font-size: 20px;
	}

	.sm\:text-xs{
		font-size: 12px;
	}
}

@media (min-width: 800px){

	.md\:mb-2{
		margin-bottom: 0.5rem;
	}

	.md\:mb-3{
		margin-bottom: 0.75rem;
	}

	.md\:mb-4{
		margin-bottom: 1rem;
	}

	.md\:mb-5{
		margin-bottom: 1.25rem;
	}

	.md\:mb-7{
		margin-bottom: 1.75rem;
	}

	.md\:mb-\[34\.3394px\]{
		margin-bottom: 34.3394px;
	}

	.md\:ml-0{
		margin-left: 0px;
	}

	.md\:mr-7{
		margin-right: 1.75rem;
	}

	.md\:mt-0{
		margin-top: 0px;
	}

	.md\:mt-8{
		margin-top: 2rem;
	}

	.md\:mt-\[23px\]{
		margin-top: 23px;
	}

	.md\:mt-\[24\.79px\]{
		margin-top: 24.79px;
	}

	.md\:mt-\[28\.8px\]{
		margin-top: 28.8px;
	}

	.md\:mt-\[41\.8px\]{
		margin-top: 41.8px;
	}

	.md\:mt-\[48\.6px\]{
		margin-top: 48.6px;
	}

	.md\:mt-\[60px\]{
		margin-top: 60px;
	}

	.md\:mt-\[64\.6px\]{
		margin-top: 64.6px;
	}

	.md\:mt-\[75px\]{
		margin-top: 75px;
	}

	.md\:block{
		display: block;
	}

	.md\:inline-block{
		display: inline-block;
	}

	.md\:flex{
		display: flex;
	}

	.md\:hidden{
		display: none;
	}

	.md\:w-52{
		width: 13rem;
	}

	.md\:w-\[120\.8368px\]{
		width: 120.8368px;
	}

	.md\:w-\[42\%\]{
		width: 42%;
	}

	.md\:w-\[450px\]{
		width: 450px;
	}

	.md\:w-\[54\%\]{
		width: 54%;
	}

	.md\:w-\[610px\]{
		width: 610px;
	}

	.md\:w-full{
		width: 100%;
	}

	.md\:flex-row{
		flex-direction: row;
	}

	.md\:rounded-xl{
		border-radius: 0.75rem;
	}

	.md\:p-9{
		padding: 2.25rem;
	}

	.md\:py-\[58px\]{
		padding-top: 58px;
		padding-bottom: 58px;
	}

	.md\:pt-\[55px\]{
		padding-top: 55px;
	}

	.md\:pt-\[87px\]{
		padding-top: 87px;
	}

	.md\:text-center{
		text-align: center;
	}

	.md\:text-\[30px\]{
		font-size: 30px;
	}

	.md\:text-lg{
		font-size: 18px;
	}

	.md\:text-xl{
		font-size: 20px;
	}

	.md\:text-xxl{
		font-size: 24px;
	}
}

@media (min-width: 1024px){

	.lg\:pointer-events-none{
		pointer-events: none;
	}

	.lg\:absolute{
		position: absolute;
	}

	.lg\:-left-\[11px\]{
		left: -11px;
	}

	.lg\:-left-\[12px\]{
		left: -12px;
	}

	.lg\:-left-\[176px\]{
		left: -176px;
	}

	.lg\:-left-\[342px\]{
		left: -342px;
	}

	.lg\:-left-\[56px\]{
		left: -56px;
	}

	.lg\:-right-\[11px\]{
		right: -11px;
	}

	.lg\:-right-\[12px\]{
		right: -12px;
	}

	.lg\:-right-\[176px\]{
		right: -176px;
	}

	.lg\:-right-\[265px\]{
		right: -265px;
	}

	.lg\:-right-\[92px\]{
		right: -92px;
	}

	.lg\:-top-\[31px\]{
		top: -31px;
	}

	.lg\:-top-\[89px\]{
		top: -89px;
	}

	.lg\:bottom-\[34px\]{
		bottom: 34px;
	}

	.lg\:bottom-\[39px\]{
		bottom: 39px;
	}

	.lg\:bottom-\[93\.13px\]{
		bottom: 93.13px;
	}

	.lg\:bottom-auto{
		bottom: auto;
	}

	.lg\:left-\[37\.6491px\]{
		left: 37.6491px;
	}

	.lg\:left-auto{
		left: auto;
	}

	.lg\:right-\[265px\]{
		right: 265px;
	}

	.lg\:top-0{
		top: 0px;
	}

	.lg\:top-\[100px\]{
		top: 100px;
	}

	.lg\:top-\[200px\]{
		top: 200px;
	}

	.lg\:top-\[34px\]{
		top: 34px;
	}

	.lg\:top-\[39\.3153px\]{
		top: 39.3153px;
	}

	.lg\:mx-0{
		margin-left: 0px;
		margin-right: 0px;
	}

	.lg\:mx-auto{
		margin-left: auto;
		margin-right: auto;
	}

	.lg\:my-\[5px\]{
		margin-top: 5px;
		margin-bottom: 5px;
	}

	.lg\:mb-0{
		margin-bottom: 0px;
	}

	.lg\:mb-\[10px\]{
		margin-bottom: 10px;
	}

	.lg\:mb-\[3px\]{
		margin-bottom: 3px;
	}

	.lg\:mb-\[55px\]{
		margin-bottom: 55px;
	}

	.lg\:ml-\[133\.62px\]{
		margin-left: 133.62px;
	}

	.lg\:ml-\[72px\]{
		margin-left: 72px;
	}

	.lg\:ml-\[74px\]{
		margin-left: 74px;
	}

	.lg\:mr-0{
		margin-right: 0px;
	}

	.lg\:mt-\[30px\]{
		margin-top: 30px;
	}

	.lg\:mt-\[40px\]{
		margin-top: 40px;
	}

	.lg\:mt-\[45px\]{
		margin-top: 45px;
	}

	.lg\:mt-\[85px\]{
		margin-top: 85px;
	}

	.lg\:mt-3{
		margin-top: 0.75rem;
	}

	.lg\:mb-3{
		margin-bottom: 0.75rem;
	}

	.lg\:mb-2{
		margin-bottom: 0.5rem;
	}

	.lg\:block{
		display: block;
	}

	.lg\:hidden{
		display: none;
	}

	.lg\:h-\[152px\]{
		height: 152px;
	}

	.lg\:h-\[197px\]{
		height: 197px;
	}

	.lg\:h-\[240\.57px\]{
		height: 240.57px;
	}

	.lg\:h-\[700px\]{
		height: 700px;
	}

	.lg\:w-\[144\.8624px\]{
		width: 144.8624px;
	}

	.lg\:w-\[152px\]{
		width: 152px;
	}

	.lg\:w-\[20px\]{
		width: 20px;
	}

	.lg\:w-\[240\.57px\]{
		width: 240.57px;
	}

	.lg\:w-\[26px\]{
		width: 26px;
	}

	.lg\:w-\[296px\]{
		width: 296px;
	}

	.lg\:w-\[305\.552px\]{
		width: 305.552px;
	}

	.lg\:w-\[324px\]{
		width: 324px;
	}

	.lg\:w-\[340px\]{
		width: 340px;
	}

	.lg\:w-\[374px\]{
		width: 374px;
	}

	.lg\:w-\[399px\]{
		width: 399px;
	}

	.lg\:w-\[49\%\]{
		width: 49%;
	}

	.lg\:w-\[543\.7px\]{
		width: 543.7px;
	}

	.lg\:w-\[70px\]{
		width: 70px;
	}

	.lg\:w-full{
		width: 100%;
	}

	.lg\:max-w-\[1281\.7796px\]{
		max-width: 1281.7796px;
	}

	.lg\:max-w-\[775\.5547px\]{
		max-width: 775.5547px;
	}

	.lg\:max-w-\[782px\]{
		max-width: 782px;
	}

	.lg\:max-w-\[821\.1117px\]{
		max-width: 821.1117px;
	}

	.lg\:max-w-\[887px\]{
		max-width: 887px;
	}

	.lg\:grid-cols-2{
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lg\:flex-row{
		flex-direction: row;
	}

	.lg\:items-end{
		align-items: flex-end;
	}

	.lg\:justify-end{
		justify-content: flex-end;
	}

	.lg\:gap-\[15px\]{
		gap: 15px;
	}

	.lg\:rounded-\[48px\]{
		border-radius: 48px;
	}

	.lg\:rounded-bl-\[12px\]{
		border-bottom-left-radius: 12px;
	}

	.lg\:rounded-tl-\[12px\]{
		border-top-left-radius: 12px;
	}

	.lg\:rounded-tr-none{
		border-top-right-radius: 0px;
	}

	.lg\:p-0{
		padding: 0px;
	}

	.lg\:pb-0{
		padding-bottom: 0px;
	}

	.lg\:pb-\[71px\]{
		padding-bottom: 71px;
	}

	.lg\:pr-\[10\.94px\]{
		padding-right: 10.94px;
	}

	.lg\:pt-0{
		padding-top: 0px;
	}

	.lg\:pt-\[85px\]{
		padding-top: 85px;
	}

	.lg\:text-left{
		text-align: left;
	}

	.lg\:text-\[17px\]{
		font-size: 17px;
	}

	.lg\:text-\[19px\]{
		font-size: 19px;
	}

	.lg\:text-\[26px\]{
		font-size: 26px;
	}

	.lg\:text-lg{
		font-size: 18px;
	}

	.lg\:leading-10{
		line-height: 2.5rem;
	}
}

@media (min-width: 1280px){

	.xl\:bottom-\[111\.7591px\]{
		bottom: 111.7591px;
	}

	.xl\:ml-0{
		margin-left: 0px;
	}

	.xl\:block{
		display: block;
	}

	.xl\:inline{
		display: inline;
	}

	.xl\:hidden{
		display: none;
	}

	.xl\:h-\[720px\]{
		height: 720px;
	}

	.xl\:w-\[323\.7418px\]{
		width: 323.7418px;
	}

	.xl\:w-\[340\.3663px\]{
		width: 340.3663px;
	}

	.xl\:w-\[605\.2084px\]{
		width: 605.2084px;
	}

	.xl\:max-w-\[1002\.0975px\]{
		max-width: 1002.0975px;
	}

	.xl\:max-w-\[987\.0592px\]{
		max-width: 987.0592px;
	}

	.xl\:max-w-\[999\.8486px\]{
		max-width: 999.8486px;
	}

	.xl\:grid-cols-3{
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.xl\:p-0{
		padding: 0px;
	}

	.xl\:pr-\[12\.175px\]{
		padding-right: 12.175px;
	}
}

