@charset "UTF-8";

/*--------------------------------------------------------------
reset.css
リセット関係・clearfixなど

common.css
reset.cssのimport、レイアウト、TOPのスタイル記載したcss

sub.css
下層のレイアウトを記載したcss
--------------------------------------------------------------*/
/* fontIcon
:before,
:after {
	font-family: 'Kiwi Maru', serif;
font-family: 'Noto Serif JP', serif;
font-family: 'Raleway', sans-serif;
font-family: 'Whisper', cursive;
}
/* ------------------------------------------------------------ */
/* 全デバイス/画面サイズに共通 かつ 
　　479：スマートフォン縦：基本・レイアウト指定 */
/* ------------------------------------------------------------ */
* html body {
  background: url(null) fixed;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  font-size: 1.4em;
  line-height: 1.8;
  font-weight: 400;
  font-style: normal;
  font-family: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN W3",
    "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝",
    "ＭＳ 明朝", serif;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
  letter-spacing: 1.6px;
}

.pc {
  display: none;
}

.tablet {
  display: none;
}

.sp_only {
  display: block;
}

@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* ------------------------------------------------------------ */
/* img */
/* ------------------------------------------------------------ */
.main-logo,
.thum,
.image,
.banner {
  margin: 0 auto;
  text-align: center;
}

a {
  cursor: pointer;
  line-height: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* ------------------------------------------------------------ */
/* bg */
/* ------------------------------------------------------------ */
.bg {
  position: relative;
}

.bg::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(238, 235, 231, 1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/* ------------------------------------------------------------ */
/* common */
/* ------------------------------------------------------------ */
.wrapper {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

section {
  position: relative;
}

.inner {
  width: 100%;
  max-width: 100%;
  height: auto;
  padding: 0 1em;
  margin: 0 auto;
  clear: both;
}
.inner::after {
  content: "";
  clear: both;
  display: block;
}

.block {
  display: block;
}

.txt {
  font-family: "Kiwi Maru", serif;
  font-size: 1.4rem;
  font-weight: 300;
}

.small {
  font-size: 1.2rem;
}

.raleway {
  font-family: "Raleway", sans-serif;
}

.txt_center {
  text-align: center;
}

.txt_left {
  text-align: left;
}

.bold {
  font-weight: 700;
}

.kiwi {
  font-family: "Kiwi Maru", serif;
  font-weight: 300;
}

.content {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 10;
  padding: 54px 0 3em;
  margin: 0 auto;
}

.base {
  width: 100%;
  height: auto;
  position: relative;
  padding: 2.5em 0;
  margin: 0 auto;
}
.base.contact {
  padding: 0;
}

.aspect {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
/* ------------------------------------------------------------ */
/* header */
/* ------------------------------------------------------------ */
.main-header {
  width: 100%;
  height: auto;
  padding: 0.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  -webkit-overflow-scrolling: touch;
}

.main-header.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
  /* box-shadow: 0 0 20px -10px rgba(0, 0, 0, 0.5); */
}

.main-header .main-logo {
  width: 230px;
  margin: 0;
}

.main-header .main-logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.main-header .contact_btn.sp {
  width: 40px;
  height: 40px;
}

.main-header .contact_btn.sp a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: #00b7c7;
  border-radius: 50%;
}

.main-header .contact_btn.sp a::before {
  position: absolute;
  content: "";
  width: 23px;
  height: 23px;
  top: 48%;
  left: 44%;
  transform: translate(-50%, -50%);
  background: url(../img/icon_contact.svg) center / contain no-repeat;
}

/* ------------------------------------------------------------ */
/* ttl */
.main_ttl {
  position: relative;
  margin: 0 0 1em 0;
}
.main_ttl .en {
  position: absolute;
  font-family: "Whisper", cursive;
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(0, 117, 128, 0.2);
  transform: rotate(-10deg);
}

.main_ttl .ja {
  font-size: 2.4rem;
  font-weight: 600;
}

/* ------------------------------------------------------------ */
/* btn */
.btn {
  font-family: "Kiwi Maru", serif;
  text-align: center;
  height: auto;
  margin: 0.5rem;
  display: flex;
  justify-content: center;
}
.btn a {
  display: block;
  color: #fff;
  background: #00b7c7;
  border: 2px solid #00b7c7;
  border-radius: 10px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  letter-spacing: 2px;
  font-weight: 300;
  padding: 0.8em 2em;
}
.btn a:hover {
  opacity: 1;
  background: #fff;
  color: #00b7c7;
}

/* ------------------------------------------------------------ */
/* flx_box */
.flx_box {
  width: 100%;
  height: auto;
  margin: 0 auto 1em;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
/* カラム共通 */
.flx_item {
  width: 100%;
  height: auto;
  margin: 0 auto 1em;
}

@keyframes fadeInup {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ------------------------------------------------------------ */
/* mainvisual */
.mainvisual {
  position: relative;
  padding: 1em;
}
.mainvisual::before {
  position: absolute;
  content: "Recruit!";
  font-family: "Whisper", cursive;
  font-size: 5.5rem;
  color: rgba(0, 117, 128, 0.2);
  top: -15%;
  left: 1%;
  transform: rotate(-10deg);
  z-index: 10;
}

/* message */
.message .main_ttl .en {
  top: -25px;
}

.message .txt {
  position: relative;
  padding: 3em 0 0 0;
}

.message .txt::before {
  position: absolute;
  content: "";
  width: 180px;
  height: 180px;
  background: url(../img/logo_icon.svg) center / contain no-repeat;
  top: -60px;
  right: -30px;
}

/* feature */
.feature .main_ttl .en {
  top: -35px;
  left: 50%;
  transform: translateX(-50%) rotate(-10deg);
}

.feature .flx_box {
  margin: 1em 0;
}
.feature .flx_box .flx_item {
  margin: 2em 0;
}

.feature .txt_box {
  position: relative;
  text-align: center;
  padding: 1em 0;
}

.feature .item .illust_box {
  position: relative;
  min-width: 300px;
  min-height: 15em;
}

.feature .item .illust_box::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 300px;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.feature .item:nth-of-type(1) .illust_box::before {
  background: url(../img/illust01.png) center / contain no-repeat;
}

.feature .item:nth-of-type(2) .illust_box::before {
  background: url(../img/illust02.png) center / contain no-repeat;
}

.feature .item:nth-of-type(3) .illust_box::before {
  background: url(../img/illust03.png) center / contain no-repeat;
}

.feature .txt_box::before {
  position: absolute;
  content: "";
  width: 500px;
  height: 400px;
  background: url(../img/Ellipse.svg) center / contain no-repeat;
  left: -40%;
  top: -28px;
  z-index: -1;
}

.feature .txt_box .num,
.feature .txt_box .ttl {
  color: #fff;
}

.feature .txt_box .num {
  font-size: 4.4rem;
  line-height: 1;
}

.feature .txt_box .ttl {
  font-size: 1.8rem;
  margin: 0 0 1em 0;
}

/* recruit */
.recruit.base {
  padding: 2.5em 0 4em;
}

.recruit .round_bg {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 5em 1em 2.5em;
}

.recruit .main_ttl .en {
  top: -35px;
  left: 50%;
  transform: translateX(-50%) rotate(-10deg);
}

.recruit .round_bg .data {
  margin: 3em 0 2em;
}

.recruit .round_bg .dl_list {
  position: relative;
  padding: 0.8em 0;
}

.recruit .round_bg .dl_list::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #00b7c7 3px, transparent 3px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  bottom: 0;
  left: 0;
}

.recruit .round_bg .dl_list .dt {
  font-size: 1.6rem;
  font-weight: 600;
}
/* ------------------------------------------------------------ */
/* contact_area */
.contact_area {
  position: relative;
}

.contact_area.base {
  padding: 5em 0 3em;
}

.contact_area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../img/contact_img.png) center / cover no-repeat;
  z-index: -1;
}

.contact_area .main_ttl .en {
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.3);
}

.contact_area .main_ttl .ja {
  font-size: 2rem;
  color: #fff;
}

.contact_area .txt {
  color: #fff;
  font-weight: 300;
  margin: 1em 0 2em;
}
/* ------------------------------------------------------------ */
/* contact */
.contact .notice {
  text-align: center;
  margin: 0 auto 2em;
}
/* .form-box dl {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0.8em 0;
}
.form-box dt,
.form-box dd {
  width: 100%;
  display: flex;
  align-items: center;
}
.form-box dt {
  font-weight: 700;
  padding: 0 5px;
}
.contact span.required {
  color: #e84610;
  line-height: 1;
  display: inline-block;
  margin-left: 5px;
}
.form-box .note {
  font-size: 0.8em;
}
.form-box input[type="text"],
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 8px 10px;
  font-size: 1em;
  background: #fff;
  margin: 5px;
  border: 1px solid #4d4d4d;
  border-radius: 0;
  cursor: pointer;
}
.form-box input[type="text"]:focus,
.form-box select:focus,
.form-box textarea:focus {
  outline: 2px solid #00b7c7;
}

.form-box input.sizeS {
  width: 35%;
}
.form-box .submit-item {
  padding: 2em 0;
  text-align: center;
}
.form-box input[type="submit"],
.form-box input[type="reset"],
.form-box input[type="button"],
.form-box a.btn {
  display: inline-block;
  padding: 0.8em 1.5em;
  color: #fff;
  background: #888;
  margin: 5px 10px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  letter-spacing: 2px;
}
.form-box input[type="submit"] {
  background: #00b7c7;
  color: #fff;
}
.form-box input[type="submit"]:hover,
.form-box input[type="reset"]:hover,
.form-box input[type="button"]:hover,
.form-box a.btn {
  background: #111;
  color: #fff;
}

.confirm .confirm-ttl {
  font-size: 1.2em;
  margin: 0 auto 1em;
  text-align: center;
}

.confirm .form-box dl:last-of-type {
  border: none;
}
p.error_messe {
  color: #e84611;
  margin: 0 auto 0.5em;
}

.policy a {
  color: #00b7c7;
} */
/* ------------------------------------------------------------ */
/* footer */
/* ------------------------------------------------------------ */
.main-footer {
  width: 100%;
  padding: 0 1em 0.5em;
  z-index: 9998;
}

.main-footer .main-logo {
  max-width: 280px;
}

.main-footer .address {
  margin: 1em 0;
}

.copy {
  font-size: 1rem;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 350px) {
  /* common */
  .base {
    padding: 3em 0 2.5em;
  }

  /* feature */
  .feature .txt_box {
    padding: 2em 0;
  }

  .feature .txt_box::before {
    width: 450px;
    height: 450px;
    left: -15%;
    top: -50px;
  }
}

@media screen and (min-width: 425px) {
  /* mainvisual */
  .mainvisual {
    padding: 2em 1em;
  }

  .mainvisual::before {
    font-size: 6.5rem;
  }

  /* ttl */
  .main_ttl .en {
    font-size: 6.5rem;
  }

  /* feature */
  .feature .txt_box {
    padding: 3em 0;
  }

  .feature .txt_box::before {
    width: 500px;
    height: 500px;
    left: -15%;
    top: -50px;
  }
}

@media screen and (min-width: 480px) {
  /* スマートフォン横 */

  /* ------------------------------------------------------------ */
  /* common */
  .sp {
    display: block;
  }

  .inner {
    padding: 0 2em;
  }

  /* main-header */
  .main-header .link-item {
    padding: 1px 0;
  }

  /* ------------------------------------------------------------ */
  /* flx_box */

  /* 2カラム */
  .flx_2cols .flx_item {
    width: calc(100% / 2 - 0.5em);
    margin: 0 0.5em 1em 0;
  }
  .flx_2cols .flx_item:nth-of-type(2n),
  .flx_2cols .flx_item:last-of-type {
    margin: 0 0 1em;
  }

  /* ------------------------------------------------------------ */
  /* flx_box */

  /* 2カラム */
  .flx_2cols .flx_item {
    width: calc(100% / 2 - 1em);
    margin: 0 1em 2em 0;
  }
  .flx_2cols .flx_item:nth-of-type(2n),
  .flx_2cols .flx_item:last-of-type {
    margin: 0 0 2em;
  }

  /* ------------------------------------------------------------ */
  /* section */
  .mainvisual img {
    width: 100%;
  }

  /* ------------------------------------------------------------ */
  /* contact */
  .form-box {
    padding: 5% 5%;
  }
}
@media screen and (min-width: 650px) {
  /* ------------------------------------------------------------ */
  /* common */
  .sp_only {
    display: none;
  }
  .tablet {
    display: block;
  }
  /* ------------------------------------------------------------ */
  /* header */
  .main-header {
    padding: 1em;
  }

  .main-header .main-logo {
    width: 300px;
  }

  /* ------------------------------------------------------------ */
  /* content mv ttl */
  .content {
    padding: 68px 0 3em;
  }
  .contact .content {
    display: block;
    padding: 0;
    margin: 80px auto 180px;
  }
  @media screen and (max-width: 1024px) {
    .contact .content{
      margin: 40px auto 80px;
    }
  }
  

  .mainvisual::before {
    top: -10%;
    font-size: 8rem;
  }

  .main_ttl .en {
    font-size: 8rem;
    font-weight: 400;
  }

  /* message */
  .message .txt {
    text-align: center;
  }

  /* feature */
  .feature .main_ttl .en {
    top: -53px;
  }

  .feature .box .item {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4em 0;
  }

  .feature .box .item:nth-of-type(2) {
    margin: 4em 0 7em;
    flex-direction: row-reverse;
  }

  .feature .box .item .txt_box {
    width: 50%;
  }

  .feature .txt_box::before {
    width: 420px;
    height: 420px;
    left: -23%;
    top: -40px;
  }

  .feature .item:nth-of-type(3) .txt_box::before {
    width: 450px;
    height: 450px;
    left: -30%;
    top: -32px;
  }

  .feature .item .illust_box::before {
    top: -30px;
    left: inherit;
    transform: inherit;
  }

  .feature .item:nth-of-type(2) .illust_box::before {
    left: -15px;
  }

  /* recruit */
  .recruit .main_ttl .en {
    top: -53px;
  }

  .recruit .round_bg {
    padding: 7em 2em 2.5em;
  }

  .recruit .round_bg .dl_list {
    display: flex;
    align-items: baseline;
    padding: 1em 0;
  }

  .recruit .round_bg .dl_list .dt {
    width: 25%;
  }

  .recruit .round_bg .dl_list .txt {
    width: 70%;
  }

  /* contact_area */
  .contact_area {
    text-align: center;
  }

  .contact_area .main_ttl .en {
    top: -48px;
  }

  .contact_area .txt {
    position: relative;
    display: inline-block;
    margin: 3em 0 4em;
  }

  .contact_area .txt::before,
  .contact_area .txt::after {
    position: absolute;
    content: "ー";
    color: #fff;
  }

  .contact_area .txt::before {
    left: -15px;
  }

  .contact_area .txt::after {
    right: -15px;
  }

  .main-footer .flx_box {
    justify-content: space-around;
    align-items: center;
  }
  .main-footer .main-logo {
    max-width: 260px;
    margin: 0;
  }
  .main-footer .main-logo {
  }
}

@media screen and (min-width: 768px) {
  .message .txt::before {
    width: 200px;
    height: 200px;
    top: -80px;
    right: -40px;
  }

  .feature .txt_box::before {
    left: -10%;
  }

  .feature .item:nth-of-type(3) .txt_box::before {
    width: 470px;
    height: 470px;
    left: -15%;
  }

  .feature .item .illust_box {
    min-width: 340px;
    min-height: 18em;
  }
  .feature .item .illust_box::before {
    width: 340px;
    height: 340px;
  }
}
@media screen and (min-width: 1025px) {
  /* デスクトップ/タブレット横 */

  /* ------------------------------------------------------------ */
  /* common */
  body {
    font-size: 1.6em;
  }

  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

  .content {
    padding: 100px 0 3em;
  }

  .inner {
    max-width: 1080px;
  }

  .base {
    padding: 5em 0;
  }

  .main_ttl .ja {
    font-size: 3.2rem;
  }

  .main_ttl .en {
    font-size: 11rem;
    font-weight: 400;
  }

  .feature .txt_box .ttl {
    font-size: 2.4rem;
    margin: 0 0 1.5em 0;
  }

  .txt {
    font-size: 1.6rem;
  }

  .btn a {
    padding: 0.8em 4em;
  }

  /* ------------------------------------------------------------ */
  /* header */
  /* ------------------------------------------------------------ */
  .main-header {
    padding: 0;
  }

  .main-header .main-logo {
    width: 300px;
    padding: 1em;
  }
  .main-header .main-logo a {
  }

  .main-header .contact_btn {
    height: 100%;
  }

  .main-header .contact_btn a {
    display: block;
    text-align: center;
    background: #00b7c7;
    border: 2px solid #00b7c7;
    border-radius: 0 0 0 25px;
    color: #fff;
    padding: 0.5em 2em 1em;
  }

  .main-header .contact_btn a .en {
    display: block;
    font-family: "Whisper", cursive;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.3;
  }

  .main-header .contact_btn a .ja {
    display: block;
  }

  .main-header .contact_btn a:hover {
    color: #00b7c7;
    background: #fff;
  }

  /* ------------------------------------------------------------ */
  /* mainvisual */
  .mainvisual::before {
    top: -8%;
    font-size: 14rem;
    transform: rotate(-15deg);
  }

  /* message */
  .message .txt::before {
    width: 300px;
    height: 300px;
    top: -200px;
    right: -70px;
  }

  .message .main_ttl .en {
    top: -50px;
  }

  /* feature */
  .feature .box .item .txt_box {
    width: 45%;
    margin: 0 1em;
  }

  .feature .txt_box::before,
  .feature .item:nth-of-type(3) .txt_box::before {
    width: 520px;
    height: 520px;
    left: -12%;
    top: -52px;
  }

  .feature .item:nth-of-type(2) .txt_box::before {
    width: 500px;
    height: 500px;
    left: -9%;
    top: -70px;
  }

  .feature .item .illust_box {
    min-width: 400px;
    min-height: 18em;
  }

  .feature .item .illust_box::before {
    width: 400px;
    height: 400px;
    left: -5%;
  }

  .feature .item:nth-of-type(2) .illust_box::before {
    left: 0;
  }

  /* recruit */
  .recruit.base {
    padding: 2.5em 0 7em;
  }

  .recruit .round_bg .dl_list .dt {
    font-size: 1.8rem;
    font-weight: 400;
  }

  /* contact_area */
  .contact_area.base {
    padding: 8em 0 6em;
  }

  .contact_area .main_ttl .en {
    top: -70px;
    font-weight: 400;
  }

  .contact_area .main_ttl .ja {
    font-size: 3.2rem;
  }

  .contact_area .txt {
    font-size: 1.8rem;
    margin: 2.5em 0 4em;
  }
  /* ------------------------------------------------------------ */
  /* main-footer */
  .main-footer .flx_box {
    justify-content: center;
  }

  .main-footer .main-logo {
    max-width: 300px;
    margin: 0 3em 0 0;
  }

  .copy {
    font-size: 1.2rem;
  }
}

/* recruit top */

.home .content {
  margin-top: 100px;
  padding: 0;
}
.home .mainvisual {
  padding: 0 !important;
}
.home .swiper-slide {
  display: block;
  width: 90%;
  max-width: 1280px;
  margin: 0 0 0 auto;
  height: 674px;
  overflow: hidden;
  border-radius: 130px 0 0 130px;
}
@media screen and (max-width: 1024px) {	
	.home .swiper-slide{
		height: 414px;
}
@media screen and (max-width: 768px) {	
	.home .content {
		margin-top: 80px;
	}
	
	.home .swiper-slide{
		height: 194px;
		border-radius: 60px 0 0 60px;
	}
}