@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');
/*共通----------*/
p,ul,li,dl,dt,dd,div,h1,h2,h3,h4,h5,a {
	text-decoration: none;
    color: #231815;
    margin: 0;
	padding: 0;
	list-style: none;
}
body {
	font-family: 'Montserrat','M PLUS Rounded 1c', sans-serif;
  position: relative;
  z-index: 0;
    background-color: #fffcf9;
}
img {
  max-width: 100%;
  height: auto;
}
.sp {
  display: none;
}
.pc {
  display: block;
}
/*unit----------*/
.loading {
    top: 0;
    left: 0;
    z-index: 999;
    position: fixed;
    width: 100%;
    height: 100vh;
	opacity: 1;
	pointer-events: auto;
  transition: all ease 0.1s 2s;
  -webkit-transition: all ease 0.1s 2s;
  -moz-transition: all ease 0.1s 2s;
}
.loading.on {
	opacity: 0;
	pointer-events: none;
}
.loading .inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
  transition: all ease-out 0.5s 1.5s;
  -webkit-transition: all ease-out 0.5s 1.5s;
  -moz-transition: all ease-out 0.5s 1.5s;
	transform: translate(0,0%);
}
.loading.on .inner {
	transform: translate(0,-100%);
}
.loading .img_box {
    width: 350px;
    max-width: 55%;
    display: flex;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.loading .img_box span {
	opacity: 0;
}
.loading.on .img_box span {
	opacity: 1;
}
.loading .img_box span:nth-of-type(1) {
  transition: all ease-in 0.8s 0s;
  -webkit-transition: all ease-in 0.8s 0s;
  -moz-transition: all ease-in 0.8s 0s;
}
.loading .img_box span:nth-of-type(2) {
  transition: all ease-in 0.8s 0.1s;
  -webkit-transition: all ease-in 0.8s 0.1s;
  -moz-transition: all ease-in 0.8s 0.1s;
}
.loading .img_box span:nth-of-type(3) {
  transition: all ease-in 0.8s 0.2s;
  -webkit-transition: all ease-in 0.8s 0.2s;
  -moz-transition: all ease-in 0.8s 0.2s;
}
.loading .img_box span:nth-of-type(4) {
  transition: all ease-in 0.8s 0.3s;
  -webkit-transition: all ease-in 0.8s 0.3s;
  -moz-transition: all ease-in 0.8s 0.3s;
}
.loading .img_box span:nth-of-type(5) {
  transition: all ease-in 0.8s 0.4s;
  -webkit-transition: all ease-in 0.8s 0.4s;
  -moz-transition: all ease-in 0.8s 0.4s;
}
.loading .img_box span:nth-of-type(6) {
  transition: all ease-in 0.8s 0.5s;
  -webkit-transition: all ease-in 0.8s 0.5s;
  -moz-transition: all ease-in 0.8s 0.5s;
}
.loading .img_box span:nth-of-type(7) {
  transition: all ease-in 0.8s 0.6s;
  -webkit-transition: all ease-in 0.8s 0.6s;
  -moz-transition: all ease-in 0.8s 0.6s;
}
.loading .img_box span:nth-of-type(8) {
  transition: all ease-in 0.8s 0.7s;
  -webkit-transition: all ease-in 0.8s 0.7s;
  -moz-transition: all ease-in 0.8s 0.7s;
}
.loading .back {
    background-color: #ffefdf;
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}
.unit {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 2vw;
    z-index: 101;
    position: absolute;
    top: 0;
    left: 0;
  transition: all ease 0.5s 0s;
  -webkit-transition: all ease 0.5s 0s;
  -moz-transition: all ease 0.5s 0s;
}
.unit.on {
    position: fixed;
    background-color: #fff;
}
.unit .left {
    width: 20vw;
}
.unit .left .logo {
}
.unit .left .logo a {
}
.unit .right {
    width: 4vw;
    height: 2vw;
    cursor: pointer;
}
.unit .right .menu_botton {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
}
.unit .right .menu_botton span {
    display: block;
    background-color: #231815;
    height: 1px;
    width: 100%;
    position: absolute;
	z-index: 1;
	margin: auto;
  transition: all ease 0.5s 0s;
  -webkit-transition: all ease 0.5s 0s;
  -moz-transition: all ease 0.5s 0s;
}
.unit .right .menu_botton span:nth-of-type(1) {
	top: 0;
	right: 0;
}
.unit .right .menu_botton span:nth-of-type(2) {
	top: 0;
	bottom: 0;
	right: 0;
}
.unit .right .menu_botton.active span:nth-of-type(1) {
    transform: rotate(40deg);
    transform-origin: center;
    bottom: 0;
    left: 0;
}
.unit .right .menu_botton.active span:nth-of-type(2) {
	opacity: 0;
}
.unit .right .menu_botton.active span:nth-of-type(3) {
    transform: rotate(-40deg);
    transform-origin: center;
    top: 0;
    left: 0;
}
.unit .right .menu_botton span:nth-of-type(3) {
	bottom: 0;
	right: 0;
}
.unit .right .menu_botton:hover span:nth-of-type(2) {
	width: 75%;
}
.unit_inner {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
	opacity: 0;
	pointer-events: none;
    display: flex;
    align-items: center;
}
.unit_inner.active {
	opacity: 1;
	pointer-events: auto;
}
.unit_inner .bg {
    background-color: #ffeedef5;
    width: 100%;
    height: 0vh;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: -1;
  transition: all ease 0.5s 0s;
  -webkit-transition: all ease 0.5s 0s;
  -moz-transition: all ease 0.5s 0s;
}
.unit_inner.active .bg {
    height: 100vh;
}
.unit_inner .inbox {
	opacity: 0;
  transition: all ease 0.5s 0.5s;
  -webkit-transition: all ease 0.5s 0.5s;
  -moz-transition: all ease 0.5s 0.5s;
    width: 400px;
    max-width: 90%;
    margin:auto;
}
.unit_inner.active .inbox {
	opacity: 1;
}
.unit_inner .inbox dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}
.unit_inner .inbox dl dt {
    width: 65%;
}
.unit_inner .inbox dl dt ul {
}
.unit_inner .inbox dl dt ul li {
}
.unit_inner .inbox dl dt ul li a {
    font-weight: 600;
    font-size: 1.8vw;
    margin-bottom: 1.5vw;
    display: block;
  transition: all ease 0.5s 0s;
  -webkit-transition: all ease 0.5s 0s;
  -moz-transition: all ease 0.5s 0s;
}
.unit_inner .inbox dl dt ul li a:hover {
    opacity: 0.5;
    transform: translate(-10px, 0px);
}
.unit_inner .inbox dl dt .sns {
    margin: 2vw 0;
}
.unit_inner .inbox dl dt .sns p {
    width: 30px;
}
.unit_inner .inbox dl dt .sns p a {
}
.unit_inner .inbox dl dt .cop {
    font-size: 1vw;
    font-weight: 600;
}
.unit_inner .inbox dl dd {
	width: 35%;
}
.unit_inner .inbox dl dd .logo {
}
.unit_inner .inbox dl dd .logo a {
}
.scroll_bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 1.4vw;
    letter-spacing: 1px;
    color: #231815;
  transition: all ease 0.5s 0s;
  -webkit-transition: all ease 0.5s 0s;
  -moz-transition: all ease 0.5s 0s;
    z-index: 1;
}
.scroll_bar.on {
	opacity: 0;
	pointer-events: none;
}
.scroll_bar p {
	position: relative;
	z-index: 0;
    padding-bottom: 50px;
}
.scroll_bar p::before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 1px;
	height: 45px;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-color: #231815;
}
.scroll_bar p::after {
	content: "";
	position: absolute;
	z-index: -1;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	bottom: 42px;
	left: 0;
	right: 0;
	margin: auto;
	background-color: #231815;
  -webkit-animation: 1s ease-out 0s infinite backwards normal scroll_bar;
  animation: 1s ease-out 0s infinite backwards normal scroll_bar;
}
@-webkit-keyframes scroll_bar {
  0% {
	bottom: 42px;
  }
  75% {
	  opacity:1;
  }
  100% {
	bottom: 0px;
	  opacity:0;
  }
}
@keyframes scroll_bar {
  0% {
	bottom: 42px;
  }
  50% {
	  opacity:1;
  }
  85% {
	  opacity:0.2;
  }
  100% {
	bottom: 0px;
	  opacity:0;
  }
}
/*TOP共通----------*/
.fadein {
  opacity: 0;
  transition: all ease 0.8s 0s;
  -webkit-transition: all ease 0.8s 0s;
  -moz-transition: all ease 0.8s 0s;
  transform: translate(0px, 20px);
}
.fadein.on {
  opacity: 1;
  transform: translate(0px, 0px);
}
.top_section {
  overflow: hidden;
  position: relative;
  z-index: 0;
    margin: 3rem 0;
    padding: 3rem 0;
}
.top_box {
    width: 1400px;
    max-width: 85%;
    margin: 0 auto;
}
.flex_box .link_box {
    width: 400px;
}
.link_box {
    position: relative;
    z-index: 0;
    transition: all ease-in 0.5s 0s;
    -webkit-transition: all ease-in 0.5s 0s;
    -moz-transition: all ease-in 0.5s 0s;
    width: 250px;
    max-width: 90%;
    margin: 5vw auto 0;
    text-align: center;
    font-size: 1.5vw;
    font-weight: 600;
    border: 1px solid #231815;
    padding: 1vw 0;
    overflow: hidden;
}
.link_box:hover {
	color: #fff;}
.link_box::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(90deg, #231815 0%,#231815 50%, #ffffff00 50%, #ffffff00 100%);
    transition: all ease-in 0.5s 0s;
    -webkit-transition: all ease-in 0.5s 0s;
    -moz-transition: all ease-in 0.5s 0s;
    z-index: -1;
}
.link_box:hover::before {
    right: -100%;
}
.link_box a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	margin: auto;
	z-index: 1;
}
.toptih2 {
    font-size: 3.8vw;
    text-align: center;
    line-height: 100%;
}
.toptih2 span {
    display: block;
    font-size: 0.7em;
    line-height: 100%;
    margin-top: 5px;
}
/*TOPPAGE----------*/
#top_fv {
    overflow: hidden;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 0;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-end;
    align-items: center;
}
#top_fv .steam-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
#top_fv .steam-01, #top_fv .steam-02, #top_fv .steam-03, #top_fv .steam-04 {
    position: absolute;
    opacity: 0;
    filter: blur(12px);
    transition: all 1s;
    z-index: 2;
}
.steam-01 img, .steam-02 img, .steam-03 img, .steam-04 img {
    width: 700px;
    height: 1500px;
}
#top_fv .steam-01 {
    left: 0;
    animation: steam-move-01 20s infinite linear;
}
#top_fv .steam-02 {
    left: 0;
    animation: steam-move-01 20s infinite linear;
    animation-delay: 10s;
}
#top_fv .steam-03 {
    left: 0;
    animation: steam-move-01 20s infinite linear;
    animation-delay: 5s;
}
#top_fv .steam-04 {
    left: 0;
    animation: steam-move-01 20s infinite linear;
    animation-delay: 15s;
}
@keyframes steam-move-01 {
  0% {
    filter: blur(12px);
    transform: scale(0.8, 0.8) rotateY(0deg);
    opacity: 0;
    bottom: -1300px;
  }
  6% {
    opacity: 0.2;
  }
  33% {
    transform: scale(0.9, 1.1) rotateY(30deg);
    opacity: 0.4;
  }
  66% {
    transform: scale(1, 0.8) rotateY(4deg);
  }
  100% {
    filter: blur(18px);
    transform: scale(1.5, 1.3) rotateY(50deg);
    opacity: 0;
    bottom: 0;
  }
}
#top_fv .top_fvbg {
    position: absolute;
    z-index: -1;
    width: 75vw;
    height: 100vh;
    bottom: -10%;
    left: -17vw;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
#top_fv .top_fvbg img {
    filter: drop-shadow(0px 41px 15px #d0c4b9) blur(15px);
    opacity: 0.3;
    transform: scale(1.05);
  transition: all ease-out 1.5s 2.0s;
  -webkit-transition: all ease-out 1.5s 2.0s;
  -moz-transition: all ease-out 1.5s 2.0s;
}
#top_fv .top_fvbg.on img {
    filter: drop-shadow(0px 41px 15px #d0c4b9) blur(0px);
    opacity: 1;
    transform: scale(1.0);
}
#top_fv .top_fvbg .img_box {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
    height: 100vh;
    width: 50vw;
    right: 0;
  transform-origin: center;
}
#top_fv .top_fvbg .swiper-slide-active .img_box, #top_fv .top_fvbg .swiper-slide-duplicate-active .img_box, #top_fv .top_fvbg .swiper-slide-prev .img_box {
  -webkit-animation: 6s linear 0s forwards alternate zoom;
  animation: 6s linear 0s forwards alternate zoom;
}
@-webkit-keyframes zoom {
  0% {
    transform: scale(1.0, 1.0);
  }
  100% {
    transform: scale(1.05, 1.05);
  }
}
@keyframes zoom {
  0% {
    transform: scale(1.0, 1.0);
  }
  100% {
    transform: scale(1.05, 1.05);
  }
}
#top_fv .top_fvbg .img_box.img_bg01 {
  background-image: url(.././img/fv_img01.jpg);
}
#top_fv .top_fvbg .img_box.img_bg02 {
  background-image: url(.././img/fv_img02.jpg);
}
#top_fv .top_fvbg .img_box.img_bg03 {
  background-image: url(.././img/fv_img03.jpg);
}
#top_fv .top_fvtext {
    margin-right: 7.5vw;
    transition: all ease-out 1s 2.5s;
    -webkit-transition: all ease-out 1s 2.5s;
    -moz-transition: all ease-out 1s 2.5s;
}
#top_fv .top_fvtext h1 {
    width: 35vw;
}
#top_fv .top_fvtext h1 span {
    display: block;
    padding: 5px 15px;
    font-size: 2.1vw;
    letter-spacing: 3px;
    border-radius: 5px;
    color: #231815;
    padding-bottom: 5px;
    text-align: center;
}
#top_fv .top_fvtext p {
    font-size: 2.2vw;
    text-align: center;
    font-weight: 700;
    padding: 5px 0;
    margin-top: 15px;
}
#top_001 {
}
#top_001 .top_box {
}
#top_001 .top_box .img_box {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 35vw;
}
#top_001 .top_box .img_box img {
	opacity: 0;
    transition: all ease 0.8s 0s;
    -webkit-transition: all ease 0.8s 0s;
    -moz-transition: all ease 0.8s 0s;
}
#top_001 .top_box .img_box img.on {
	opacity: 1;
}
#top_001 .top_box .img_box .img001 {
    position: absolute;
    z-index: 0;
    width: 50%;
    left: 0;
    top: 20%;
    margin: auto;
}
#top_001 .top_box .img_box .img002 {
    position: absolute;
    z-index: 0;
    width: 50%;
    right: 0;
    margin: auto;
}
#top_001 .top_box .text_box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
    letter-spacing: 2px;
    line-height: 170%;
    font-weight: 600;
    font-size: 1.9vw;
    flex-direction: row-reverse;
    margin-top: 3rem;
}
#top_001 .top_box .text_box p {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
#top_001 .top_box .text_box p:nth-of-type(2) {
	margin: 0 3rem;
}
#top_01 {
	position: relative;
	z-index: 0;
    margin: 0;
    padding: 6rem 0;
    background-color: #ffeedeed;
}
#top_01::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url(.././img/top_01_bg01.jpg);
    background-repeat: repeat;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
    background-attachment: fixed;
}
#top_01 .top_box {
    width: 100%;
    max-width: 1400px
}
#top_01 .top_box p.text {
    text-align: center;
    margin: 3rem 0;
    letter-spacing: 1px;
    font-weight: 600;
    font-size: 1.8vw;
    line-height: 180%;
}
#top_01 .top_box p.text span {
    display: block;
    font-size: 0.7em;
    margin-top: 0.5rem;
}
#top_01 .top_box .img_slider {
    position: relative;
    z-index: 0;
    width: 90%;
    margin: 0 auto;
}
#top_01 .top_box h2.side {
	margin: 5rem auto 3rem;
}
#top_01 .top_box .img_slider .swiper-container01 ,
#top_01 .top_box .img_slider .swiper-container01_02 {
    overflow: hidden;
}
#top_01 .top_box .img_slider .swiper-slide {
    transform: scale(0.7);
  transition: all ease-in 0.6s 0s;
  -webkit-transition: all ease-in 0.6s 0s;
  -moz-transition: all ease-in 0.6s 0s;
}
#top_01 .top_box .img_slider .swiper-slide.swiper-slide-active {
    transform: scale(1);
}
#top_01 .top_box .img_slider .swiper-slide .img_box {
}
#top_01 .top_box .img_slider .swiper-slide .img_box img {
}
#top_01 .top_box .img_slider .swiper-slide .text_box {
    background-color: #fff;
    padding: 60px 8% 30px;
    margin-bottom: 20px;
    margin-top: -40px;
	border-radius: 10px;
}
#top_01 .top_box .img_slider .swiper-slide .text_box h4 {
	font-size: 2vw;
    margin-bottom: 10px;
    line-height: 120%;
}
#top_01 .top_box .img_slider .swiper-slide .text_box p {
    font-size: 1.3vw;
    line-height: 180%;
}
#top_01 .top_box .img_slider .swiper-button-next ,
#top_01 .top_box .img_slider .swiper-button-prev ,
#top_01 .top_box .img_slider .swiper-button-next01 ,
#top_01 .top_box .img_slider .swiper-button-prev01 {
    position: absolute;
    margin-top: 0;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
	width: 50px;
    height: 50px;
    top: 30%;
}
.swiper-button-next,.swiper-button-next01, .swiper-container-rtl .swiper-button-prev {
    right: 0px;
    left: auto;
}
.swiper-button-prev,.swiper-button-prev01, .swiper-container-rtl .swiper-button-next {
    left: 0px;
    right: auto;
}
#top_01 .top_box .img_slider .swiper-button-prev01 ,
#top_01 .top_box .img_slider .swiper-button-prev {
    left: -50px;
}
#top_01 .top_box .img_slider .swiper-button-next01 ,
#top_01 .top_box .img_slider .swiper-button-next {
    right: -50px;
}
#top_01 .top_box .img_slider .swiper-button-next::after ,
#top_01 .top_box .img_slider .swiper-button-next01::after ,
#top_01 .top_box .img_slider .swiper-button-prev01::after ,
#top_01 .top_box .img_slider .swiper-button-prev::after {
    font-size: 50px;
    line-height: 50px;
    text-align: center;
    color: #231815;
}
#top_01 .top_box .img_slider .swiper-button-prev01::after ,
#top_01 .top_box .img_slider .swiper-button-prev::after {
    content: "<";
}
#top_01 .top_box .img_slider .swiper-button-next01::after ,
#top_01 .top_box .img_slider .swiper-button-next::after {
    content: ">";
}
#top_02 {
}
#top_02 .top_box {
}
#top_02 .top_box h3 {
    font-size: 3vw;
    line-height: 150%;
    letter-spacing: 1px;
    margin-bottom: 3rem;
}
#top_02 .top_box .inner {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
#top_02 .top_box .inner:not(:last-of-type) {
	margin-bottom: 3rem;
}
#top_02 .top_box .inner .img_box {
    width: 40%;
}
#top_02 .top_box .inner .img_box img {
}
#top_02 .top_box .inner .text_box {
    width: 60%;
}
#top_02 .top_box .inner:nth-of-type(even) .text_box {
    padding-right: 5%;
}
#top_02 .top_box .inner:nth-of-type(odd) .text_box {
    padding-left: 5%;
}
#top_02 .top_box .inner .text_box .toptih2 {
    text-align: left;
    font-size: 2.8vw;
}
#top_02 .top_box .inner .text_box .toptih2 span {
    margin-bottom: 5px;
    margin-top: 0;
}
#top_02 .top_box .inner .text_box p {
    font-size: 1.4vw;
    letter-spacing: 1px;
    line-height: 180%;
    margin-top: 15px;
}
#top_03 {
}
#top_03 .top_box {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    align-content: flex-start;
}
#top_03 .top_box .left {
    width: calc(50% - 10px);
}
#top_03 .top_box .right {
    width: calc(50% - 10px);
}
#top_03 .top_box .girl ,
#top_03 .top_box .about ,
#top_03 .top_box .recruit ,
#top_03 .top_box .company {
    background-repeat: repeat;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
	position: relative;
	z-index: 0;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}
#top_03 .top_box .girl a ,
#top_03 .top_box .about a ,
#top_03 .top_box .recruit a ,
#top_03 .top_box .company a {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
#top_03 .top_box .about::before ,
#top_03 .top_box .recruit::before ,
#top_03 .top_box .company::before {
	content: "";
	position: absolute;
	z-index: -1;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
    background-color: #0009;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}
#top_03 .top_box .about:hover::before ,
#top_03 .top_box .recruit:hover::before ,
#top_03 .top_box .company:hover::before {
    background-color: #00000026;
}
#top_03 .top_box .girl {
    background-image: url(.././img/top_03_g.jpg);
    height: calc(34vw - 10px);
    max-height: calc(375px - 10px);
    margin-bottom: 20px;
}
#top_03 .top_box .girl h2 {
    opacity: 0;
}
#top_03 .top_box .about {
    background-image: url(.././img/top_03_a.jpg);
    height: calc(34vw - 10px);
    max-height: calc(375px - 10px);
}
#top_03 .top_box .recruit {
    background-image: url(.././img/top_03_r.jpg);
    height: calc(34vw - 10px);
    max-height: calc(375px - 10px);
    margin-bottom: 20px;
}
#top_03 .top_box .company {
    background-image: url(.././img/top_03_c.jpg);
    height: calc(34vw - 10px);
    max-height: calc(375px - 10px);
}
#top_03 .top_box .toptih2 {
    color: #fff;
    font-size: 2.9vw;
}
#top_03 .top_box .toptih2 span {
}
#top_04 {
}
#top_04 .top_box {
}
#top_04 .top_box .contbox {
}
#top_04 .top_box .contbox ul {
    margin-top: 3rem;
}
#top_04 .top_box .contbox ul li {
    z-index: 0;
    position: relative;
    background-color: #f1f1f1;
    padding: 15px;
    margin-bottom: 10px;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}
#top_04 .top_box .contbox ul li:hover {
    background-color: #a59381;
}
#top_04 .top_box .contbox ul li a.link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#top_04 .top_box .contbox ul li dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.4vw;
}
#top_04 .top_box .contbox ul li dl dt {
    width: 15%;
    color: #a59381;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}
#top_04 .top_box .contbox ul li dl dd {
    width: 85%;
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}
#top_04 .top_box .contbox ul li dl dd a {
    transition: all ease 0.5s 0s;
    -webkit-transition: all ease 0.5s 0s;
    -moz-transition: all ease 0.5s 0s;
}
#top_04 .top_box .contbox ul li:hover dl dt {
	color: #fff;
}
#top_04 .top_box .contbox ul li:hover dl dd {
	color: #fff;
}
#top_04 .top_box .contbox ul li:hover dl dd a {
	color: #fff;
}
#top_05 {
}
#top_05 .top_box {
}
#top_05 .top_box ul {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
}
#top_05 .top_box ul li {
    width: 50%;
    text-align: center;
}
#top_05 .top_box ul li .icon {
    width: 7vw;
    margin: 0 auto;
}
#top_05 .top_box ul li h3 {
	font-size: 2.5vw;
    padding: 10px 0;
}
#top_05 .top_box ul li h3 a {
    display: block;
}
#top_05 .top_box ul li dl {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    flex-wrap: wrap;
    font-size: 1.6vw;
}
#top_05 .top_box ul li dl dt {
    padding-right: 20px;
}
#top_05 .top_box ul li dl dd {
	text-align: left;
}
#top_05 .top_box ul li dl dd p {
	margin-bottom: 5px;
}
#top_05 .top_box ul li .link_box {
    margin: 0 auto;
}
.footer {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    padding: 30px 2%;
    background-color: #fff;
}
.footer .inbox {
}
.footer .inbox .logo {
    width: 250px;
    max-width: 100%;
    margin-bottom: 15px;
}
.footer .inbox .logo a {
}
.footer .inbox p {
    font-size: 1.2vw;
}
.footer .pagetop {
    width: 150px;
}
.footer .cop {
    width: 100%;
    display: block;
    text-align: right;
    font-size: 11px;
    margin-top: 10px;
}
/*サブ共通----------*/
#sub_fv {
    padding: 4.5rem 0 0;
    width: 1600px;
    max-width: 90%;
    margin: 0 auto;
}
#sub_fv .bg_box {
    opacity: 0;
    transition: all ease-out 0.8s 0s;
    -webkit-transition: all ease-out 0.8s 0s;
    -moz-transition: all ease-out 0.8s 0s;
	transform-origin: bottom;
}
#sub_fv.on .bg_box {
    opacity: 1;
}
.sub_section {
    overflow: hidden;
    position: relative;
    z-index: 0;
    margin: 3rem 0;
    padding: 3rem 0;
}
.sub_section .sub_box {
    width: 1400px;
    max-width: 85%;
    margin: 0 auto;
}
.subtih2 {
    text-align: left;
    font-size: 2.8vw;
    line-height: 100%;
	margin-bottom: 3rem;
}
.subtih2 span {
    display: block;
    font-size: 0.7em;
    line-height: 100%;
    margin-top: 5px;
}
/*Store----------*/
#com_sec02 .sub_box ul {
}
#com_sec02 .sub_box ul li {
}
#com_sec02 .sub_box ul li:not(:last-of-type) {
    margin-bottom: 7rem;
}
#com_sec02 .sub_box ul li dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: center;
}
#com_sec02 .sub_box ul li dl dt {
    width: 70%;
    text-align: left;
}
#com_sec02 .sub_box ul li dl dt h4 {
    font-size: 2rem;
    padding-left: 35px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 0;
}
#com_sec02 .sub_box ul li dl dt h4::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 30px;
    height: 100%;
    background-image: url(.././img/pin.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    top: 0;
    left: 0;
}
#com_sec02 .sub_box ul li dl dt p {
    font-size: 1.2em;
}
#com_sec02 .sub_box ul li dl dt p span {
    font-size: 0.8em;
}
#com_sec02 .sub_box ul li dl dt p span a {
    text-decoration: none;
    position: relative;
    z-index: 0;
    padding-bottom: 3px;
    display: inline-flex;
    overflow: hidden;
    cursor: pointer;
}
#com_sec02 .sub_box ul li dl dd {
    width: 30%;
}
#com_sec02 .sub_box ul li .map_box {
    margin-top: 2rem;
    width: 100%;
    background-color: #c7c7c7;
    height: 350px;
}
#com_sec02 .sub_box ul li .map_box iframe {
    width: 100%;
    height: 100%;
}
#com_sec02 .sub_box .flex_box .link_box:nth-of-type(1) {
    margin: 30px 0 0 0;
}
#com_sec02 .sub_box .flex_box .link_box:nth-of-type(2) {
    margin: 10px 0 0 0;
}
/*ABOUT----------*/
#about_01 {
	margin-top: 0;
}
#about_01 .sub_box {
}
#about_01 .sub_box .subtih2 {
}
#about_01 .sub_box .subtih2 span {
}
#about_01 .sub_box .inner {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}
#about_01 .sub_box .inner .text_box {
    width: 63%;
}
#about_01 .sub_box .inner .text_box p {
    font-size: 1.7vw;
    letter-spacing: 1px;
    line-height: 180%;
}
#about_01 .sub_box .inner .img_box {
    width: 35%;
}
#about_01 .sub_box .inner .img_box img {
}
#about_02 {
}
#about_02 .sub_box {
}
#about_02 .sub_box .inner {
}
#about_02 .sub_box .img_box {
	text-align: center;
}
#about_02 .sub_box .img_box img {
}
#about_02 .sub_box .text_box {
    width: 800px;
    max-width: 100%;
    margin: 0 auto;
}
#about_02 .sub_box .text_box h2 {
    font-size: 3vw;
    text-align: center;
    line-height: 120%;
	margin: 2rem 0;
}
#about_02 .sub_box .text_box p {
    font-size: 1.4vw;
    letter-spacing: 1px;
    line-height: 180%;
}
#about_02 .sub_box ul {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    margin-top: 4rem;
}
#about_02 .sub_box ul li {
	width: 30%;
}
#about_02 .sub_box ul li:nth-of-type(2) {
	margin: 0 5%;
}
#about_02 .sub_box ul li img {
}
#about_02 .sub_box ul li h3 {
    margin: 20px 0 10px;
    font-size: 2.0vw;
    text-align: center;
    line-height: 150%;
}
#about_02 .sub_box ul li h3 span {
    display: block;
    margin-bottom: 5px;
    padding-bottom: 5px;
    position: relative;
    z-index: 0;
}
#about_02 .sub_box ul li h3 span::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 20px;
    height: 1px;
    background-color: #231815;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
#about_02 .sub_box ul li p {
    font-size: 1.4vw;
    letter-spacing: 1px;
    line-height: 170%;
}
/*MENU----------*/
#menu_01 {
}
#menu_01 .inner {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}
#menu_01 .inner:not(:last-of-type) {
	margin-bottom: 3rem;
}
#menu_01 .inner .img_box {
	width: 40%;
}
#menu_01 .inner .text_box {
    width: 55%;
}
#menu_01 .inner .text_box h3 {
    font-size: 2.3vw;
    margin-bottom: 1rem;
}
#menu_01 .inner .text_box h3 span {
    display: block;
    font-size: 0.6em;
    color: #a86751;
}
#menu_01 .inner .text_box p {
    font-size: 1.4vw;
    letter-spacing: 1px;
    line-height: 180%;
}
/*NEWS----------*/
#news_01 {
}
#news_01 .inner {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: flex-start;
}
#news_01 .inner .inbox {
    width: 30%;
	margin-bottom: 5%;
    position: relative;
    z-index: 0;
}
#news_01 .inner .inbox:nth-of-type(3n+2) {
	margin: 0 5%;
}
#news_01 .inner .inbox .link {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#news_01 .inner .inbox .img_box {
}
#news_01 .inner .inbox .text_box {
    margin-top: 15px;
}
#news_01 .inner .inbox .text_box dl {
}
#news_01 .inner .inbox .text_box dl dt {
    font-size: 1.3vw;
}
#news_01 .inner .inbox .text_box dl dt span {
}
#news_01 .inner .inbox .text_box dl dt span a {
}
#news_01 .inner .inbox .text_box dl dd {
    font-size: 1.4vw;
    letter-spacing: 1px;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
}
#news_01 .inner .navigation {
	width: 100%;
    margin-top: 2rem;
}
#news_01 .inner .navigation span ,
#news_01 .inner .navigation a {
	margin-right: 10px;
}
#news_01.detial {
}
#news_01.detial dl {
    font-size: 2.8vw;
    line-height: 100%;
    font-weight: bold;
    margin-bottom: 3rem;
}
#news_01.detial dl dt {
    font-size: 0.7em;
    line-height: 100%;
    margin-bottom: 10px;
}
#news_01.detial dl dt span {
}
#news_01.detial dl dt span a {
}
#news_01.detial dl dd {
}
#news_01.detial .cont_box {
}
#news_01.detial .cont_box p {
	font-size: 1.4vw;
	line-height: 180%;
	letter-spacing: 1px;
}
#news_01.detial .cont_box img {
    margin-bottom: 15px;
}
/*COPANY----------*/
#company_01 {
}
#company_01 .sub_box {
}
#company_01 .sub_box .inner {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    align-items: flex-start;
}
#company_01 .sub_box .inner .logo_box {
    width: 250px;
    max-width: 30%;
}
#company_01 .sub_box .inner .text_box {
    width: 600px;
    max-width: 65%;
}
#company_01 .sub_box .inner .text_box dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    font-size: 1.5vw;
    letter-spacing: 1px;
    border-bottom: 1px solid #b5b5b5;
    padding: 15px 0;
}
#company_01 .sub_box .inner .text_box dl dt {
    width: 25%;
    text-align: center;
    font-weight: 500;
}
#company_01 .sub_box .inner .text_box dl dd {
    width: 75%;
}
#company_02 {
}
#company_02 .text_box {
}
#company_02 .text_box p {
	font-size: 1.4vw;
    line-height: 210%;
    letter-spacing: 1px;
}
#company_02 .text_box p.notice {
    text-align: right;
    margin-top: 2rem;
}
#company_02 .map_box {
    margin-top: 3rem;
}
#company_02 .map_box iframe {
    width: 100%;
    height: 350px;
}
/*RECRUIT----------*/
#contact_01 {
}
#contact_01 .inner {
}
button, input[type="button"], input[type="reset"], input[type="submit"] {
    -webkit-transition: all 150ms ease-in-out;
    transition: all 150ms ease-in-out;
    background: #000;
    border: none;
    color: #fff;
    outline: none;
    padding: 1rem;
    text-decoration: none;
    vertical-align: bottom;
}
input[type="submit"], input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 1.3vw;
}
.contactForm {
}

.mw_wp_form_confirm .contactForm {
}
.contactForm__item {
    padding: 1rem 0;
}
.contactForm__item p {
    padding: 1rem 0;
}
.mw_wp_form_confirm .contactForm__item {
}

.contactForm__ttlBox {
    margin-bottom: 1rem;
}
.contactForm__ttl {
    font-size: 1.4vw;
    letter-spacing: 1px;
    text-align: left;
	font-weight: normal;
    margin: 0;
}
.contactForm__ttl.is-required::after {
    content: "必須";
    line-height: 1;
    color: #ffffff;
    font-weight: 500;
    background-color: #db9ba5;
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1vw;
    letter-spacing: 1px;
    margin-left: 0.5rem;
}
.mw_wp_form_confirm .contactForm__form {
  text-align: left;
}

.contactForm__form .error {
  display: none;
}

.contactForm__error {
  font-size: 3.7vw;
  letter-spacing: 0.28vw;
  font-weight: bold;
  color: #d46073;
  margin-top: 2rem;
}
.contactForm__error .error {
  color: #d46073 !important;
  display: inline-block !important;
  font-weight: bold;
}

.contactForm__btnBox {
    margin-top: 2rem;
  text-align: center;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea,
select {
    font-size: 1.3vw;
    background-color: #fff;
    border: 1px solid #eee;
    padding: 1rem;
    width: 100%;
    font-family: 'Zen Kaku Gothic Antique', sans-serif;
    border-radius: 0px;
}
.contactForm__item.error-pink input[type="text"], .contactForm__item.error-pink
input[type="email"], .contactForm__item.error-pink
input[type="url"], .contactForm__item.error-pink
input[type="tel"], .contactForm__item.error-pink
textarea, .contactForm__item.error-pink
select {
  border: 2px solid #d46073;
}

textarea {
    height: 25vw;
}
::-webkit-input-placeholder {
  color: #bdbdbd;
}

::-moz-placeholder {
  color: #bdbdbd;
}

:-ms-input-placeholder {
  color: #bdbdbd;
}

::-ms-input-placeholder {
  color: #bdbdbd;
}

::placeholder {
  color: #bdbdbd;
}

select::-ms-expand {
  display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-repeat: no-repeat;
    outline: none;
    color: #000;
}
.form-btn, .reviewForm .form-submit input[type="submit"] {
  width: 100%;
  max-width: 53rem;
  margin: 2.6rem 0;
  padding: 5rem !important;
  letter-spacing: 1px;
  font-size: 3.2vw;
  font-weight: normal;
  line-height: 1;
}
.form-btn.is-clearBtn, .reviewForm .form-submit input.is-clearBtn[type="submit"] {
  background-color: #ffffff;
  color: #747474;
}

.form-btn.is-submitBtn, .reviewForm .form-submit input.is-submitBtn[type="submit"] {
  background-color: #434343;
  color: #ffffff;
}

.form-btn.is-submitBtn:hover, .reviewForm .form-submit input.is-submitBtn:hover[type="submit"] {
  background-color: #000;
}
@media screen and (min-width:1100px) {
/*unit----------*/
.unit {
    padding: 22px;
}
.unit .left {
    width: 220px;
}
.unit .right {
    width: 44px;
    height: 22px;
}
.unit_inner .inbox dl dt ul li a {
    font-size: 19.8px;
    margin-bottom: 16.5px;
}
.unit_inner .inbox dl dt .sns {
    margin: 22px 0;
}
.unit_inner .inbox dl dt .cop {
    font-size: 11px;
}
.scroll_bar {
    font-size: 15.4px;
}
/*TOP共通----------*/
.link_box {
    margin: 55px auto 0;
    font-size: 16.5px;
    padding: 11px 0;
}
.toptih2 {
    font-size: 41.8px;
}
/*TOPPAGE----------*/
#top_fv .top_fvtext {
    margin-right: 14vw;
}
#top_fv .top_fvtext h1 {
    width: 28vw;
}
#top_fv .top_fvtext h1 span {
    font-size: 1.5vw;
}
#top_fv .top_fvtext p {
    font-size: 1.5vw;
}
#top_001 {
}
#top_001 .top_box {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
#top_001 .top_box .img_box {
    width: 50%;
    height: 20vw;
}
#top_001 .top_box .img_box .img001 {
    position: absolute;
    z-index: 0;
    width: 68%;
    left: 0;
    top: 0%;
    margin: auto;
}
#top_001 .top_box .img_box .img002 {
    position: absolute;
    z-index: 0;
    width: 35%;
    right: 0;
    bottom: 0;
    margin: auto;
}
#top_001 .top_box .text_box {
    font-size: 30px;
    margin-top: 0;
    width: 50%;
}
#top_001 .top_box .text_box p {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
#top_001 .top_box .text_box p:nth-of-type(2) {
    margin: 0 2rem;
}
#top_01 .top_box p.text {
    font-size: 19.8px;
}
#top_01 .top_box .img_slider .swiper-slide .text_box h4 {
	font-size: 22px;
}
#top_01 .top_box .img_slider .swiper-slide .text_box p {
    font-size: 14.3px;
}
#top_02 .top_box h3 {
    font-size: 33px;
}
#top_02 .top_box .inner .text_box .toptih2 {
    font-size: 30.8px;
}
#top_02 .top_box .inner .text_box p {
    font-size: 15.4px;
}
#top_03 .top_box .girl {
    height: calc(374px - 10px);
}
#top_03 .top_box .about {
    height: calc(374px - 10px);
}
#top_03 .top_box .recruit {
    height: calc(374px - 10px);
}
#top_03 .top_box .company {
    height: calc(374px - 10px);
}
#top_03 .top_box .toptih2 {
    font-size: 31.9px;
}
#top_04 .top_box .contbox ul li dl {
    font-size: 15.4px;
}
#top_05 .top_box ul li .icon {
    width: 77px;
}
#top_05 .top_box ul li h3 {
	font-size: 27.5px;
}
#top_05 .top_box ul li dl {
    font-size: 17.6px;
}
.footer .inbox p {
    font-size: 13.2px;
}
/*サブ共通----------*/
.subtih2 {
    font-size: 30.8px;
}
/*ABOUT----------*/
#about_01 .sub_box .inner .text_box p {
    font-size: 17px;
}
#about_02 .sub_box .text_box h2 {
    font-size: 33px;
}
#about_02 .sub_box .text_box p {
    font-size: 15.4px;
}
#about_02 .sub_box ul li h3 {
    font-size: 22px;
}
#about_02 .sub_box ul li p {
    font-size: 15.4px;
}
/*MENU----------*/
#menu_01 .inner .text_box h3 {
    font-size: 25.3px;
}
#menu_01 .inner .text_box h3 span {
    font-size: 0.6em;
}
#menu_01 .inner .text_box p {
    font-size: 15.4px;
}
/*NEWS----------*/
#news_01 .inner .inbox .text_box dl dt {
    font-size: 14.3px;
}
#news_01 .inner .inbox .text_box dl dd {
    font-size: 15.4px;
}
#news_01.detial dl {
    font-size: 30.8px;
    margin-bottom: 3rem;
}
#news_01.detial .cont_box p {
	font-size: 15.4px;
}
/*COPANY----------*/
#company_01 .sub_box .inner .text_box dl {
    font-size: 16.5px;
}
#company_02 .text_box p {
	font-size: 15.4px;
}
/*RECRUIT----------*/
input[type="submit"], input[type="button"] {
    font-size: 14.3px;
}
.contactForm__ttl {
    font-size: 15.4px;
}
.contactForm__ttl.is-required::after {
    font-size: 11px;
}
.contactForm__error {
  font-size: 41.7px;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
textarea,
select {
    font-size: 14.3px;
}
textarea {
    height: 265px;
}
.form-btn, .reviewForm .form-submit input[type="submit"] {
  font-size: 35.2px;
}
}
@media screen and (max-width:800px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
.unit {
    padding: 5vw 2vw;
    position: fixed;
    background-color: #fff;
}
.unit .left {
    width: 50vw;
}
.unit .right {
    width: 10vw;
    height: 6vw;
}
.unit_inner .inbox dl dd {
    display: none;
}
.unit_inner .inbox dl dt {
    width: 100%;
}
.unit_inner .inbox dl dt ul li a {
    font-size: 4vw;
    margin-bottom: 3.5vw;
    text-align: center;
}
.unit_inner .inbox dl dt .sns p {
    width: 20px;
    margin: 0 auto;
}
.unit_inner .inbox dl dt .sns {
    margin: 4vw 0;
}
.unit_inner .inbox dl dt .cop {
    font-size: 2.8vw;
    text-align: center;
}
.scroll_bar {
    font-size: 3vw;
}
#top_fv {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    align-items: center;
}
#top_fv .top_fvbg {
    width: 130vw;
    left: -15vw;
    bottom: unset;
    height: 50vh;
    top: 50vh;
    align-content: flex-start;
}
#top_fv .top_fvbg .img_box {
    height: 100vh;
    width: 100vw;
}
#top_fv .top_fvtext h1 {
    width: 95vw;
    margin: 0 auto;
        text-align: center;
}
#top_fv .top_fvtext h1 img {
    width: 65vw;
}
#top_fv .top_fvtext h1 span {
        font-size: 5vw;
}
#top_fv .top_fvtext {
    margin-right: 0;
    padding-top: 30vw;
}
#top_fv .top_fvtext p {
    font-size: 5.2vw;
}
#top_01 {
    padding: 4rem 0;
}
#top_01::before {
    background-attachment: inherit;
}
.toptih2 {
    font-size: 7.8vw;
    text-align: center;
    line-height: 100%;
}
#top_01 .top_box p.text {
    margin: 2rem 0;
    font-size: 3.5vw;
}
#top_01 .top_box .img_slider {
    width: 80%;
}
#top_01 .top_box .img_slider .swiper-button-next, #top_01 .top_box .img_slider .swiper-button-prev ,
#top_01 .top_box .img_slider .swiper-button-next01, #top_01 .top_box .img_slider .swiper-button-prev01 {
    width: 30px;
    height: 30px;
}
#top_01 .top_box .img_slider .swiper-button-prev01 ,
#top_01 .top_box .img_slider .swiper-button-prev {
    left: -30px;
}
#top_01 .top_box .img_slider .swiper-button-next01 ,
#top_01 .top_box .img_slider .swiper-button-next {
    right: -30px;
}
#top_01 .top_box .img_slider .swiper-button-next::after, #top_01 .top_box .img_slider .swiper-button-prev::after {
    font-size: 30px;
    line-height: 30px;
}
#top_01 .top_box .img_slider .swiper-slide .text_box h4 {
    font-size: 5vw;
}
#top_01 .top_box .img_slider .swiper-slide .text_box p {
    font-size: 3.1vw;
    line-height: 180%;
}
#top_01 .top_box .img_slider .swiper-slide .text_box {
    margin-top: -20px;
    padding: 40px 5% 30px;
}
#top_01 .top_box h2.side {
    margin: 3rem auto 2rem;
}
#top_001 .top_box .img_box {
    height: 90vw;
}
#top_001 .top_box .img_box .img001 {
    width: 85%;
    top: 0;
}
#top_001 .top_box .img_box .img002 {
    width: 65%;
    bottom: 0;
}
#top_001 .top_box .text_box {
    line-height: 145%;
    font-size: 4.5vw;
    margin-top: 2rem;
}
#top_001 .top_box .text_box p:nth-of-type(2) {
    margin: 0 1.5rem;
}
.link_box {
    margin: 10vw auto 0;
    font-size: 3.5vw;
    padding: 2vw 0;
}
#top_02 .top_box h3 {
    font-size: 6vw;
    margin-bottom: 2rem;
}
#top_02 .top_box .inner .img_box {
    width: 100%;
    margin-bottom: 1rem;
}
#top_02 .top_box .inner .text_box {
    width: 100%;
    padding: 0 !important;
}
#top_02 .top_box .inner .text_box .toptih2 {
    font-size: 6vw;
}
#top_02 .top_box .inner .text_box p {
    font-size: 3.2vw;
}
.top_section {
    margin: 2rem 0;
    padding: 2rem 0;
}
#top_03 .top_box .left {
    width: 100%;
}
	#top_03 .top_box .right {
    width: 100%;
}
#top_03 .top_box .toptih2 {
    color: #fff;
    font-size: 5vw;
}
#top_03 .top_box .girl {
    height: 300px;
    max-height: 300px;
    margin-bottom: 0;
}
#top_03 .top_box .about {
    height: 300px;
    max-height: 300px;
}
#top_03 .top_box .recruit {
    margin-bottom: 0;
    height: 300px;
    max-height: 300px;
}
#top_03 .top_box .company {
    margin-bottom: 0;
    height: 300px;
    max-height: 300px;
}
#top_04 .top_box .contbox ul {
    margin-top: 2rem;
}
#top_04 .top_box .contbox ul li dl {
    font-size: 3.2vw;
}
#top_04 .top_box .contbox ul li dl dt {
    width: 100%;
    margin-bottom: 5px;
}
#top_04 .top_box .contbox ul li dl dd {
    width: 100%;
}
#top_05 .top_box ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}
#top_05 .top_box ul li .icon {
    width: 15vw;
}
#top_05 .top_box ul li h3 {
    font-size: 5.5vw;
}
#top_05 .top_box ul li dl {
    font-size: 3.8vw;
}
.footer .inbox p {
    font-size: 2.7vw;
}
.footer .inbox .logo {
    width: 180px;
}
.footer .pagetop {
    width: 80px;
}
/*サブ共通----------*/
.subtih2 {
    font-size: 5vw;
    margin-bottom: 2rem;
}
.sub_section {
    margin: 2rem 0;
    padding: 2rem 0;
}
#sub_fv {
    max-width: 100%;
}
/*Store----------*/
#com_sec02 .sub_box ul li dl dt {
    width: 100%;
    text-align: left;
}
#com_sec02 .sub_box ul li dl dt h4 {
    font-size: 1.2em;
    padding-left: 25px;
}
#com_sec02 .sub_box ul li dl dt h4::before {
    width: 20px;
    height: 20px;
    bottom: 0;
    margin: auto;
}
#com_sec02 .sub_box ul li dl dt p {
    font-size: 1em;
}
#com_sec02 .sub_box ul li dl dd {
    width: 100%;
    margin-top: 2rem;
}
#com_sec02 .sub_box ul li .map_box {
    margin-top: 4rem;
    height: 200px;
}
/*ABOUT----------*/
#about_01 .sub_box .inner {
    flex-direction: column-reverse;
}
#about_01 .sub_box .inner .text_box {
    width: 100%;
}
#about_01 .sub_box .inner .img_box {
    width: 100%;
    margin-bottom: 1rem;
}
#about_01 .sub_box .inner .text_box p {
    font-size: 3.2vw;
}
#about_02 .sub_box .text_box h2 {
    font-size: 5vw;
    margin: 1rem 0;
}
#about_02 .sub_box .text_box p {
    font-size: 3.2vw;
}
#about_02 .sub_box ul {
    margin-top: 3rem;
}
#about_02 .sub_box ul li {
    width: 100%;
}
#about_02 .sub_box ul li:nth-of-type(2) {
    margin: 0;
}
#about_02 .sub_box ul li:not(:last-of-type) {
	padding-bottom: 3rem;
}
#about_02 .sub_box ul li h3 {
    font-size: 4vw;
}
#about_02 .sub_box ul li p {
    font-size: 3.2vw;
}
/*MENU----------*/
#menu_01 .inner {
    width: 500px;
    max-width: 100%;
    margin: 0 auto;
}
#menu_01 .inner:not(:last-of-type) {
    margin-bottom: 2rem;
}
#menu_01 .inner .img_box {
    width: 100%;
}
#menu_01 .inner .text_box {
    width: 100%;
}
#menu_01 .inner .text_box h3 {
    font-size: 5.0vw;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}
#menu_01 .inner .text_box p {
    font-size: 3.2vw;
}
/*NEWS----------*/
#news_01 .inner .inbox {
    width: 47.5%;
    margin-bottom: 5%;
}
#news_01 .inner .inbox:nth-of-type(3n+2) {
    margin: 0;
}
#news_01 .inner .inbox:nth-of-type(2n+1) {
    margin-right: 5%;
}
#news_01 .inner .inbox .text_box {
    margin-top: 10px;
}
#news_01 .inner .inbox .text_box dl dd {
    font-size: 3.2vw;
}
#news_01 .inner .inbox .text_box dl dt {
    font-size: 2.8vw;
}
#news_01 .inner .navigation {
    margin-top: 1rem;
}
#news_01.detial dl {
    font-size: 5.0vw;
    margin-bottom: 2rem;
}
#news_01.detial .cont_box p {
    font-size: 3.2vw;
}
/*COPANY----------*/
#company_01 .sub_box .inner {
    display: block;
}
#company_01 .sub_box .inner .logo_box {
    max-width: 50%;
    margin: 0 0 0 auto;
}
#company_01 .sub_box .inner .text_box {
    width: 100%;
    max-width: 100%;
	margin-top: 20px;
}
#company_01 .sub_box .inner .text_box dl {
    font-size: 3.2vw;
}
#company_02 .text_box p {
    font-size: 3.2vw;
}
#company_02 .map_box {
    margin-top: 2rem;
}
#company_02 .text_box p.notice {
    margin-top: 1rem;
}
#company_02 .map_box iframe {
    height: 250px;
}
/*RECRUIT----------*/
.contactForm__item {
    padding: 0.5rem 0;
}
.contactForm__ttl {
    font-size: 3.2vw;
}
.contactForm__ttl.is-required::after {
    font-size: 2.8vw;
}
.contactForm__item p {
    padding: 0.5rem 0;
}
input[type="text"], input[type="email"], input[type="url"], input[type="tel"], textarea, select {
    font-size: 3.2vw;
    padding: 0.5rem;
}
.mw_wp_form .error {
    font-size: 3vw;
    color: #B70000;
    display: block;
    margin-top: 5px;
}
.contactForm__btnBox {
    margin-top: 1rem;
    text-align: center;
}
input[type="submit"], input[type="button"] {
    font-size: 3.2vw;
}
}
.sub_sec {
    padding: 6rem 0;
}
.sub_sec .sub_box {
    width: 1200px;
    max-width: 85%;
    margin: 0 auto;
}
#contact_sec01 .sub_box.youkou h2 {
    text-align: center;
    font-size: 28px;
}
#contact_sec01 .sub_box.youkou .flow {
    width: 1000px;
    max-width: 100%;
    margin: 3rem auto 0;
}
#contact_sec01 .sub_box.youkou .flow h3 {
    color: #cd0404;
    text-align: center;
    font-size: 21px;
}
#contact_sec01 .sub_box.youkou .flow ul {
    width: auto;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}#contact_sec01 .sub_box.youkou .flow ul li {
    position: relative;
    width: 13%;
    padding: 30px 0px;
    color: #cd0404;
    background-color: #fffcf9;
    border: 1px solid #cd0404;
    text-align: center;
}
#contact_sec01 .sub_box.youkou .flow ul li span.num {
    display: inline-block;
    padding-bottom: 2px;
    font-size: 18px;
    font-weight: 600;
    border-bottom: 1px solid #cd0404;
}
#contact_sec01 .sub_box.youkou .flow ul li span.con {
    display: block;
    margin: 20px auto 0;
    text-align: center;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    text-orientation: upright;
    width: 22px;
}
#contact_sec01 .sub_box.youkou .flow ul li:not(:last-of-type)::after {
    position: absolute;
    top: 50%;
    right: -50%;
    content: '';
    display: block;
    width: 50%;
    height: 2px;
    background-color: #cd0404;
}
#contact_sec01 .sub_box.youkou .inner {
    width: 800px;
    max-width: 100%;
    margin: 3rem auto 0;
}
#contact_sec01 .sub_box.youkou .inner dl {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: flex-start;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    border-top: 1px solid #000;
}
#contact_sec01 .sub_box.youkou .inner dl:last-of-type {
    border-bottom: 1px solid #000;
}
#contact_sec01 .sub_box.youkou .inner dl dt {
    width: 150px;
    padding: 20px;
}#contact_sec01 .sub_box.youkou .inner dl dd {
    width: calc(100% - 150px);
    border-left: 1px solid #000;
    padding: 20px;
}
#contact_sec01 .sub_box.youkou .linkbox {
    text-align: center;
    margin-top: 40px;
}
#contact_sec01 .sub_box.youkou .linkbox a {
    color: #fff;
    background-color: #cd0404;
    padding: 8px 20px;
    display: inline-block;
    margin-top: 0px;
}
@media screen and (max-width:500px) {
#top_03 .top_box .girl {
        background-size: 160%;
}
}