@charset "utf-8";

:root {
  --primary-color: #4A6B8A;
  --secondary-color: #fff6f6;
  --accent-color: #e44141;
  --text-color: #393939;
  --light-text: #666;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}

html {
  height: 100%;
  font-size: 10px;
  line-height: 1.8;
}

body {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background: #ededed;
  color: var(--text-color);
  font-size: clamp(12px, 3.5vw, 16px);
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 0.5em;
  background-color: #333;
  text-align: center;
}

header a {
  display: inline-block;
  width: min(20vw, 150px);
  height: min(7vw, 50px);
}

li {
  list-style: none;
}

ol {
  counter-reset: txt_number;
  padding: 0.5em 0.5em 0;
  font-weight: 700;
}

ol li {
  margin-bottom: min(3vw, 10px);
  border-bottom: dotted 1px #dfdede;
  color: var(--accent-color);
}

ol li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

ol li::before {
  counter-increment: txt_number;
  content: counter(txt_number)".";
  padding-right: 0.5em;
}

ol li p {
  padding-left: 1.5em;
  color: #393939;
  font-weight: normal;
}

main {
  width: min(100%, 900px);
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 -.1em .5em 0 rgba(0, 0, 0, .1);
}

section {
  background-color: #fff;
  padding: min(8vw, 60px) min(4vw, 40px) min(8vw, 60px);
}

figure,
img {
  width: 100%;
  height: auto;
}

h2 {
  position: relative;
  margin-bottom: min(5vw, 30px);
  padding: 0 min(5vw, 20px) min(5vw, 20px);
  color: var(--accent-color);
  text-align: center;
}

h2::after {
  position: absolute;
  content: "";
  width: min(5vw, 10px);
  height: min(5vw, 10px);
  margin: auto;
  background-color: var(--accent-color);
  border-radius: 100%;
  bottom: 0;
  left: 0;
  right: 0;
}

h2 .txt-big {
  font-size: 1.2em;
}

h2.has-sub {
  line-height: 1.5;
}

h2 .txt-small {
  font-size: .75em;
  font-weight: normal;
}

h2.hukidashi {
  display: inline-block;
  padding-bottom: 0;
}

h2.hukidashi::before,
h2.hukidashi::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  margin: auto;
  background-color: var(--accent-color);
  top: 0;
  bottom: 0;
}

h2.hukidashi::before {
  left: 0;
  right: auto;
  transform: rotate(-20deg);
}

h2.hukidashi::after {
  border-radius: 0;
  right: 0;
  left: auto;
  transform: rotate(20deg);
}

.hukidashi-wraper {
  text-align: center;
}

.yure {
  margin-bottom: .5em;
  font-size: min(3.8vw, 22px);
  animation: vertical 1s ease-in-out infinite alternate;
}

@keyframes vertical {
  0% { transform:translateY(-6px); }
100% { transform:translateY(  0px); }
}

h3 {
  margin-bottom: min(2vw, 20px);
  border-bottom: solid 2px #393939;
  font-size: min(4vw, 22px);
}

.h3-type2 {
  width: min(70%, 400px);
  padding: .25em 1em;
  clip-path: polygon(0 0, 96% 0, 100% 100%, 0% 100%);
  border-bottom: none;
  background-color: var(--accent-color);
  color: #fff;
}

h4 {
  margin-bottom: min(2vw, 20px);
  border-bottom: solid 2px #393939;
  font-size: clamp(12px, 3.2vw, 16px);
}

h3 span {
  padding-right: min(2vw, 10px);
  color: var(--accent-color);
  font-size: min(6vw, 30px);
}

iframe {
  width: 100%;
}

.txt-strong {
  background: linear-gradient(transparent 64%, #fcf69f 0%);
  color: var(--accent-color);
  font-weight: 700;
}

.detail-box {
  padding: min(4vw, 20px);
  margin: min(5vw, 40px) 0;
  background-color: #fbfbfb;
  border-radius: min(2vw, 10px);
  border: solid 1px #eee;
}

.detail-box h3 {
  color: var(--accent-color);
  border-bottom: solid 2px var(--accent-color);
  font-size: min(3.5vw, 18px);
}

.example-box {
  width: min(100%, 640px);
  margin-top: min(5vw, 40px);
  padding: min(4vw, 20px);
  background-color: #fff;
  border-radius: min(1vw, 5px);
  border: solid 1px #eee;
}

.example-box ol li {
  color: #393939;
}

.example-box ol li::before {
  color: #979797;
  display: none;
}

.example-box ol li p {
  padding: 1em;
}

.total-cnt {
  display: flex;
  justify-content: space-between;
  margin: 1.5em 0;
  padding: 0.5em;
  border-top: solid 1px #393939;
  border-bottom: solid 1px #393939;
  font-weight: 700;
}

.txt-this-total {
  margin: 0 0 1em;
  border-top: solid 1px #dfdede;
  border-bottom: none;
  font-weight: normal;
}

.bg-color {
  background-color: var(--secondary-color);
}

.bg-gray {
  background-color: #f7f7f7;
}

.content-inner {
  padding: min(5vw, 20px);
}

.margin-top {
  margin-top: min(5vw, 30px);
}

.top-padding-0 {
 padding-top: 0;
}

.txt-read {
  width: min(100%, 500px);
  margin: auto;
}

.pointlist,
.commonlist,
.arealist {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-bottom: min(3vw, 30px);
  padding: min(4vw, 20px);
  background-color: #fff;
  border: solid 2px var(--accent-color);
  border-radius: min(2vw, 10px);
}

.pointlist.no-border {
  border: none;
}

.pointlist li,
.arealist li {
  position: relative;
  padding-left: min(8vw, 40px);
  font-weight: 700;
}

.commonlist li,
.simple-list li {
  position: relative;
  padding-left: min(5vw, 15px);
  font-weight: 700;
}

.simple-list {
  padding: 0.5em 0.5em 0;
}

.pointlist li::after {
  position: absolute;
  content: "";
  width: min(5vw,30px);
  height: min(5vw,30px);
  background-image: url('../images/icon_check.svg');
  background-repeat: no-repeat;
  top: 0;
  left: 0;
}

.commonlist li::after {
  position: absolute;
  content: "";
  width: min(2vw,6px);
  height: min(2vw,6px);
  background-color: var(--accent-color);
  border-radius: 100%;
  top: 0.64em;
  left: 0;
}

.simple-list li::after {
  position: absolute;
  content: "";
  width: min(2vw,6px);
  height: min(2vw,6px);
  background-color: #393939;
  border-radius: 100%;
  top: 0.64em;
  left: 0;
}

.teach {
  margin-top: min(8vw, 80px);
}

.teach-read {
  padding: 1em .5em 0;
}

.teach .txt-big {
  padding-bottom: .5em;
  font-size: min(3.6vw, 18px);
  font-weight: 700;
}

.arealist li {
  padding-left: min(4vw, 20px);
}

.arealist li::after {
  position: absolute;
  content: "";
  width: min(2vw,6px);
  height: 100%;
  background-color: var(--accent-color);
  top: 0;
  bottom: 0;
  left: 0;
}

.arealist li .txt-bold span {
  padding-right: min(2vw, 10px);
  color: var(--accent-color);
}

.storelist li {
  padding: 0.8em;
  border-bottom: dotted 1px #393939;
}

.storelist li:last-child {
  margin-bottom: min(3vw, 40px);
}

.storelist li .modal-open {
  cursor: pointer;
}

.storelist li a,
.storelist li .modal-open {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  color: var(--text-color);
  text-decoration: none;
}

.storelist li a > p:first-of-type,
.storelist li .modal-open > p:first-of-type {
  font-weight: 700;
}

.storelist li a > p:last-of-type,
.storelist li .modal-open > p:last-of-type {
  position: relative;
  padding-right: min(3vw, 14px);
  font-size: .8em;
  color: var(--accent-color);
}

.storelist li a > p:last-of-type::after {
  position: absolute;
  content: "";
  width: min(1vw, 5px);
  height: min(1.4vw, 8px);
  clip-path: polygon(46% 0, 100% 50%, 46% 100%, 0 100%, 55% 50%, 0 0);
  background-color: var(--accent-color);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.storelist li a > p:last-of-type.btn-detail,
.storelist li .modal-open > p:last-of-type.btn-detail {
  padding: .25em 1em;
  border: solid .1em var(--accent-color);
  border-radius: 50vw;
}

.storelist li .modal-open > p:last-of-type.btn-detail::after {
  display: none;
}

.store-info {
  display: grid;
  grid-template-columns: min(22vw, 120px) 1fr;
  margin: 1em auto 2em;
}

.store-info dt,
.store-info dd {
  padding: .65em;
}

.store-info dt {
  font-weight: bold;
  color: #333;
}

.store-info dd {
  margin: 0;
  color: #555;
}

.store-info dt:nth-of-type(odd),
.store-info dd:nth-of-type(odd) {
  background-color: #f8f8f8;
}

.store-info .srore-address {
  line-height: 1.8;
}

.store-info .btn-phone {
  display: inline-block;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  padding-left: 20px;
}

.store-info .btn-phone::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23393939'%3E%3Cpath d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.977.977 0 00-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* モーダル */
.stores-data-wrap {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
}

.modal-content {
  position: fixed;
  background-color: #fff;
  padding: 1em;
  width: 95%;
  max-width: 640px;
  border-radius: 8px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.close-modal {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(7vw, 40px);
  height: min(7vw, 40px);
  background-color: var(--accent-color);
  border-radius: 100%;
  top: min(3vw, 70px);
  right: min(3vw, 70px);
  font-size: min(5vw, 20px);
  font-weight: bold;
  cursor: pointer;
  color: #fff;
}

.margin-bottom {
  margin-bottom: min(10vw, 80px);
}

.margin-bottom-30 {
  margin-bottom: min(3vw, 30px);
}

.txt-center {
  text-align: center;
  font-size: min(3.6vw, 18px);
  font-weight: 700;
}

.point-wrap {
  display: flex;
  align-items: center;
  min-height: min(50vw, 300px);
  margin-bottom: min(5vw, 50px);
  padding: min(2vw, 40px) min(2vw, 40px) min(2vw, 40px) 0; 
  background-size: cover;
  background-position: top right;
  border-radius: min(2vw, 10px);
}

.layout-r {
  justify-content: flex-end;
  background-position: top left;
  padding: min(2vw, 40px) 0 min(2vw, 40px) min(2vw, 40px); 
}

#point1 {
  background-image: url(../images/img_00.jpg);
}

#point2 {
  background-image: url(../images/img_01.webp);
}

#point3 {
  background-image: url(../images/img_02.jpg);
}

#point4 {
  background-image: url(../images/img_04.webp);
}

.point-wrap .pointlist {
  width: min(72%, 460px);
  margin-bottom: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0 min(1vw, 5px) min(1vw, 5px) 0;
}

.layout-r .pointlist {
  border-radius: min(1vw, 5px) 0 0 min(1vw, 5px);
}

.txt-bold {
  font-size: min(4vw, 22px);
  font-weight: 700;
}

.txt-bold-s {
  font-weight: 700;
}

.txt-bold-s + p {
  padding: min(2vw, 10px) min(4vw, 20px) 0;
}

#contact {
  text-align: center;
}

.frame-white {
  width: min(100%, 640px);
  margin-top: min(5vw, 40px);
  margin: 0 auto min(5vw, 40px);
  padding: min(4vw, 20px);
  background-color: #fff;
  border-radius: min(1vw, 5px);
  text-align: center;
}

#trainer {
  position: relative;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.swiper-pagination {
  position: static;
}

.swiper-trainer .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: min(80%, 372px);
  height: auto;
  background-color: #fff;
  border: solid 1px #efefef;
}

.swiper-trainer img {
  max-width: 100%;
  height: auto;
  padding: .5em .5em 1em;
  display: block;
}

.swiper-trainer .swiper-slide > div {
  position: relative;
}

.trainer-name {
  display: inline-block;
  min-width: min(50%, 200px);
  padding: 0 1em;
  background-color: #393939;
  color: #fff;
  top: -1em;
  left: -1em;
}

.trainer-comment {
  width: 100%;
  padding: 1.2em;
}

.trainer-comment dt {
  font-weight: 700;

}

.trainer-comment dd {
  padding: .5em;
}

.cta-wrap {
  margin-top: min(5vw, 40px);
  text-align: center;
}

.btn,
.btn-line {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  background-color: transparent;
  margin: min(3vw, 20px) 0;
  padding: min(2vw, 10px) min(4vw, 30px);
  border: solid 2px #979797;
  border-radius: 50vw;
  color: #979797;
  font-size: min(3vw, 18px);
  font-weight: 700;
  text-decoration: none;
}

.btn-line {
  display: flex;
  padding: min(3vw, 20px) min(4vw, 30px);
  background-color: #06c755;
  border: none;
  color: #fff;
  font-size: min(4vw, 22px);
}

.btn-line:hover {
  background-color: #01a746;
}

.btn-line i {
  display: inline-block;
  width: min(7vw, 40px);
  height: min(7vw, 40px);
}

#schedule img {
  width: min(100%, 500px);
}

.timeline-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.schedule-header {
  background-color: #333;
  color: white;
  margin-bottom: 2em;
  padding: .25em;
  text-align: center;
  font-weight: bold;
}

.timeline {
  position: relative;
  padding: 0 min(2vw, 30px);
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: min(14vw, 88px);
  width: 2px;
  background-color: var(--accent-color);
}

.timeline-item {
  overflow: hidden;
  display: flex;
  position: relative;
  margin-bottom: 15px;
  background-color: #ddd;
  border-radius: 50vw;
}

.time-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(25vw, 120px);
  flex-shrink: 0;
  background-color: var(--accent-color);
  color: white;
  outline: solid min(1vw, 2px) #fff;
  border-radius: 0 50vw 50vw 0;
  padding: 0 .5em;
  text-align: center;
  font-weight: 700;
  z-index: 2;
}

.schedule-content {
  flex-grow: 1;
  background-color: #ddd;
  padding: .25em 1em;
  display: flex;
  font-size: min(3.4vw, 16px);
  align-items: center;
}

.leave,
.leave .schedule-content {
  background-color: #ffcdd2;
}

.image-container {
  width: 100%;
  padding: 0 min(2vw, 10px) min(3vw, 20px) min(40vw, 230px);
}

.image-container img {
  max-width: 100%;
}

.section {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  margin-bottom: 25px;
  overflow: hidden;
}

.section-header {
  background-color: var(--primary-color);
  color: white;
  padding: 1em 1.5em;
  font-weight: bold;
}

.section-content {
  padding: 1.5em;
}

.location-card {
  display: flex;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.location-card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.employment-type {
  flex: 1;
  min-width: 300px;
  border-radius: 8px;
  padding: 15px;
}

.full-time {
  background-color: #f0fff0;
  border-left: 4px solid #588157;
}

.outsourcing {
  background-color: #f0f8ff;
  border-left: 4px solid #4A6B8A;
}

.full-time h3,
.outsourcing h3 {
  margin-bottom: 15px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.full-time h3 {
  color: #588157;
}

.outsourcing h3 {
  color: #4A6B8A;
}

.employment-type dl {
  padding-left: 1em;
}

.employment-type dt::before {
  content: "●";
}

.employment-type dd {
  padding-left: 1em;
}

.info {
  margin-top: 1em;
  padding: 1em 1.5em;
  background-color: #FFF9E6;
  border-radius: 5px;
}

.info-head {
  font-weight: 700;
}

.prefecture {
  font-weight: bold;
  margin-right: 15px;
  min-width: 80px;
  display: inline-block;
}

.stores {
  word-break: keep-all;
}

.stores-data-wrap {
  display: none;
}

.benefits-list, .requirements-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.benefit-item, .requirement-item {
  background-color: var(--secondary-color);
  padding: 10px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
}

.benefit-item:before, .requirement-item:before {
  content: "◆";
  margin-right: 8px;
  color: var(--accent-color);
}

.table-row {
  display: flex;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.table-row:last-child {
  border-bottom: none;
}

.table-cell-label {
  font-weight: bold;
  width: 30%;
  min-width: 100px;
}

.table-cell-content {
  width: 70%;
}

.application-steps {
  counter-reset: step-counter;
  margin: 20px 0;
}

.step {
  position: relative;
  padding-left: 50px;
  margin-bottom: 25px;
}

.step:before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}

.step-description {
  color: var(--light-text);
}

.note {
  background-color: #FFF9E6;
  border-left: 4px solid #FFD54F;
  padding: 15px;
  margin-top: 20px;
  border-radius: 4px;
}

.recruiting-list {
  list-style-type: none;
  margin-top: 10px;
  padding-left: 5px;
}

.recruiting-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.recruiting-list span {
  position: absolute;
  left: 0;
  color: #4a6b8a;
}

.border-bottom-dashed {
  border-bottom: dashed 1px #ccc;
}

.employment-flexbox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.common-treatment h3 {
  margin-bottom: 10px;
}

.treatment-flexbox {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.treatment-flexbox > div {
  flex: 1; min-width: 300px;
  border-radius: 8px;
  padding: 15px;
}

.treatment-flexbox > div:first-child {
  background-color: #f0f8ff;
}

.treatment-flexbox > div:last-child {
  background-color: #f0fff0;
}

.treatment-flexbox > div:first-child h3 {
  margin-bottom: 10px;
  color: #4a6b8a;
}

.treatment-flexbox > div:last-child h3 {
  margin-bottom: 10px;
  color: #588157;
}

.treatment-flexbox ul {
  list-style-type: none;
  padding-left: 5px;
}

.treatment-flexbox li {
  margin-bottom: 8px;
}

#apply-bottom {
  position: fixed;
  width: min(100%, 900px);
  margin: auto;
  padding: .5em 0 .8em;
  background-color: #fff;
  box-shadow: 0 -.1em .5em 0 rgba(0, 0, 0, .2);
  font-weight: 700;
  text-align: center;
  bottom: 0px;
  left: 0;
  right: 0;
  transition: bottom 0.3s ease;
  z-index: 10;
}

#apply-bottom > p > span {
  padding-bottom: .4em;
  color: #e50000;
}


#apply-bottom a {
  display: flex;
  position: relative;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  gap: .25em;
  width: min(95%, 500px);
  height: 100%;
  margin: 0 auto;
  padding: min(1.5vw, 4px) 0 min(.5vw, 2px);
  background-color: #06c755;
  border-radius: .2em;
  box-shadow: 0 .2em 0 0 #05a748;
  color: #fff;
  font-size: 1.5em;
  text-decoration: none;
}

#apply-bottom a::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #d2ffc7;
  transition: 300ms;
  animation: shinyshiny 5s 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shinyshiny {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  10% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  11% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  20% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

#apply-bottom i {
  display: inline-block;
  width: min(7vw, 40px);
  height: min(7vw, 40px);
}

@media (max-width: 768px) {
  .benefits-list, .requirements-list {
      grid-template-columns: 1fr;
  }
  
  .table-row {
      flex-direction: column;
  }
  
  .table-cell-label, .table-cell-content {
      width: 100%;
  }
  
  .table-cell-label {
      margin-bottom: 5px;
  }
}


footer {
  padding: 1em 1em min(30vw, 150px);
  text-align: center;
}


/*//////////////////////////////   SP    //////////////////////////////*/

@media screen and (max-width: 750px) {


}