@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400&family=Radio+Canada:wght@700&family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600&display=swap");
@media screen and (min-width: 680px) {
  .pc {
    display: inline;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
}
body {
  font-family: "Robot", "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  body {
    font-size: 90%;
  }
}

a {
  color: #79b787;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  color: #236332;
}

p {
  line-height: 2;
  padding: 1rem;
}

p.small {
  line-height: 1.8;
  padding: 0.3rem;
  font-size: 0.9rem;
}

section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

section.s-padding {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

/* fadeUp */
.fadeIn {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpT {
  opacity: 0;
}

.fade1 {
  animation-delay: 0.3s;
}

.fade2 {
  animation-delay: 0.6s;
}

.fade3 {
  animation-delay: 0.9s;
}

.fade4 {
  animation-delay: 1.2s;
}

.popup {
  animation-name: popUpAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes popUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.popupT {
  opacity: 0;
}

footer {
  background-color: #f3eeeb;
  text-align: center;
  padding: 3rem 0;
}
footer .copyright {
  font-size: 0.8rem;
  font-family: "EB Garamond", serif;
}

.copy {
  width: min(100vw, 700px);
  background-image: url(../img/palemark.svg);
  background-repeat: no-repeat;
  background-position: center;
  line-height: 2;
  color: rgb(22, 22, 22);
  font-family: "Noto Serif JP", serif;
}

@media (max-width: 768px) {
  .sphide {
    display: none;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1rem;
  line-height: 1.4;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span {
  display: block;
}

h2 {
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.6rem;
  line-height: 2;
  margin-bottom: 5rem;
  position: relative;
}
h2 ::after {
  content: "";
  width: 110px;
  height: 4px;
  display: inline-block;
  background-color: #79b787;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 55px);
}
h2 span {
  font-size: 0.8rem;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.2rem;
}

h2.white {
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.6rem;
  line-height: 2;
  margin-bottom: 5rem;
  position: relative;
}
h2.white ::after {
  content: "";
  width: 110px;
  height: 4px;
  display: inline-block;
  background-color: #fff;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 55px);
}
h2.white span {
  font-size: 0.8rem;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.2rem;
}

h3 {
  text-align: center;
  padding: 6px;
  border-radius: 20px;
  background-color: #79b787;
  color: white;
  margin-bottom: 1.5rem;
}
h3 img {
  height: 40px;
  margin-right: 1.3rem;
}

#kiteiarea h3 {
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  margin-bottom: 0.6rem;
  margin-top: 2.5rem;
}
#kiteiarea p {
  padding: 0;
}
#kiteiarea h4 {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}
#kiteiarea h5 {
  font-size: 1.2rem;
}
#kiteiarea ul {
  list-style: disc;
  list-style-position: inside;
}

h4 {
  font-weight: bold;
  border-left: 6px solid #79b787;
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  h4 {
    font-size: 1.2rem;
  }
}
h4 span {
  color: #79b787;
  font-size: 2rem;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

.price {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-bottom: 0.6rem;
}
.price:before {
  font-family: "Material Symbols Outlined";
  content: "\e836";
  color: #fabe00;
  padding-right: 0.3rem;
  display: inline-block;
  transform: translateY(3px); /* 上下方向の位置を微調整する */
}
.price span {
  font-size: 1.8rem;
  padding-left: 0.4rem;
}

.s-tag {
  background-color: #f4e0a8;
  border-radius: 12px;
  padding: 2px 10px;
  margin-right: 0.5rem;
  line-height: 2.5;
}

.relative {
  position: relative;
}

.bold {
  font-weight: bold;
  font-size: 110%;
}

#intro-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#intro-box {
  text-align: center;
  position: absolute;
  font-family: "Noto Serif JP", serif;
  color: rgb(255, 255, 255);
  font-size: 2rem;
  z-index: 5;
  text-align: left;
  line-height: 2;
  letter-spacing: 0.5rem;
}
@media (max-width: 768px) {
  #intro-box {
    font-size: 1.3rem;
    margin: 0 2rem;
    letter-spacing: 0.2rem;
  }
}

.kaso-head {
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  width: 100%;
  position: relative;
  color: white;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.4rem;
  font-size: 1.5rem;
  margin: auto;
  text-align: center;
}
.kaso-head::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: black;
  opacity: 0.6;
}
.kaso-head img {
  width: 70px;
}

.kaso-title {
  position: absolute;
}

#flow-head {
  background-image: url(../img/flow-bg.jpg);
}

#recruit-head {
  background-image: url(../img/recruit-bg.jpg);
}

#price-head {
  background-image: url(../img/price-bg.jpg);
}

#company-head {
  background-image: url(../img/company-bg.jpg);
}

@keyframes load {
  100% {
    opacity: 1;
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}

.swiper-slide img {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#kasou-head {
  padding-top: 12rem;
  padding-bottom: 4rem;
  background-image: url("../img/main_pc_black.jpg");
  background-size: cover;
  color: white;
}
#kasou-head h1 {
  font-size: 2.5rem;
  line-height: 1.6;
}
#kasou-head h1 span {
  display: block;
  font-size: 1rem;
}

/* :::::: toggle button :::::: */
#drawer {
  display: none;
}

label {
  cursor: pointer;
  position: fixed;
}

.open {
  z-index: 20;
  top: 10px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: #79b787;
  transition: background 0.6s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.open::before,
.open::after {
  content: "";
}

.open span,
.open::before,
.open::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 30%;
  width: 40%;
  border-bottom: 2px solid white;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.open::before {
  transform: translateY(-8px);
}

.open::after {
  transform: translateY(8px);
}

.close {
  z-index: 20;
  inset: 0;
  pointer-events: none;
  transition: background-color 0.3s;
}

#drawer:checked + .open {
  background: #236332;
  transform: translateX(-40%);
}
@media (max-width: 768px) {
  #drawer:checked + .open {
    transform: translateX(-5%);
  }
}

#drawer:checked + .open span {
  transform: scaleX(0);
}

#drawer:checked + .open::before {
  transform: rotate(135deg) scaleX(1.2);
}

#drawer:checked + .open::after {
  transform: rotate(-135deg) scaleX(1.2);
}

#drawer:checked ~ .close {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.3);
}

/* :::::: drawer menu :::::: */
.menu {
  z-index: 10;
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.8);
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .menu {
    width: 80%;
  }
}

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

.menu li {
  line-height: 1.8;
  font-size: 1.4rem;
  letter-spacing: 0.25rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

.menu li:not(:first-child) {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}

.menu a {
  display: block;
  padding: 1em 2em;
  color: white;
  text-decoration: inherit;
  transition: background 0.6s;
}

.menu a:hover {
  background: black;
}

#drawer:checked ~ .menu {
  transform: none;
}

.menu a:checked ~ .menu {
  transform: translateX(0%);
}

.btn-or {
  border-color: #b8b8b8;
  border-width: 2px;
}

.bggray {
  background-image: url(../img/wall.jpg);
}

.bggray2 {
  background-color: #f0efef;
}

.bgpalegreen {
  background-color: #e7f1e7;
}

.bggreen {
  background-color: #79b787;
  color: white;
}

.gaiyoarea {
  line-height: 2;
}
.gaiyoarea .row {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(199, 199, 199, 0.5);
}
.gaiyoarea .col-md-3 {
  font-weight: bold;
  text-align: center;
  color: #79b787;
  letter-spacing: 0.1rem;
}
@media (max-width: 768px) {
  .gaiyoarea .col-md-3 {
    text-align: left;
  }
}
.gaiyoarea .col-md-3.serif-title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
  letter-spacing: 0.5rem;
  color: #000;
  font-weight: normal;
}
@media (max-width: 768px) {
  .gaiyoarea {
    line-height: 1.8;
  }
}

.form-label {
  position: relative;
  font-weight: bold;
  letter-spacing: 0.05rem;
  font-size: 0.9rem;
}
.form-label span {
  margin-left: 0.5rem;
}

.text-combine {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}

.form-group {
  margin-bottom: 2rem;
}

.kojinjoho {
  font-size: 0.8rem;
  color: #666;
}

.tate {
  font-size: 1.3rem;
  writing-mode: vertical-rl;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.1em;
}

.btn {
  padding: 5px 16px;
  border: 2px solid #236332;
  letter-spacing: 0.1rem;
  background: #236332;
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  -webkit-appearance: none;
  transition: 0.3s;
}
.btn:hover {
  cursor: pointer;
  background: #14381d;
  border: 2px solid #14381d;
  color: white;
}
.btn.large {
  padding: 0.8rem 1rem;
}

.material-symbols-outlined {
  vertical-align: middle;
}

.backline {
  background-attachment: fixed;
  height: 200px;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 768px) {
  .backline {
    background-attachment: scroll;
  }
}

.logo_fadein {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
}
@media (max-width: 768px) {
  .logo_fadein {
    background: transparent;
    z-index: -10;
  }
}

.logo_fadein img {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 200;
}

ul {
  list-style: none;
  padding-inline-start: 0;
}

ul.history {
  list-style: none;
  padding-inline-start: 0;
}
ul.history li {
  padding-bottom: 1rem;
  border-bottom: 1px dotted gray;
}
ul.history li span {
  font-family: "EB Garamond", serif;
  font-size: 1.3rem;
  display: block;
}

#toplogo {
  z-index: 50;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (max-width: 768px) {
  #toplogo img {
    width: 250px;
  }
}

.whiteline {
  color: #000;
}
.whiteline span {
  padding: 0.4rem 0.8rem;
  background-color: rgba(255, 255, 255, 0.8549019608);
}

.blogbox {
  margin-bottom: 3rem;
}
.blogbox a .title {
  color: #000;
}

.blogbox-in {
  position: relative;
}
.blogbox-in .cate {
  background-color: #236332;
  padding: 3px 8px;
  color: white;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.8rem;
  z-index: 2;
}

ul.post-categories {
  margin-bottom: 0;
}
ul.post-categories a:hover {
  color: white;
}

.date {
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  margin-top: 0.8rem;
}

/*　画像の拡大　*/
.zoomIn img {
  transform: scale(1);
  transition: 0.3s ease-in-out;
  /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn a:hover img {
  /*hoverした時の変化*/
  transform: scale(1.2);
  /*拡大の値を変更したい場合はこの数値を変更*/
}

/*　画像のマスク　*/
.mask {
  display: block;
  line-height: 0;
  /*行の高さを0にする*/
  overflow: hidden;
  /*拡大してはみ出る要素を隠す*/
}

.servicebox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  padding: 1.5rem;
  background-color: #fff;
  transition: 0.3s;
  color: #000;
  height: 100%;
  margin-bottom: 1.5rem;
}
.servicebox img {
  width: 60px;
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
.servicebox:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  color: #000;
}
@media (max-width: 768px) {
  .servicebox {
    padding: 0.8rem;
  }
}

.servicebox2 {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  padding: 1.5rem;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  color: #000;
  height: 100%;
}
.servicebox2 h2 {
  margin-bottom: 2rem;
}

.flowbox {
  margin-bottom: 3rem;
  text-align: center;
  padding: 1rem;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  color: #000;
  border-radius: 10px;
  position: relative;
}
.flowbox:after {
  font-family: "Material Symbols Outlined";
  content: "\e5cf";
  font-size: 2rem;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
}
.flowbox:last-child:after {
  content: "";
}
.flowbox h2 {
  margin-bottom: 1rem;
  letter-spacing: 0.2rem;
}
@media (max-width: 768px) {
  .flowbox h2 {
    font-size: 1.3rem;
    letter-spacing: 0;
    margin-bottom: 0;
  }
}
.flowbox .no {
  font-family: "EB Garamond", serif;
  font-size: 3rem;
  color: #79b787;
  letter-spacing: 0.3rem;
}

.pc-width-center {
  margin: auto;
  width: min(80vw, 650px);
}

#pricearea {
  margin: auto;
  width: min(95vw, 650px);
}

#kiteiarea {
  margin: auto;
  width: min(95vw, 850px);
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 16;
}

.green {
  color: #79b787;
}

.youkou {
  position: relative;
  background-color: #fff;
  padding: 1.5rem;
  font-family: "EB Garamond", "Noto Serif JP", serif;
  font-size: 1.3rem;
  color: #000;
  text-align: center;
  font-size: 1.5rem;
  line-height: 2;
  height: 100%;
}
.youkou img {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.youkou h2 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.badge {
  margin-left: 0.4rem !important;
  padding: 0.35em 0.65em !important;
}

.red {
  color: red;
  font-size: 0.9rem;
  padding: 0;
}

.thumb {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}

.logos {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.logos div {
  margin: 1.3rem;
}
.logos a {
  color: black;
}/*# sourceMappingURL=tomeim.css.map */