@charset "UTF-8";

/*変数*/
/*--------------------------------------
リセットCSS
--------------------------------------*/
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
	margin: 0 auto;
	width: 100%;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

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

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

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

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/*--------------------------------------
サイト共通定義
--------------------------------------*/
body {
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  animation: fadeIn 2s ease 0s 1 normal;
	color: var(--color-black1);
	background: var(--color-white1);
	font-size: 14px;
	font-weight: 500;
	/*font-family: Garamond , "Times New Roman", "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;*/
	font-family: Times New Roman, '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Noto Serif JP', 'Hiragino Mincho ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
	line-height: 1.8;/* 変更 */
}
@keyframes fadeIn {
    0% { opacity: 0}
    100% { opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% { opacity: 0}
    100% { opacity: 1}
}

body.open {
  overflow: hidden;
}

body::-webkit-scrollbar {
  width: 16px;
}

body::-webkit-scrollbar-track {
  background-color: #e4e4e4;
}

body::-webkit-scrollbar-thumb {
  background-color: #F9A7B8;
  border-radius: 100px;
}

::-moz-selection {
  background: #F9A7B8;
  color: #fff;
}

::selection {
  background: #F9A7B8;
  color: #fff;
}

ul::-webkit-scrollbar {
  display: none;
}

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

/*PC版769pxまでSP版786px〜*/
@media screen and (min-width: 769px) {
	.sp{
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc{
		display: none !important;
	}
}

.inner {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.spacing {
  padding-left: 20px;
  padding-right: 20px;
}

.mb_20 {
  margin-bottom: 20px;
}

/*imgタグに下記クラスを付けることで、はみ出し防止！！！*/
.inner_img{
	max-width: 100%;
}
img{
	max-width: 100%;
  	height: auto;
}

/*********** 文字色 ***********/
.atten_01, .atten_01 a{color: #e50055;}
.atten_02, .atten_02 a{color: #ffff00;}
.atten_03, .atten_03 a{color: #a4f4ff;}
.atten_04, .atten_04 a{color: #ffe5a4;}

:root {
	--color-white1:	#fff;
	--color-gray1:	#c6beb6;
	--color-black1:	#2c190b;
	--color-pink1: #e66b89;
	--color-pink2: #d62668;
	--color-pink3: #f093aa;
	--color-pink4: #fbe7ec;
	--color-blue1: #56cdde;
	--color-blue2: #d3f0f4;
	--bg-gradation1: linear-gradient(90deg, rgba(194, 79, 107, 1) 0%, rgba(229, 143, 164, 1) 50%, rgba(194, 79, 107, 1) 100%);
	--bg-gradation2: linear-gradient(90deg, rgba(58, 202, 198, 1) 0%, rgba(88, 223, 218, 1) 50%, rgba(58, 202, 198, 1) 100%);
}

/*********** マージン ***********/
.mb_10{margin-bottom: 10px;}
.mb_20{margin-bottom: 20px;}
.mb_30{margin-bottom: 30px;}
.mb_40{margin-bottom: 40px;}
.mb_60{margin-bottom: 60px;}
.mb_80{margin-bottom: 80px;}

/*********** 文字寄せ ***********/
.center{text-align: center;}
.left{text-align: left;}
.right{text-align: right;}

/*********** フォントサイズ ***********/
.fs_ss{font-size: 8px;}
.fs_s{font-size: 10px;}
.fs_12{font-size: 12px;}
.fs_13{font-size: 13px;}
.fs_14{font-size: 14px;}
.fs_15{font-size: 15px;}
.fs_16{font-size: 16px;}
.fs_18{font-size: 18px;}
.fs_20{font-size: 20px;}
.fs_24{font-size: 24px;}

/*********** フォントウエイト ***********/
.fw_bold{font-weight: 900;}

/*********** リンクhoverアクション ***********/
.link_act_01{
	opacity: 1;
	-webkit-transition: opacity 0.4s ease;
	-moz-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}
.link_act_01:hover{
	opacity: 0.5;
}

/*--------------------------------------
js関係を一括でまとめています。js専用のクラスの場合、必ず頭に「js-」を付けて下さい
--------------------------------------*/
/* fade bottom */
.js-fade-bottom {
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
}

.js-fade-bottom.js-active {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.js-active .js-fade-bottom {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.js-active .js-fade-bottom:nth-child(2) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.js-active .js-fade-bottom:nth-child(3) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.js-active .js-fade-bottom:nth-child(4) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.js-active .js-fade-bottom:nth-child(5) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.js-active .js-fade-bottom:nth-child(6) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.js-active .js-fade-bottom:nth-child(7) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

.js-active .js-fade-bottom:nth-child(8) {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}

.js-active .js-fade-bottom:nth-child(9) {
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

/* fade right */
.js-fade-right {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  opacity: 0;
}

.js-fade-right.js-active {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.js-active .js-fade-right {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

/* fade left */
.js-fade-left {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  opacity: 0;
}

.js-fade-left.js-active {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.js-active .js-fade-left {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}

.js-active .js-fade-left:nth-child(2) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.js-active .js-fade-left:nth-child(3) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.js-active .js-fade-left:nth-child(4) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}

.js-active .js-fade-left:nth-child(5) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.js-active .js-fade-left:nth-child(6) {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.js-active .js-fade-left:nth-child(7) {
  -webkit-transition-delay: 1.2s;
  transition-delay: 1.2s;
}

.js-active .js-fade-left:nth-child(8) {
  -webkit-transition-delay: 1.4s;
  transition-delay: 1.4s;
}

/* fade slide */
.js-fade-slide {
  position: relative;
}

.js-fade-slide::after {
  content: "";
  display: block;
  width: 100%;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: 100% 0;
  transform-origin: 100% 0;
  height: 100%;
  background-color: #eee;
  position: absolute;
  top: 0;
  right: 0;
}

.js-fade-slide.js-active::after {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

/*--------------------------------------
共通
--------------------------------------*/
article {
  padding: 60px 20px;
}

/* タイトル */
.subtitle,
.subtitle_pickup,
.subtitle_today {
    position: relative;
    text-align: center;
    padding-top: 44px;
    margin-bottom: 20px;
}
.subtitle .txt_grad,
.subtitle_today .txt_grad {
	font-family: "Sorts Mill Goudy", serif;
	font-weight: 400;
	font-style: normal;
    display: inline-block;
    font-size: clamp(28px, 4vw, 36px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.2;
    background-image: var(--bg-gradation1);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.subtitle_pickup .txt_grad {
	font-family: "Sorts Mill Goudy", serif;
	font-weight: 400;
	font-style: normal;
    font-size: clamp(32px, 4vw, 44px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--color-pink2);
}
.subtitle .sub,
.subtitle_today .sub {
    display: block;
    font-size: 16px;
    letter-spacing: 0.12em;
    line-height: 1.4;
    color: var(--color-pink1);
}
.subtitle_pickup .sub {
    display: block;
    font-size: 16px;
    letter-spacing: 0.12em;
    line-height: 1.4;
    color: var(--color-pink2);
}
.subtitle::before,
.subtitle_today::before {
    display: block;
    content: "";
    width: 60px;
    height: 30px;
    background: url(../images/subtitle_deco.svg) center / cover no-repeat;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.subtitle_02 {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}
.subtitle_02 .txt_grad {
  display: inline-block;
  font-size: clamp(20px, 4vw, 24px);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.2;
  background-image: var(--bg-gradation1);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.subtitle_02 .salaly_line {
    display: block;
    margin: 0 auto;
    max-width: 180px;
    width: 180px;
    height: 20px;
}
@media screen and (max-width: 480px) {
	.subtitle,
	.subtitle_pickup {
		padding-top: 30px;
		margin-bottom: 20px;
	}
	.subtitle_today {
		padding-top: 30px;
	    margin-bottom: 20px;
	}
	.subtitle .sub,
	.subtitle_pickup .sub {
        line-height: 1.2;
		font-size: 14px;
	}
	.subtitle_today .sub {
        line-height: 1.8;
		font-size: 14px;
	}
	.subtitle::before,
	.subtitle_today::before {
		width: 40px;
		height: 20px;
	}
}

/*--------------------------------------
ヘッダー
--------------------------------------*/
header {
	background: var(--color-white1);
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
  padding: 0 20px 0 16px;
	filter: drop-shadow(0px 1px 1px rgba(230,107,137,1));
}
header .inner {
  width: 100%;
  max-width: 100%;
  height: 60px;
  padding: 0 50px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
header h1.logo img{
	max-width: 100px;
	margin-top: 24px;
}
header h1.logo:before {
    content: "";
    position: absolute;
    background: var(--color-white1);
    width: 150px;
    height: 150px;
    border-radius: 100%;
    top: 38%;
    left: 65px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}
@media screen and (max-width: 800px) {
	header {
		padding: 0 10px;
	}
	header h1.logo:before {
		width: 120px;
		height: 120px;
		top: 40%;
		left: 48px;
	}
	header h1.logo img {
		max-width: 78px;
	}
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
}
.pc_nav {
  display: none;
}
.pc_nav li {
  padding-right: 10px;
}
.pc_nav li a {
  position: relative;
}
.pc_nav li a::after {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--color-blue1);
  border-radius: 50%;
  bottom: -15px;
  left: calc(50% - 5px);
  opacity: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.pc_nav li a:hover::after {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.pc_nav li::after {
  content: "/";
  padding-left: 10px;
}
.pc_nav li:last-of-type {
  padding-right: 0;
}
.pc_nav li:last-of-type::after {
  content: "";
  padding-left: 0;
}

.menu_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  padding: 50px 50px 120px;
  overflow: scroll;
  scrollbar-width: none;
}
.menu_box::-webkit-scrollbar {
  display: none;
}
.menu_box .menu_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--color-black1);
  font-size: 18px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  text-align: left;
}
.menu_box .menu_item:first-of-type {
  font-size: 18px;
  line-height: 1.6;
  width: 100%;
  color: var(--color-pink1);
  text-align: center;
  margin-bottom: 20px;
}
.menu_box .menu_item a {
  border-bottom: 1px dotted var(--color-pink3);
  line-height: 1.2;
  margin: 10px;
  padding: 10px;
  display: block;
  position: relative;
}
.menu_box .menu_item a .arrow {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
}
.menu_box .menu_item a .line_01 {
  height: 1px;
  background: var(--color-pink3);
  display: block;
}
.menu_box .menu_item a .line_02 {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  width: 20px;
  height: 1px;
  background: var(--color-pink3);
  -webkit-transform: rotate(35deg);
  transform: rotate(35deg);
}
#menu_toggle {
  opacity: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}
#menu_toggle:checked~.menu_btn>span {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#menu_toggle:checked~.menu_btn>span::before {
  top: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  background: var(--color-blue1);
}
#menu_toggle:checked~.menu_btn>span::after {
  top: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background: var(--color-blue1);
}
#menu_toggle:checked~.menu_box {
  visibility: visible;
  left: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.menu_btn {
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 2;
  position: fixed;
  right: 10px;
  top: 30px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menu_btn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--color-blue1);
}
.menu_btn span::before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--color-blue1);
  content: "";
  top: -8px;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
.menu_btn span::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--color-blue1);
  content: "";
  top: 8px;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}

/*--------------------------------------
mainvisual メインビジュアル
--------------------------------------*/
#mainvisual {
	position: relative;
	overflow: hidden;
    padding-top: 60px;
}
#mainvisual picture > img {
	width: 100%;
	height: 100%;
	display: block;
}
#mainvisual .info_wrap {
	position: absolute;
	top: 48%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	z-index: 1;
	width: 25%;
	min-width: 400px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-inline: auto;
}
#mainvisual .logo {
    margin: 0 auto;
    width: 100%;
    z-index: 10;
}
#mainvisual .logo img{
    width: 90%;
    height: auto;
    margin: 0 auto;
}

@-webkit-keyframes anime-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes anime-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*--------------------------------------
挨拶
--------------------------------------*/
#greeting {
  background: url(../images/bg_greeting_pc.jpg) no-repeat 50% 100%/cover;
  text-align: center;
}
#greeting .txt_box p {
  font-size: clamp(14px, 1.2vw, 16px);
}
#greeting .txt_box p span {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--color-pink2);
}
#greeting .frame_greeting_outer {
	border: 1px solid var(--color-white1);
	padding: 10px;
  border-radius: 20px;
  margin-bottom: 40px;
}
#greeting .frame_greeting {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px 10px;
	position: relative;
}

@media (max-width: 600px) {
  #greeting {
    background: url(../images/bg_greeting_sp.jpg) no-repeat 50% 100%/cover;
    text-align: center;
  }
}

/*--------------------------------------
お仕事の流れ
--------------------------------------*/
#workflow {
  position: relative;
  width: 100%;
  background: url(../images/bg_workflow.jpg) 50% 50% no-repeat;
  background-size: cover;
}
#workflow .workflow_area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
#workflow .workflow_box::after{
  content: "";
  display: inline-block;
  max-width: 20px;
  width: 20px;
  height: 20px;
  background: url(../images/icon_arrow_pink.svg) center / contain no-repeat;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
#workflow .workflow_box:nth-of-type(5)::after {
  content: none;
}
#workflow .workflow_box figure {
  position: relative;
  margin-bottom: 30px;
}
#workflow .workflow_box figure::before {
	content: "";
	position: absolute;
	top: -28px;
	right: -12px;
	width: 150px;
	height: 60px;
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 2;
}
#workflow .workflow_box:nth-of-type(1) figure::before {
	background-image: url(../images/img_point_01.png);
}
#workflow .workflow_box:nth-of-type(2) figure::before {
	background-image: url(../images/img_point_02.png);
}
#workflow .workflow_box:nth-of-type(3) figure::before {
	background-image: url(../images/img_point_03.png);
}
#workflow .workflow_box:nth-of-type(4) figure::before {
	background-image: url(../images/img_point_04.png);
}
#workflow .workflow_box:nth-of-type(5) figure::before {
	background-image: url(../images/img_point_05.png);
}
#workflow .workflow_box figure img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 10px 10px var(--color-blue2);
}
#workflow .workflow_box .txt_box{
  margin: 20px 0;
}
#workflow .workflow_box .txt_box img{
  margin-bottom: 10px;
}
#workflow .workflow_box .txt_box p{
  display: block;
  margin: 0 auto;
}
#workflow .workflow_box .workflow_title {
  color: var(--color-black1);
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 10px;
  position: relative;
}
#workflow .workflow_box .deco_line {
  display: block;
  margin: 0 auto;
  max-width: 180px;
  width: 180px;
  height: 20px;
}
@media (min-width: 600px) {
  #workflow .workflow_area {
    gap: 0;
    margin: 0 auto;
  }
  #workflow .workflow_box {
    padding: 50px 20px 20px;
    background-size: 80px 27px;
    background-position: center -1px;
  }
  #workflow .workflow_box::before {
    width: 130px;
    height: 68px;
    top: -70px;
    background-size: 130px 68px;
  }
}
@media (min-width: 768px) {
  #workflow .workflow_box {
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }
  #workflow .workflow_box:nth-of-type(even) figure {
    order: 2;
  }
  #workflow .workflow_box:nth-of-type(even) .txt_box {
    order: 1;
  }
  #workflow .workflow_box figure {
    margin-bottom: 0;
  }
  #workflow .workflow_box figure::before {
      top: -32px;
      right: -12px;
      width: 180px;
      height: 60px;
  }
}

/*--------------------------------------
お給料
--------------------------------------*/
#salaly {
  position: relative;
  width: 100%;
  background: url(../images/bg_salary.jpg) 50% 100% no-repeat;
  background-size: cover;
}
#salaly .title {
  margin-bottom: 100px;
}
#salaly .salaly_item_01 {
  margin-bottom: 40px;
}
#salaly .salaly_item_01 .inner {
  position: relative;
}
#salaly .salaly_item_01 .inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(-30%);
  transform: translateY(-30%);
  background: #FFEDF6;
  width: 80%;
  height: 317px;
  z-index: -1;
  border-radius: 20px;
}
#salaly .salaly_item_01 h3 {
  color: var(--color-blue1);
  font-size: 40px;
	font-family: "Sorts Mill Goudy", serif;
	font-weight: 400;
	font-style: normal;
  line-height: 1;
  position: absolute;
  text-align: left;
  z-index: 1;
  -ms-grid-column: 1;
  grid-column-start: 1;
  -ms-grid-column-span: 2;
  grid-column-end: 3;
  width: 100%;
  top: 0;
  left: 20px;
  -webkit-transform: translateY(-75%);
  transform: translateY(-75%);
}
#salaly .salaly_item_01 figure {
  text-align: right;
  position: relative;
  margin-bottom: 40px;
}
#salaly .salaly_item_01 figure img {
  width: 80%;
  height: auto;
  border-radius: 20px;
}
#salaly .salaly_item_01 .salaly_treatment {
  position: relative;
}
#salaly .salaly_item_01 .salaly_treatment table {
  position: relative;
  margin-inline: auto;
  padding: 20px 10px;
  text-align: right;
  width: 100%;
  max-width: 482px;
  margin-bottom: 20px;
}
#salaly .salaly_item_01 .salaly_treatment table::before,
#salaly .salaly_item_01 .salaly_treatment table::after {
  content: "";
  width: 15px;
  height: 100%;
  position: absolute;
}
#salaly .salaly_item_01 .salaly_treatment table::before {
  border-left: solid 1px;
  border-top: solid 1px;
  border-bottom: solid 1px;
  top: 0;
  left: 0;
}
#salaly .salaly_item_01 .salaly_treatment table::after {
  border-right: solid 1px;
  border-top: solid 1px;
  border-bottom: solid 1px;
  top: 0;
  right: 0;
}
#salaly .salaly_item_01 .salaly_treatment table tr:last-of-type td {
  padding-bottom: 0;
}
#salaly .salaly_item_01 .salaly_treatment table tr td {
  vertical-align: middle;
  padding-bottom: 10px;
  font-size: 14px;
}
#salaly .salaly_item_01 .salaly_treatment table tr td:nth-of-type(2) {
  padding: 0 10px;
}
#salaly .salaly_item_01 .salaly_treatment table tr td:last-of-type {
  color: var(--color-pink2);
}
#salaly .salaly_item_01 .salaly_treatment table tr span {
  font-size: 1.4em;
}
#salaly .salaly_item_01 .salaly_treatment .salaly_txt_01 {
  text-align: center;
  font-size: clamp(14px, 1.2vw, 16px);
  margin-bottom: clamp(40px, 1.2vw, 40px);
}
#salaly .salaly_item_01 .salaly_treatment .salaly_txt_01 span {
  color: var(--color-pink2);
  font-size: clamp(16px, 4vw, 18px);
}
#salaly .salaly_item_01 .salaly_treatment .salaly_txt_02 {
  text-align: left;
  font-size: clamp(14px, 4vw, 16px);
}
#salaly .salaly_item_01 .salaly_treatment .salaly_txt_02 span {
  color: var(--color-pink2);
  font-size: clamp(16px, 4vw, 18px);
}

#salaly .salaly_item_04 .salaly_image {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
#salaly .salaly_item_04 .salaly_image_box {
  flex: 1;
  background: var(--color-white1);
  border: 1px solid var(--color-blue1);
  border-radius: 20px;
  padding: 16px;
}
#salaly .salaly_item_04 .salaly_image_box p.time {
  font-size: clamp(18px, 4vw, 20px);
  letter-spacing: 0.01em;
  background: var(--bg-gradation2);
  border-radius: 40px;
  padding: 2px 10px;
  text-align: center;
  color: var(--color-white1);
  margin-bottom: 10px;
}
#salaly .salaly_item_04 .salaly_image_box p.amount {
  font-size: clamp(32px, 4vw, 44px);
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1;
}
#salaly .salaly_item_04 .salaly_image_box p.amount span {
  font-size: clamp(20px, 4vw, 24px);
}
#salaly .salaly_item_04 .salaly_txt_03 {
  text-align: center;
  font-size: clamp(14px, 1.2vw, 16px);
}
#salaly .bg_salaly {
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
#salaly .bg_salaly::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  background: url(../images/bg_salaly02.jpg) 50% 100% no-repeat;
  background-size: cover;
  z-index: -1;
}

@media (max-width: 768px) {
  #salaly .salaly_item_04 .salaly_image {
    flex-direction: column;
  }
}

@media (min-width: 600px) {
  #salaly .title {
    margin-bottom: 200px;
  }

    #salaly .salaly_item_01 .inner::before {
    width: 80%;
    height: 600px;
  }

    #salaly .salaly_item_01 h3 {
    font-size: 60px;
  }

  #salaly .salaly_item_01 figure img {
    width: 100%;
    max-width: 500px;
  }
    #salaly .salaly_item_01 .salaly_treatment table {
    padding: 20px;
  }

    #salaly .salaly_item_01 .salaly_treatment table tr td {
    font-size: 16px;
  }

    #salaly .salaly_item_01 .salaly_treatment table tr td:nth-of-type(2) {
    padding: 0 0 0 10px;
  }

    #salaly .salaly_item_01 .salaly_treatment table tr span {
    font-size: 28px;
  }
}

@media (min-width: 1025px) {
  #salaly .salaly_item_01 {
    margin-bottom: 60px;
  }
  #salaly .salaly_item_01 .inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    gap: 40px;
  }
  #salaly .salaly_item_01 .inner::before {
    left: -50%;
    width: 100%;
    height: 100%;
  }
  #salaly .salaly_item_01 h3 {
    font-size: 72px;
  }
  #salaly .bg_salaly {
    padding: 0;
    position: none;
    z-index: 0;
  }
  #salaly .bg_salaly::before {
    background: none;
  }
}

/*--------------------------------------
待遇
--------------------------------------*/
#treatment.js-bg-lazy {
  background-image: none !important;
}

#treatment {
  position: relative;
  width: 100%;
  background: url(../images/bg_treatment.jpg) 50% 50% no-repeat;
  background-size: cover;
}
#treatment .treatment_txt_01 {
  text-align: center;
  font-size: clamp(14px, 1.2vw, 16px);
  margin-bottom: clamp(40px, 1.2vw, 40px);
}
#treatment .treatment_txt_01 span {
  color: var(--color-pink2);
  font-size: clamp(16px, 1.2vw, 18px);
}
#treatment .treatment_txt_02 {
  text-align: center;
  font-size: clamp(14px, 1.2vw, 16px);
}
#treatment .treatment_txt_02 span {
  color: var(--color-pink2);
  font-size: clamp(16px, 1.2vw, 18px);
}
#treatment ul.treatment {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
#treatment ul.treatment li {
  background: var(--color-white1);
  border-radius: 10px;
  padding: 6px;
}
#treatment ul.treatment li p {
    position: relative;
    height: 100%;
    padding: 20px 4px;
    border: 1px solid var(--color-pink1);
    border-radius: 10px;
    font-size: clamp(14px, 1.2vw, 16px);
    line-height: 1.6;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#treatment ul.treatment li p:before,
#treatment ul.treatment li p:after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: url(../images/treatment_deco.png) top center / cover no-repeat;
}
#treatment ul.treatment li p:before {
    top: 4px;
    left: 4px;
}
#treatment ul.treatment li p:after {
    bottom: 4px;
    right: 4px;
    rotate: 180deg;
}
#treatment ul.treatment li:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
}

.salaly_item_02 {
  padding: 0 0 40px;
}
.salaly_item_02 .inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.salaly_item_02 section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  margin: 0 auto 40px;
  max-width: 500px;
}
.salaly_item_02 section.cat_02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.salaly_item_02 section.cat_03 {
  margin-bottom: 20px;
}
.salaly_item_02 section figure {
  position: relative;
}
.salaly_item_02 section figure img {
  width: 120px;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 10px 10px var(--color-blue2);
}
.salaly_item_02 section div h3 {
    font-size: clamp(18px, 4vw, 20px);
    line-height: 1;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    position: relative;
    padding-left: 36px;
}
.salaly_item_02 section div h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: url(../images/concept_tiara.svg) center / contain no-repeat;
}
.salaly_item_02 section div {
  width: 48%;
}
.salaly_item_02 section div p {
  font-size: clamp(14px, 1.2vw, 16px);
  letter-spacing: 0.01em;
}

#treatment ul.list_box {
  background: var(--color-white1);
  border: 1px solid var(--color-pink2);
  border-radius: 20px;
  padding: 20px;
  margin: 40px 0;
}
#treatment ul.list_box li {
  background: url(../images/icon_listmark.svg) left 2px / 12px 16px no-repeat;
  padding-left: 20px;
  line-height: 1.4;
}
#treatment ul.list_box li:nth-of-type(n + 2) {
    margin-top: 10px;
}
#treatment ul.list_box p {
    margin-top: 10px;
}


@media (min-width: 600px) {
  #treatment ul.treatment {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .salaly_item_02 section {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    gap: 40px;
  }
  .salaly_item_02 section.cat_03 {
    margin-bottom: 0;
  }
  .salaly_item_02 section figure img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }
  .salaly_item_02 section div {
    width: 100%;
    margin-bottom: 120px;
  }
}

@media (min-width: 1025px) {
  #treatment ul.treatment {
    grid-template-columns: repeat(3, 240px);
    -webkit-box-pack: center;
    justify-content: center;
  }
  #treatment .treatment_txt_01 {
    margin-bottom: 60px;
  }
  .salaly_item_02 {
    padding-bottom: 60px;
  }
  .salaly_item_02 .inner {
    -ms-grid-columns: 1fr 100px 1fr 100px 1fr;
    grid-template-columns: repeat(3, 1fr);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 80px;
    margin-top: 0;
  }
  .salaly_item_02 section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0;
    max-width: 100%;
  }
  .salaly_item_02 section.cat_02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .salaly_item_02 section div {
    margin-bottom: 0;
  }
}

/*--------------------------------------
Q&A
--------------------------------------*/
#question {
  position: relative;
  width: 100%;
  background: url(../images/bg_q&a.jpg) 50% 100% no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

#question .faq_list {
  margin: auto;
}
#question .faq_list dt {
  position: relative;
  padding: 10px 0 10px 0;
  cursor: pointer;
}
#question .faq_list dd {
  padding: 0 0 20px 0;
}
/* アコーディオンボタン装飾 */
#question .faq_list dt:before,
#question .faq_list dt:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 3px;
	background: var(--color-blue1);
  transition: all 0.4s ease-out;
}
#question .faq_list dt:before {
  top: 48.5%;
	transform: rotate(-90deg);
}
#question .faq_list dt.open:before {
  opacity: 0;
	transform: rotate(-360deg);
}
#question .faq_list h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
    -ms-flex-align: start;
      align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
#question .faq_list h3 span.qa_01,
#question .faq_list .answer p.answer_txt span.qa_01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  padding: 19px;
  background: var(--color-blue2);
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
  line-height: 1;
	font-family: "Sorts Mill Goudy", serif;
	font-weight: 400;
	font-style: normal;
}
#question .faq_list .answer p.answer_txt span.qa_01 {
  background: var(--color-pink4);
}
#question .faq_list h3 span.qa_02 {
  background: var(--color-blue2);
  border-radius: 10px;
  padding: 10px 40px 10px 10px;
  width: 100%;
}
#question .faq_list .answer p.answer_txt span.qa_02 {
  background: var(--color-blue2);
  border-radius: 10px;
  padding: 10px;
  width: 100%;
}
#question .faq_list .answer p.answer_txt span.qa_02 {
  background: var(--color-pink4);
}
#question .faq_list .answer {
  display: none;
}
#question .faq_list .answer p {
  text-align: justify;
}
  #question .faq_list p.answer_txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
      -ms-flex-align: center;
        align-items: flex-start;
    gap: 10px;
    font-size: clamp(14px, 2vw, 14px);
  }
@media (min-width: 600px) {
  #question .faq_list h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
      -ms-flex-align: center;
        align-items: center;
    gap: 10px;
    font-size: clamp(14px, 2vw, 14px);
  }
  #question .faq_list h3 span.qa_01,
  #question .faq_list .answer p.answer_txt span.qa_01 {
    width: 40px;
    height: 40px;
    font-size: 20px;
    padding: 12px;
  }
}

.tab_box_03.active {
  display: block;
  animation: tab_fade 0.8s ease-out forwards;
}
.tab_box_03 {
  display: none;
}

/*---------------------------
メッセージ
---------------------------*/
.bg_message {
	position: relative;
  width: 100%;
  background: url(../images/bg_recruit_pc.png) 50% 100% no-repeat;
  background-size: cover;
}
#section_message .frame_greeting_outer {
	border: 1px solid var(--color-white1);
	padding: 10px;
  border-radius: 20px;
}
#section_message .frame_greeting {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 40px;
	position: relative;
}
#section_message .frame_greeting_outer .title_01 {
    background: url(../images/deco_line.svg) center bottom / 200px 20px no-repeat;
    font-size: clamp(15px, 3vw, 20px);
    padding: 0 0 clamp(25px, 4vw, 30px);
    margin-bottom: clamp(15px, 4vw, 20px);
    text-align: center;
}
#section_message .txt_box p {
  font-size: clamp(14px, 1.2vw, 16px);
}
#section_message .txt_box p span {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--color-pink2);
}

@media (max-width: 768px) {
  .bg_message {
    position: relative;
    width: 100%;
    background: url(../images/bg_recruit_sp.png) 50% 100% no-repeat;
    background-size: cover;
  }
  #section_message .frame_greeting {
    padding: 40px 20px;
  }
}

/*---------------------------
区切り画像
---------------------------*/
#section_divider{
	  padding: 0;
    display: flex;
    justify-content: space-between;
}
#section_divider .divider_visual01 {
    width: 60%;
    margin: 0 -10% 0 0;
    z-index: 1;
}
#section_divider .divider_visual02 {
    width: 55%;
    padding-top: clamp(70px, 20vw, 240px);
}
#section_divider .divider_img01{
	display: block;
	width: 100%;
    height: auto;
	border-radius: 0 20px 20px 0;
	margin-bottom: clamp(60px, 16vw, 160px);
}
#section_divider .divider_img02{
	display: block;
	width: 100%;
    height: auto;
	border-radius: 20px 0 0 20px;
}

/*--------------------------------------
募集要項
--------------------------------------*/
#recruit p {
  margin-bottom: 30px;
  text-align: center;
}
#recruit tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-bottom: 1px solid #c8c8c8;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
#recruit th {
  width: 100%;
  color: var(--color-blue1);
  font-size: 18px;
}
#recruit td {
  width: 100%;
}
#recruit td span {
  color: var(--color-pink2);
  font-size: 16px;
}
#recruit td span.txt_black {
  color: var(--color-black1);
  font-size: 18px;
}
#recruit td span.check_01 {
  color: var(--color-pink2);
  font-size: 22px;
  line-height: 1.2;
}
#recruit td span.check_02 {
  font-size: 22px;
  line-height: 1.2;
}
#recruit .btn_box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: 20px 0 auto;
}

@media (min-width: 600px) {
  #recruit p {
    margin-bottom: 60px;
  }
  #recruit tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
  #recruit th {
    width: 20%;
  }
  #recruit td {
    width: 80%;
  }
  #recruit .btn_box {
    gap: 10px;
    max-width: 800px;
  }
}

/*--------------------------------------
WEBエントリー
--------------------------------------*/
#entry {
  background: var(--color-pink4);
}

#entry input[type=text],
#entry input[type=tel],
#entry input[type=email],
#entry p {
  background: #fff;
  width: 100%;
}

#entry input[type=radio] {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

#entry .inputs {
  margin-bottom: 20px;
}

#entry .inputs:last-child {
  margin-bottom: 0;
}

#entry .inputs .form_label {
  margin-bottom: 5px;
  display: block;
}

#entry .inputs input,
#entry .inputs p {
  padding: 10px;
  border-radius: 10px;
}

#entry .inputs .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#entry .inputs .name input,
#entry .inputs .name p {
  width: 48%;
  border-radius: 10px;
}

#entry .inputs .occ,
#entry .inputs .exp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#entry .inputs .occ div,
#entry .inputs .exp div {
  width: 150px;
}

#entry .inputs .occ label,
#entry .inputs .exp label {
  position: relative;
  padding-left: 50px;
  font-size: 12px;
}

#entry .inputs .occ label:before,
#entry .inputs .occ label:after,
#entry .inputs .exp label:before,
#entry .inputs .exp label:after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

#entry .inputs .occ label:before,
#entry .inputs .exp label:before {
  background-color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  left: 5px;
}

#entry .inputs .occ label:after,
#entry .inputs .exp label:after {
  background-color: #F9A7B8;
  border-radius: 50%;
  opacity: 0;
  width: 25px;
  height: 25px;
  left: 7.5px;
}

#entry .inputs .occ input:checked+label::after,
#entry .inputs .exp input:checked+label::after {
  opacity: 1;
}

#entry .inputs .other {
  margin-bottom: 60px;
}

#entry .inputs .other textarea {
  width: 100%;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}

#entry .form_box p {
  font-size: 16px;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
}

#entry .caution {
  background: var(--color-white1);
  border: solid 1px var(--color-pink2);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}
#entry .caution.err + .reset {
  margin-bottom: 20px;
}
#entry .caution p {
  background: none;
}
#entry .caution .atten_01 {
    color: var(--color-pink2);
}
@media (min-width: 600px) {
  #entry .caution br{
    display: none;
  }
  #entry {
    padding: 60px 20px;
  }
  #entry .inputs input,
  #entry .inputs p {
    padding: 20px;
  }
  #entry .inputs .other textarea {
    padding: 20px;
  }
}

::-webkit-input-placeholder {
  color: #AAAAAA;
  font-size: 12px;
}

::-moz-placeholder {
  color: #AAAAAA;
  font-size: 12px;
}

:-ms-input-placeholder {
  color: #AAAAAA;
  font-size: 12px;
}

::-ms-input-placeholder {
  color: #AAAAAA;
  font-size: 12px;
}

::placeholder {
  color: #AAAAAA;
  font-size: 12px;
}

/*--------------------------------------
オフィシャルバナー
--------------------------------------*/
#official {
  text-align: center;
  background: var(--color-pink4);
  padding: 20px 20px 80px;
}
#official img {
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 3px;
  box-shadow: rgba(0, 0, 0, 0.15) 3px 3px 3px;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: auto;
}

/*--------------------------------------
フッター
--------------------------------------*/
footer {
  background: var(--color-white1);
  color: var(--color-black1);
  padding: 40px 0 80px;
  text-align: center;
}

footer p {
  font-size: 12px;
	font-family: Times New Roman, '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Noto Serif JP', 'Hiragino Mincho ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
}

/*fotter 追尾*/
#bottom_nav{
	position: fixed;
	right: 0;
	left: 0;
	bottom: 10px;
	width: 100%;
	z-index: 99;
}
#bottom_nav ul {
	display: flex;
    flex-wrap: nowrap;
	justify-content: center;
	align-content: center;
	width: 96%;
	margin: 0 auto;
}
#bottom_nav li {
	width: calc(100% / 3);
	margin-right: 4px;
	border-radius: 40px;
}
#bottom_nav li:last-child {
	margin-right: 0;
}
#bottom_nav li a {
	width: 100%;
	height: 100%;
}
#bottom_nav li .b_n_outer p {
	color: var(--color-white1);
	font-size: 14px;
	letter-spacing: 1px;
    line-height: 0.8rem;
    text-align: center;
    padding: 16px 0 14px;
	border-radius: 10px;
}
#bottom_nav li.b_n_line .b_n_outer p {
	background: var(--bg-gradation2);
}
#bottom_nav li.b_n_tel .b_n_outer p {
	background: var(--bg-gradation2);
}
#bottom_nav li.b_n_reserve .b_n_outer p {
	background: var(--bg-gradation2);
}
#bottom_nav i {
	font-size: 12px;
	color: var(--color-gold1);
	margin-right: 4px;
}

@media screen and (min-width: 769px) {
	#bottom_nav {
		display: none;
	}
  footer {
    padding: 40px 0;
  }
}

/*--------------------------------------
共通のボタン
--------------------------------------*/
.menu_item.offisial_btn a {
  width: 100%;
  max-width: 300px;
  background: var(--bg-gradation1);
  border: 1px solid var(--color-white1);
  color: var(--color-white1);
  margin: 20px auto 0;
  text-align: center;
  border-radius: 40px;
  padding: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.menu_item.offisial_btn a:hover {
  color: var(--color-pink1);
  background: var(--color-white1);
  border: 1px solid var(--color-pink1);
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 300px;
  padding: 10px 25px;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  position: relative;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.btn::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 40px 50px;
}

.btn span {
  position: absolute;
  bottom: 12px;
  right: 20px;
  display: inline-block;
}

.btn span::before {
  content: "";
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  margin-top: -12px;
}

.btn_01 {
  border: 1px solid #FFD0d9;
  color: #FFD0d9;
}

.btn_01::before {
  border-color: transparent transparent #FFD0d9 transparent;
}

.btn_01:hover {
  background: #FFD0d9;
  border: 1px solid #FFD0d9;
  color: #fff;
}

.btn_02 {
  border: 1px solid #FDD3F7;
  color: #FDD3F7;
}

.btn_02::before {
  border-color: transparent transparent #FDD3F7 transparent;
}

.btn_02:hover {
  background: #FDD3F7;
  border: 1px solid #FDD3F7;
  color: #fff;
}

.btn_03 {
  border: 1px solid #CDEDCD;
  color: #CDEDCD;
}

.btn_03::before {
  border-color: transparent transparent #CDEDCD transparent;
}

.btn_03:hover {
  background: #CDEDCD;
  border: 1px solid #CDEDCD;
  color: #fff;
}

.btn_04 {
  border: 1px solid #D0E6FF;
  color: #D0E6FF;
}

.btn_04::before {
  border-color: transparent transparent #D0E6FF transparent;
}

.btn_04:hover {
  background: #D0E6FF;
  border: 1px solid #D0E6FF;
  color: #fff;
}

.submit {
  background: var(--bg-gradation1);
  border: 1px solid var(--color-white1);
  border-radius: 40px;
  color: var(--color-white1);
  width: 100%;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.submit:hover {
  background: var(--color-white1);
  border: 1px solid var(--color-pink1);
  color: var(--color-pink1);
}

.reset {
  background: #aaa;
  color: #fff;
  display: block;
  font-size: 12px;
  padding: 5px 10px;
  margin: auto;
  border-radius: 40px;
}

/*--------------------------------------
600px以上
--------------------------------------*/
@media (min-width: 600px) {
  body.open {
    overflow: auto;
  }
  .menu_box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-top: 0;
    padding: 200px 50px;
    overflow: auto;
  }
  .menu_box .menu_item:first-of-type {
    font-size: 22px;
  }
  .menu_box .menu_item {
    width: 50%;
  }
  .menu_box .menu_item:nth-of-type(2) {
    width: 100%;
  }
  .btn {
    max-width: 400px;
  }
}

/*--------------------------------------
1025px以上
--------------------------------------*/
@media (min-width: 1025px) {
  .pc_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .menu_box {
    padding: 200px 20%;
  }
}

/*--------------------------------------
1500px以上
--------------------------------------*/
@media (min-width: 1500px) {
  .menu_box {
    padding: 200px 30%;
  }
}