@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Italiana&display=swap');

/*--------------------------------------
リセット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 {display: block;}
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;}
input[type="checkbox"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
[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;}

/*--------------------------------------
サイト共通定義
--------------------------------------*/
:root{
  --color-black1: #686972;
  --color-gold1: #957344;
  --color-gold2: #bd9f76;
  --color-pink1: #ea89ac;
  --color-purple1: #7d71ac;
  --color-purple2: #9e9be1;

  --bg-pink1: #f4f3fd;
  --bg-pink2: #f0ebfd;
  --bg-purple1: #e7e9fe;

  --border-pink1: #f6d5e1;
  --border-purple1: #cdc7e4;

  --btn-purple1: #9e9be1;
  --btn-violet1: #d395d6;
  --btn-green1: #abd28e;
  --btn-orange1: #f1c587;
  --btn-gold1: #d0af87;
}
html, body {
    overflow-x: hidden !important;
}
body {
  line-height: 1.8;
  margin: 0 auto;
  min-height: 800px;
  min-width: 320px;
  width: 100%;
  color: var(--color-black1);
  background: var(--bg-pink1);
  background: url(../images/bg_body_sp.jpg) center bottom / contain no-repeat var(--bg-pink1);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  font-family: Garamond , "Times New Roman", "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
  font-weight: 500;
  font-size: 14px;
  font-style: normal;
  position: relative;
  letter-spacing: 1px;
}
@media (min-width: 600px) {
  body {
      background: url(../images/bg_body_pc.jpg) center bottom / contain no-repeat var(--bg-pink1);
    }
}
body.open {
  overflow: hidden;
}
body::-webkit-scrollbar {
  width: 16px;
}
body::-webkit-scrollbar-track {
  background-color: #eee;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--color-purple1);
  border-radius: 100px;
}
::-moz-selection {
  background: var(--color-purple1);
  color: #fff;
}
::selection {
  background: var(--color-purple1);
  color: #fff;
}
ul::-webkit-scrollbar {
  display: none;
}
.wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
.inner {
  max-width: 1025px;
  margin: auto;
}
.spacing {
  padding-left: 20px;
  padding-right: 20px;
}
.mb_20 {margin-bottom: 20px;}
.mb_40 {margin-bottom: 40px;}
.atten_01 {color: var(--color-pink1);}
.required {
  color: #fff;
  background: var(--color-pink1);
  font-size: 10px;
  padding: 2px 4px;
  margin-left: 6px;
  vertical-align: text-bottom;
}
.txt_black {color: var(--color-black1);}
.txt_gold {color: var(--color-gold1);font-size: 1.1em;}
.txt_pink {color: var(--color-pink1);}
.txt_purple {color: var(--color-purple1);}
.sp {display: block;}
.pc {display: none;}
@media (min-width: 600px) {
  .sp {display: none;}
  .pc {display: block;}
}
.deco_line{
  display: block;
  margin: 0 auto;
  max-width: 140px;
  width: 140px;
  height: 20px;
}

/*アンカーリンクのスクロール時に、見出しがヘッダーと被らないようにする*/
#about,
#salary_top,
#workflow,
#entryflow,
#treatment,
#question,
#entry {
    scroll-margin-top: 3rem;
}

/*--------------------------------------
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;
}
.js-active .js-fade-left:nth-child(9) {
  -webkit-transition-delay: 1.6s;
  transition-delay: 1.6s;
}
.js-active .js-fade-left:nth-child(10) {
  -webkit-transition-delay: 1.8s;
  transition-delay: 1.8s;
}

.js-active .js-fade-left:nth-child(11) {
  -webkit-transition-delay: 2s;
  transition-delay: 2s;
}
.js-active .js-fade-left:nth-child(12) {
  -webkit-transition-delay: 2.2s;
  transition-delay: 2.2s;
}
.js-active .js-fade-left:nth-child(13) {
  -webkit-transition-delay: 2.4s;
  transition-delay: 2.4s;
}
.js-active .js-fade-left:nth-child(14) {
  -webkit-transition-delay: 2.6s;
  transition-delay: 2.6s;
}
.js-active .js-fade-left:nth-child(15) {
  -webkit-transition-delay: 2.8s;
  transition-delay: 2.8s;
}
.js-active .js-fade-left:nth-child(16) {
  -webkit-transition-delay: 3s;
  transition-delay: 3s;
}

/* 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: var(--bg-pink1);
  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);
}

/*--------------------------------------
ヘッダー
--------------------------------------*/
header {
  background: #FFF;
  position: fixed;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}
header .inner {
  width: 100%;
  max-width: 1400px;
  height: 60px;
  padding: 0 10px;
  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: center;
  gap: 30px;
}
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: 20px;
  text-align: center;
  line-height: normal;
/*  text-transform: uppercase;*/
  font-family: "Italiana", serif;
  font-weight: 400;
  font-style: normal;
}
.pc_nav li a {
  position: relative;
}
.pc_nav li a span{
  font-size: 10px;
}
.pc_nav li::after {
  padding-left: 10px;
}
.pc_nav li:last-of-type {
  padding-right: 0;
}
.pc_nav li:last-of-type::after {
  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: #707070;
  font-size: 18px;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  text-align: left;
}
.menu_box .menu_item:first-of-type img {
  width: 120px;
  height: auto;
}
.menu_box .menu_item a {
  border-bottom: 1px solid var(--border-purple1);
  line-height: 1.2;
  margin: 10px;
  padding: 10px;
  display: block;
  position: relative;
  font-size: 16px;
  font-family: "Italiana", serif;
  font-weight: 400;
  font-style: normal;
}
.menu_box .menu_item a span {
  font-size: 12px;
  text-transform: none;
}
.menu_box .menu_item:first-of-type {
  width: 100%;
  text-align: center;
}
.menu_box .menu_item:first-of-type a {
  border-bottom: none;
}
#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-purple2);
}
#menu_toggle:checked~.menu_btn>span::after {
  top: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background: var(--color-purple2);
}
#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: 20px;
  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-purple2);
}
.menu_btn span::before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--color-purple2);
  content: "";
  top: -8px;
  right: 0;
  -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-purple2);
  content: "";
  top: 8px;
  right: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
}
article {
  padding: 40px 0;
}

/*--------------------------------------
メインビジュアル
--------------------------------------*/
.mainvisual {
  -webkit-animation: anime-fade 3s forwards;
  animation: anime-fade 3s forwards;
  opacity: 0;
}
.mainvisual img {
  display: block;
  margin: 60px auto 0;
  width: 100%;
  height: 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_greetings.jpg) center top / cover no-repeat;
}
@media (min-width: 600px) {
  #greeting .pgreeting_area{
    max-width: 700px;
    margin: 0 auto;
  }
  #greeting p {
    line-height: 2.4;
  }
}

/*--------------------------------------
Tiaraについて
--------------------------------------*/
#about {
  background: url(../images/bg_about_sp.jpg) center bottom / contain no-repeat var(--bg-pink1);
}
#about .title{
  color: var(--color-purple1);
}
#about .title span {
  text-transform: none;
}
#about .point_area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 0;
}
#about .point_box{
  padding: 0 20px 40px;
  background:
    linear-gradient(45deg,  transparent 0, rgb(255 255 255 / 90%) 0),
    linear-gradient(135deg, transparent 20px, rgb(255 255 255 / 90%) 20px),
    linear-gradient(225deg, transparent 0, rgb(255 255 255 / 90%) 0),
    linear-gradient(315deg, transparent 20px, rgb(255 255 255 / 90%) 20px);
  background-position: bottom left, top left, top right, bottom right;
  background-size: 50% 50%;
  background-repeat: no-repeat;
}
#about .point_box .point_title_box {
  margin-bottom: 20px;
}
#about .point_box .point_title_box {
  color: var(--color-purple1);
  position: relative;
}
#about .point_box .point_title::before {
  content: "";
  display: block;
  width: 140px;
  height: 42px;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: center top / 140px 42px no-repeat;
}
#about .point_box:nth-of-type(1) .point_title::before {
  background-image: url(../images/icon_point_01.svg);
}
#about .point_box:nth-of-type(2) .point_title::before {
  background-image: url(../images/icon_point_02.svg);
}
#about .point_box:nth-of-type(3) .point_title::before {
  background-image: url(../images/icon_point_03.svg);
}
#about .point_box:nth-of-type(4) .point_title::before {
  background-image: url(../images/icon_point_04.svg);
}
#about .point_box .point_title_box .point_title {
  padding: 50px 0 10px;
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
}
@media (min-width: 600px) {
  #about {
    background: url(../images/bg_about_pc.jpg) center bottom / cover no-repeat var(--bg-pink1);
  }
  #about .point_area {
    grid-template-columns: 1fr 1fr;
  }
  #about .point_box .point_title_box .point_title {
    padding-top: 40px;
    font-size: 22px;
  }
}

/*--------------------------------------
お給料バナー
--------------------------------------*/
#salary_top {
  padding-bottom: 0;
}
#salary_top img{
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 580px;
  height: auto;
}
/*@media (min-width: 600px) {
  article#salary_top {
    padding: 100px 0 0;
  }
}*/

/*--------------------------------------
お給料例
--------------------------------------*/
#salary .salary_area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 40px auto 0;
}
#salary .salary_box {
  background: #fff;
  border: solid 1px var(--color-purple2);
  box-shadow: 3px 3px var(--color-purple2);
  padding: 20px;
}
#salary .salary_box .salary_title {
  font-size: 16px;
  text-align: center;
  line-height: normal;
}
#salary .salary_box .salary_title span{
  font-size: .9em;
  color: var(--color-purple2);
}
#salary .salary_box .salary_title::before {
  content: "01";
  font-family: "Italiana", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  color: var(--color-purple2);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}
#salary .salary_box:nth-of-type(2) .salary_title::before {
  content: "02";
}
#salary .salary_box:nth-of-type(3) .salary_title::before {
  content: "03";
}
#salary .salary_box figure {
  margin: 20px 0 20px;
  border-bottom: 4px solid var(--color-purple2);
}
#salary .salary_box figure img {
  width: 100%;
  height: auto;
}
#salary .salary_box .salary_des_wrap{
  width: 90%;
  margin: 0 auto;
}
#salary .salary_box .salary_des_wrap li.txt_r{
  justify-content: flex-end;
}
#salary .salary_box ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: normal;
  margin-bottom: 10px;
}
#salary .salary_box ul li .salary_time{
  font-size: 20px;
  width: 42%;
}
#salary .salary_box ul li .salary_time p{
  text-align: center;
}
#salary .salary_box ul li .salary_time p:nth-of-type(2){
  font-size: 12px;
  color: var(--color-purple2);
  background: var(--bg-pink1);
  padding: 2px 0;
  letter-spacing: .5px;
}
#salary .salary_box ul li .salary_time p:nth-of-type(2) span{
  font-size: 9px;
}
#salary .salary_box ul li .salary_amount{
  font-size: 40px;
}
#salary .salary_box ul li .salary_amount span{
  font-size: 24px;
}
#salary .salary_box .salary_exp {
  color: var(--color-purple2);
  background: var(--bg-pink1);
  padding: 12px 10px 20px;
  line-height: 1.2;
  text-align: center;
  margin-top: 20px;
  clip-path: polygon(8% 0, 100% 0, 100% 80%, 92% 100%, 0 100%, 0 20%);
}
#salary .salary_box .salary_exp p:nth-of-type(1) {
  font-size: 30px;
}
#salary .salary_box .salary_exp p:nth-of-type(1) span {
  font-size: 16px;
}
#salary .salary_box .salary_exp p:nth-of-type(2) {
  font-size: 16px;
  display: inline-block;
  color: #fff;
  background: var(--color-purple2);
  padding: 6px 16px;
}
@media (min-width: 600px) {
  #salary .salary_box .salary_title {
    background-size: 104px 49px;
    font-size: 18px;
  }
}
@media (min-width: 745px) {
  #salary .salary_area {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1080px) {
  #salary .salary_area {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/*--------------------------------------
お仕事の流れ
--------------------------------------*/
#workflow {
  background: var(--bg-pink2);
}
#workflow .workflow_area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  margin-top: 60px;
}
#workflow .workflow_box {
  border-bottom: 1px solid var(--color-black1);
}
#workflow .workflow_box::after{
  content: "";
  display: inline-block;
  max-width: 20px;
  width: 20px;
  height: 20px;
  background: url(../images/icon_arrow_purple1.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;
}
#workflow .workflow_box figure::before {
  content: "Step 01";
  font-family: "Italiana", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  color: var(--color-purple1);
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 1;
}
#workflow .workflow_box:nth-of-type(2) figure::before {
  content: "Step 02";
}
#workflow .workflow_box:nth-of-type(3) figure::before {
  content: "Step 03";
}
#workflow .workflow_box:nth-of-type(4) figure::before {
  content: "Step 04";
}
#workflow .workflow_box:nth-of-type(5) figure::before {
  content: "Step 05";
}
#workflow .workflow_box figure img {
  width: 100%;
  height: auto;
  border-bottom: 4px solid var(--color-purple2);
}
#workflow .workflow_box .txt_box{
  margin: 20px 0;
}
#workflow .workflow_box .txt_box img{
  margin-bottom: 10px;
}
#workflow .workflow_box .txt_box p{
  width: 90%;
    display: block;
    margin: 0 auto;
}
#workflow .workflow_box .workflow_title {
  color: var(--color-black1);
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 10px;
  position: relative;
}
@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: 80px 0 60px;
    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;
  }
}

/*--------------------------------------
面接から入店まで
--------------------------------------*/
#entryflow {
  background: var(--bg-purple1);
}
#entryflow .entryflow_area {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  margin-top: 60px;
}
#entryflow .entryflow_box {
  border-bottom: 1px solid var(--color-black1);
}
#entryflow .entryflow_box::after{
  content: "";
  display: inline-block;
  max-width: 20px;
  width: 20px;
  height: 20px;
  background: url(../images/icon_arrow_purple2.svg) center / contain no-repeat;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
#entryflow .entryflow_box:nth-of-type(3)::after {
  content: none;
}
#entryflow .entryflow_box figure {
    position: relative;
}
#entryflow .entryflow_box figure::before {
  content: "Step 01";
  font-family: "Italiana", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  color: var(--color-purple1);
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 1;
}
#entryflow .entryflow_box:nth-of-type(2) figure::before {
  content: "Step 02";
}
#entryflow .entryflow_box:nth-of-type(3) figure::before {
  content: "Step 03";
}
#entryflow .entryflow_box figure img {
  width: 100%;
  height: auto;
  border-bottom: 4px solid var(--color-purple2);
}
#entryflow .entryflow_box .txt_box{
  margin: 20px 0;
}
#entryflow .entryflow_box .txt_box img{
  margin-bottom: 10px;
}
#entryflow .entryflow_box .txt_box p{
  width: 90%;
    display: block;
    margin: 0 auto;
}
#entryflow .entryflow_box .entryflow_title {
  color: var(--color-black1);
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 10px;
  position: relative;
}
@media (min-width: 600px) {
  #entryflow .entryflow_area {
    gap: 0;
    margin: 0 auto;
  }
  #entryflow .entryflow_box {
    padding: 50px 20px 20px;
    background-size: 80px 27px;
    background-position: center -1px;
  }
  #entryflow .entryflow_box::before {
    width: 130px;
    height: 68px;
    top: -70px;
    background-size: 130px 68px;
  }
  #entryflow .entryflow_box .entryflow_title {
    font-size: 22px;
    line-height: 1.4;
    padding-bottom: 0;
    margin: 0 0 10px;
  }
}
@media (min-width: 768px) {
  #entryflow .entryflow_box {
    padding: 80px 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  #entryflow .entryflow_box:first-of-type{
    padding: 60px 0;
  }
  #entryflow .entryflow_box:nth-of-type(even) figure {
    order: 2;
  }

  #entryflow .entryflow_box:nth-of-type(even) .txt_box {
    order: 1;
  }

}

/*--------------------------------------
エステ・接客の研修について
--------------------------------------*/
#training{
  padding-bottom: 0;
}
#training .training_area > .lead_box {
  margin-top: 30vw;
}
#training .lead_box {
  color: var(--color-purple1);
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 30px;
}
#training .lead_box span {
  color: var(--color-gold2);
  position: relative;
  display: inline-block; /* インラインブロックにすることで余白が調整しやすくなります */
}
#training .lead_box span::before,
#training .lead_box span::after {
  content: "";
  display: block;
  width: 30px;
  height: 50px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
#training .lead_box span::before {
  left: -40px; /* 必要に応じて調整 */
  top: 50%; /* 中央揃え */
  transform: translateY(-50%);
  background-image: url(../images/deco_subtitle_l.svg);
}
#training .lead_box span::after {
  right: -40px; /* 必要に応じて調整 */
  top: 50%; /* 中央揃え */
  transform: translateY(-50%);
  background-image: url(../images/deco_subtitle_r.svg);
}
#training .list_box {
  color: var(--color-purple1);
  background: #fff;
  border-bottom: 4px solid var(--color-purple2);
  padding: 20px;
  margin: 30px 0;
}
#training .list_box li {
  background: url(../images/icon_listmark.svg) left 2px / 12px 16px no-repeat;
  padding-left: 22px;
  line-height: 1.4;
}
#training .list_box li:nth-of-type(n + 2) {
  margin-top: 10px;
}
#training .training_txt {
  background-image : linear-gradient(to right, var(--color-black1) 1.5px, transparent 1.5px);
  background-size: 10px 1.5px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
#training .training_movie .lead_box {
  font-size: 14.5px;
  line-height: 1.6;
  letter-spacing: 0;
}
#training .training_movie figure {
  margin-bottom: 30px;
  clip-path: polygon(5% 0, 100% 0, 100% 90%, 95% 100%, 0 100%, 0 10%);
}
#training .training_movie figure img {
  width: 100%;
  height: auto;
}
@media (min-width: 600px) {
  #training .training_area > .lead_box {
    margin-top: 0;
  }
  #training .training_area {
    max-width: 700px;
    margin: 0 auto;
  }
  #training .lead_box {
    font-size: 22px;
  }
  #training .training_movie .lead_box {
    font-size: 18px;
    letter-spacing: 1px;
  }
}

/*--------------------------------------
待遇
--------------------------------------*/
#treatment .lead_box {
  color: var(--color-purple1);
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 40px;
}
#treatment .lead_box {
  color: var(--color-purple1);
  text-align: center;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 30px;
}
#treatment .lead_box span {
  color: var(--color-gold2);
  position: relative;
  display: inline-block; /* インラインブロックにすることで余白が調整しやすくなります */
}
#treatment .lead_box span::before,
#treatment .lead_box span::after {
  content: "";
  display: block;
  width: 30px;
  height: 50px;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
}
#treatment .lead_box span::before {
  left: -40px; /* 必要に応じて調整 */
  top: 50%; /* 中央揃え */
  transform: translateY(-50%);
  background-image: url(../images/deco_subtitle_l.svg);
}
#treatment .lead_box span::after {
  right: -40px; /* 必要に応じて調整 */
  top: 50%; /* 中央揃え */
  transform: translateY(-50%);
  background-image: url(../images/deco_subtitle_r.svg);
}
#treatment .treatment_list.icon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
#treatment .treatment_list.icon li {
  background: var(--bg-pink2);
  text-align: center;
  padding: 8px;
  clip-path: polygon(16% 0, 100% 0, 100% 88%, 88% 100%, 0 100%, 0 16%);
}
#treatment .treatment_list.icon li figure img {
  max-width: 170px;
  width: 100%;
  height: auto;
}
#treatment .treatment_list.txt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 30px;
}
#treatment .treatment_list.txt li {
  color: var(--color-purple1);
  background: #fff;
  border-bottom: solid 2px var(--color-purple2);
  text-align: center;
  padding: 10px 5px;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}
#treatment .list_box {
  margin: 30px 0;
}
#treatment .list_box li {
  background: url(../images/icon_listmark.svg) left 2px / 12px 16px no-repeat;
  padding-left: 22px;
  line-height: 1.4;
}
#treatment .list_box li:nth-of-type(n + 2) {
  margin-top: 10px;
}
#treatment .recommendation_area{
  margin-top: 60px;
}
@media (min-width: 600px) {
  #treatment .treatment_area {
    max-width: 700px;
    margin: 0 auto;
  }
  #treatment .lead_box {
    font-size: 22px;
    line-height: 1.4;
  }
  #treatment .treatment_list.icon {
    gap: 20px;
  }
  #treatment .treatment_list.txt {
    gap: 20px;
    margin-top: 40px;
  }
  #treatment .treatment_list.txt li {
    font-size: 18px;
    padding: 15px 10px;
  }
}

/*--------------------------------------
募集要項
--------------------------------------*/
#recruit {
  padding-top: 0;
  padding-bottom: 0;
}
#recruit table {
  width: 100%;
}
#recruit th {
  color: var(--color-purple1);
  font-weight: 500;
}
#recruit tr {
  display: flex;
  flex-direction: column;  
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e8d7dc;
}
#recruit tr:last-of-type {
  margin-bottom: 0;
}
#recruit .btn_box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 20px 0 10px;
}
@media (min-width: 600px) {
  #recruit .recruit_area {
    max-width: 700px;
    margin: 0 auto;
  }
  #recruit .btn_box {
    grid-template-columns: 1fr 1fr;
  }
  #recruit tr {
    flex-direction: row;  
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  #recruit th {
    width: 20%;
  }
  #recruit td {
    width: 80%;
  }
}

/*--------------------------------------
応募フォーム
--------------------------------------*/
#entry{
  padding-bottom: 0;
}
#entry .entry_area {
  max-width: 700px;
  margin: 0 auto;
}
#entry input[type=text],
#entry input[type=tel],
#entry input[type=email],
#entry p {
  background: #fff;
  border: solid 1px var(--border-purple1);
  width: 100%;
  font-size: 16px;
}
#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 input[type=checkbox] {
  cursor: pointer;
  padding-left: 25px !important;
  margin-bottom: 5px;
  vertical-align: middle;
  position: relative;
  min-height: 0 !important;
}
#entry input[type="checkbox"]::before,
#entry input[type="checkbox"]::after {
  content: "";
  display: block; 
  position: absolute;
}
#entry input[type="checkbox"]::before {
  background-color: #fff;
  border: 1px solid var(--border-purple1);
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
#entry input[type="checkbox"]::after {
  border-bottom: 3px solid var(--color-purple1);
  border-left: 3px solid var(--color-purple1);
  opacity: 0;
  height: 10px;
  width: 20px;
  transform: rotate(-45deg);
  top: 0;
  left: 8px;
}
#entry input[type="checkbox"]:checked::after {
  opacity: 1;
}
#entry .inputs {
  margin-bottom: 20px;
}
#entry .inputs:last-child {
  margin-bottom: 0;
}
#entry .inputs .form_label {
  margin-bottom: 5px;
  display: block;
  color: var(--color-purple1);
}
#entry .inputs input,
#entry .inputs p {
  padding: 10px;
  min-height: 50px;
}
#entry .inputs .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#entry .age input,
#entry .station input {
  width: 100px;
  margin-right: 10px;
}
#entry .inputs .occ,
#entry .inputs .exp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
#entry .inputs .occ div,
#entry .inputs .exp div {
  width: 80px;
}
#entry .inputs .occ label,
#entry .inputs .exp label {
  position: relative;
  padding-left: 38px;
}
#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: solid 1px var(--border-purple1);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  left: 5px;
}
#entry .inputs .occ label:after,
#entry .inputs .exp label:after {
  background-color: var(--color-purple1);
  border-radius: 50%;
  opacity: 0;
  width: 14px;
  height: 14px;
  left: 9px;
}
#entry .inputs .occ input:checked+label::after,
#entry .inputs .exp input:checked+label::after {
  opacity: 1;
}
#entry .inputs .exp_text {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  margin: 10px 0;
}
#entry .inputs .check {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 15px;
}
#entry .inputs .check label {
  cursor: pointer;
}
#entry .inputs .other textarea {
  width: 100%;
  background: #fff;
  border: solid 1px var(--border-purple1);
  padding: 10px;
}
#entry .form_box p {
  padding: 20px;
  text-align: center;
}
#entry .form_btn {
  text-align: center;
  margin-top: 30px;
}
#entry .caution p {
  background: var(--bg-pink2);
  padding: 20px;
  margin-bottom: 20px;
  font-size: 16px;
}
#entry .caution.err + .reset {
  margin-bottom: 20px;
}
#entry .caution .atten_01 {
    color: var(--color-purple1);
}
@media (min-width: 600px) {
  #entry .inputs {
    margin-bottom: 30px;
  }
  #entry .inputs .check {
    grid-template-columns: repeat(3, 1fr);
  }
  /*#entry .caution br{
    display: none;
  }*/
  #entry .form_btn {
    margin-top: 40px;
  }
}

::-webkit-input-placeholder {
  color: #c8c8d4;
  font-size: 14px;
}
::-moz-placeholder {
  color: #c8c8d4;
  font-size: 14px;
}
:-ms-input-placeholder {
  color: #c8c8d4;
  font-size: 14px;
}
::-ms-input-placeholder {
  color: #c8c8d4;
  font-size: 14px;
}
::placeholder {
  color: #c8c8d4;
  font-size: 14px;
}

/*--------------------------------------
よくある質問
--------------------------------------*/
#question ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
}
#question ul li:last-child{
  margin-bottom: 0!important;
}
#question ul li:nth-of-type(odd) {
  margin-bottom: 10px;
}
#question ul li:nth-of-type(odd) span {
  background: #fff;
  font-size: 16px;
  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;
  margin-right: 10px;
  padding: 10px;
  width: 40px;
  height: 40px;
}
#question ul li:nth-of-type(odd) p {
  background: #fff;
  padding: 10px;
  width: 100%;
}
#question ul li:nth-of-type(even) {
  margin-bottom: 30px;
}
#question ul li:nth-of-type(even) span {
  background: #e9eaff;
  font-size: 16px;
  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;
  margin-right: 10px;
  padding: 10px;
  width: 40px;
  height: 40px;
}
#question ul li:nth-of-type(even) p {
  background: #e9eaff;
  padding: 10px;
  width: 100%;
}

@media (min-width: 600px) {
  #question .question_area {
    max-width: 700px;
    margin: 0 auto;
  }
  #question ul li:nth-of-type(odd) span {
    font-size: 20px;
  }
  #question ul li:nth-of-type(even) span {
    font-size: 20px;
  }
}

/*--------------------------------------
オフィシャルバナー
--------------------------------------*/
#official {
  text-align: center;
  padding: 0;
  margin-top: 10px;
}
#official figure {
  max-width: 500px;
  margin: auto;
}
#official img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: auto;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
#official img:hover {
  opacity: 0.8;
}

/*--------------------------------------
フッター
--------------------------------------*/
footer {
  text-align: center;
  padding: 40px 0 90px;
}
footer .logo img {
  width: 180px;
  height: auto;
}
footer p {
  font-size: 10px;
  letter-spacing: 2px;
}
footer .copyright {
  font-size: 12px;
  letter-spacing: 4px;
  margin: 10px 0 40px;
}
.footer_nav .btn_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: calc(100% - 100px);
  position: fixed;
  bottom: 20px;
  left: 20px;
}
.footer_nav .btn_box .btn {
  padding: 10px 0;
  font-size: 14px;
  border-radius: 40px;
}
.footer_nav .pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.footer_nav .pagetop:hover {
  opacity: 0.8;
}

/*--------------------------------------
タイトル
--------------------------------------*/
/* トップページの共通タイトル */
.title {
  font-size: 28px;
  line-height: 1;
  letter-spacing: 4px;
  margin-bottom: 30px;
  color: var(--color-purple1);
  position: relative;
  padding-top: 40px;
  text-align: center;
  font-family: "Italiana", serif;
  font-weight: 400;
  font-style: normal;
}
.title span {
  font-size: 15px;
  letter-spacing: 4px;
  display: block;
  line-height: 1.8;
}
.title::before {
  content: "";
  display: inline-block;
  max-width: 30px;
  width: 30px;
  height: 30px;
  background: url(../images/deco_title.svg) center / contain no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 600px) {
  .title {
    font-size: 38px;
  }
}

/*--------------------------------------
共通のボタン
--------------------------------------*/
.menu_item.offisial_btn a {
  width: 100%;
  max-width: 300px;
  background: var(--color-purple1);
  color: #fff;
  margin: 20px auto 0;
  text-align: center;
  border-bottom: none;
  border-radius: 40px;
  padding: 12px 10px 10px;
  font-size: 18px !important;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.menu_item.offisial_btn a:hover {
  opacity: 0.8;
}
.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%;
  padding: 10px 25px;
  font-size: 16px;
  text-align: left;
  text-decoration: none;
  position: relative;
  border-radius: 40px;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.btn:hover {
  opacity: 0.8;
}
.btn_01 {
  background: var(--btn-purple1);
  color: #fff;
}
.btn_02 {
  background: var(--btn-green1);
  color: #fff;
}
.btn_03 {
  background: var(--btn-violet1);
  color: #fff;
}
.btn_04 {
  background: var(--btn-orange1);
  color: #fff;
}
.submit {
  background: var(--btn-purple1);
  background: linear-gradient(90deg, rgb(155 147 206) 0%, rgb(153 148 222) 50%, rgb(113 161 225) 100%);
  color: #fff;
  max-width: 300px;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  margin-bottom: 15px;
  border-radius: 30px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.submit:hover {
  opacity: 0.8;
}
.reset {
  display: block;
  padding: 5px;
  margin: auto;
}

/*--------------------------------------
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:first-of-type img {
    width: 160px;
  }
  .menu_box .menu_item {
    width: 50%;
  }
  .menu_box .menu_item a {
    font-size: 22px;
  }
  .menu_box .menu_item a span {
    font-size: 14px;
    display: block;
  }
  article {
    padding: 60px 0;
  }
}

/*--------------------------------------
1025px以上
--------------------------------------*/
@media (min-width: 1025px) {
  header .inner {
    padding: 0 50px 0 0;
    justify-content: center;
  }
  .pc_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu_box {
    padding: 100px 20%;
  }
}

/*--------------------------------------
1500px以上
--------------------------------------*/
@media (min-width: 1500px) {
  header .inner {
    padding: 0;
  }
  .menu_box {
    padding: 100px 30%;
  }
  footer {
    padding: 40px 0;
  }
  .footer_nav .btn_box {
    display: none;
  }
}