@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 10px;
}

body {
  /* プロジェクトによって変動 */
  background-color: #FFF;
  color: #333333;
  line-height: 1.8;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-variant-numeric: tabular-nums;
  /* safari hover対策 */
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
  line-height: 1;
}

button {
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

select {
  color: #333;
}

@media screen and (max-width: 650px) {
  html {
    /* 1rem = 50pxと再定義 */
    font-size: 5px;
  }
  body {
    font-size: 2.8rem;
  }
  h1 {
    font-size: 8rem;
  }
  h2 {
    font-size: 4rem;
  }
  h3 {
    font-size: 3.6rem;
  }
  h4 {
    font-size: 3.6rem;
  }
}
/* ///////////////////////////////////////




アニメーション




/////////////////////////////////////// */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(30px);
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(30px);
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger,
.fadeUpTrigger,
.fadeRightTrigger,
.fadeLeftTrigger {
  opacity: 0;
}

.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime; /*アニメーションの定義名*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

/*アニメーションの開始から終了までを指定する*/
@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 2s ease-out forwards;
          animation: text_anime_on 2s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ///////////////////////////////////////

背景色・テキストカラー

/////////////////////////////////////// */
/* ///////////////////////////////////////

フォント

/////////////////////////////////////// */
/* ///////////////////////////////////////

ボーダー

/////////////////////////////////////// */
/* ///////////////////////////////////////

ボックスシャドウ

/////////////////////////////////////// */
/* ///////////////////////////////////////




共通




/////////////////////////////////////// */
body {
  color: #464646;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
body a {
  text-decoration: none;
  cursor: pointer;
}

/* ///////////////////////////////////////




画面幅




/////////////////////////////////////// */
.large_container {
  max-width: 1280px;
  width: 90%;
  margin: auto;
}

.large_container02 {
  max-width: 1320px;
  width: 90%;
  margin: auto;
}

.container {
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}

.mid_container {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.sm_container {
  max-width: 600px;
  width: 90%;
  margin: auto;
}

/* ///////////////////////////////////////




余白・改行




/////////////////////////////////////// */
.mt_100 {
  margin-top: 10rem;
}

.mt_60 {
  margin-top: 6rem;
}

.mt_40 {
  margin-top: 4rem;
}

.mt_24 {
  margin-top: 2.4rem;
}

.mt_16 {
  margin-top: 1.6rem;
}

.ptb_100 {
  padding: 10rem 0 10rem 0;
}

.pb_100 {
  padding-bottom: 10rem;
}

.indent {
  text-indent: -1em !important;
  padding-left: 1em !important;
}

.center {
  text-align: center;
}

@media screen and (max-width: 650px) {
  .pc_none {
    display: inline-block;
  }
}
/* ///////////////////////////////////////




ボタン



/////////////////////////////////////// */
.global_nav .btn_green, .global_nav .btn_white {
  width: 200px;
  height: 50px;
  line-height: 2.6;
}
.global_nav .btn_green a, .global_nav .btn_white a {
  font-size: 1.6rem;
  display: inline-block;
  width: 100%;
  height: 100%;
}
.global_nav .btn_green::before, .global_nav .btn_white::before {
  width: 40px;
  height: 40px;
}
.global_nav .btn_green a {
  color: #FFFFFF;
}
.global_nav .btn_white a {
  color: #60B6BC;
}

.btn_green {
  display: inline-block;
  text-align: center;
  width: 280px;
  height: 55px;
  background-color: #60B6BC;
  border-radius: 999px;
  line-height: 2.8;
  font-weight: 700;
  color: #FFFFFF;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  transition: 0.5s;
}
.btn_green:hover {
  opacity: 0.7;
  color: #FFFFFF;
  transform: scale(1.05);
}
.btn_green::before {
  content: "";
  display: inline-block;
  background-image: url(../image/arrow.png);
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.btn_white {
  text-align: center;
  width: 280px;
  height: 55px;
  background-color: #FFFFFF;
  border-radius: 999px;
  line-height: 2.8;
  font-weight: 700;
  box-sizing: border-box;
  border: 1px solid #60B6BC;
  display: inline-block;
  color: #60B6BC;
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  transition: 0.5s;
}
.btn_white:hover {
  opacity: 0.7;
  transform: scale(1.05);
}
.btn_white::before {
  content: "";
  display: inline-block;
  background-image: url(../image/arrow02.png);
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 650px) {
  .global_nav .btn_green {
    height: 45px;
    width: 200px;
  }
  .btn_green, .btn_white {
    width: 200px;
    height: 45px;
    font-size: 3.2rem;
  }
  .btn_green::before, .btn_white::before {
    height: 35px;
    width: 35px;
  }
}
/* ///////////////////////////////////////




コンテンツのタイトル




/////////////////////////////////////// */
.contents_title h2 {
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
.contents_title p {
  font-family: "Quicksand", sans-serif;
  color: #60B6BC;
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.contents_title p::before {
  content: "";
  display: inline-block;
  height: 27px;
  width: 27px;
  background-image: url(../image/circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}

.contents_title_center {
  text-align: center;
}
.contents_title_center h2 {
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
.contents_title_center p {
  font-family: "Quicksand", sans-serif;
  color: #60B6BC;
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contents_title_center p::before {
  content: "";
  display: inline-block;
  height: 27px;
  width: 27px;
  background-image: url(../image/circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}

.contents_title_white {
  text-align: center;
}
.contents_title_white h2 {
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #FFFFFF;
}
.contents_title_white p {
  font-family: "Quicksand", sans-serif;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contents_title_white p::before {
  content: "";
  display: inline-block;
  height: 27px;
  width: 27px;
  background-image: url(../image/circle03.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}

@media screen and (max-width: 980px) {
  .contents_title_white .pc_none {
    display: inline-block;
  }
}
@media screen and (max-width: 650px) {
  .contents_title h2 {
    font-size: 4.8rem;
  }
  .contents_title p {
    font-size: 3.6rem;
  }
  .contents_title p::before {
    width: 20px;
  }
  .contents_title_center h2 {
    font-size: 4.8rem;
  }
  .contents_title_center p {
    font-size: 3.6rem;
  }
  .contents_title_center p::before {
    width: 20px;
  }
  .contents_title_white h2 {
    font-size: 4.8rem;
  }
  .contents_title_white p {
    font-size: 3.6rem;
  }
  .contents_title_white p::before {
    width: 20px;
  }
} /* ///////////////////////////////////////




コンタクトエリア




/////////////////////////////////////// */
.contact_item {
  border-radius: 4rem;
  overflow: hidden;
  position: relative;
  flex: 1;
}

.contact_item img {
  width: 100%;
  height: 340px;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact .contents {
  background: linear-gradient(60deg, #A6DAFF 0%, #7AD4E2 100%);
  padding: 4rem 6rem 15rem 6rem;
  box-sizing: border-box;
}
.contact .contents p {
  font-weight: 500;
  color: #FFFFFF;
}

.contact_item02 .contents {
  background: linear-gradient(60deg, #FFBDA1 0%, #EA99A6 100%);
}
.contact_item02 .link a {
  font-size: 1.8rem;
  color: #EA99A6;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.contact_item02 .link a::after {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background-image: url(../image/arrow03.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.contact .contents_title {
  color: #FFFFFF;
}
.contact .contents_title p {
  color: #FFFFFF;
}
.contact .contents_title p::before {
  background-image: url(../image/circle02.png);
  opacity: 0.8;
}

.link {
  position: absolute;
  background-color: #FFFFFF;
  border-radius: 4rem 0 0 0;
  bottom: 0;
  right: 0;
  width: 40%;
  padding: 3.2rem 0;
  text-align: center;
}
.link > div {
  position: relative;
  height: 100%;
  width: 100%;
}
.link > div .corner {
  left: -20px;
  bottom: -32px;
  transform: rotate(3deg);
}
.link > div .corner02 {
  right: 0px;
  left: auto;
  bottom: 78px;
  transform: rotate(-5deg);
}
.link a {
  font-size: 1.8rem;
  color: #60B6BC;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.link a::after {
  content: "";
  display: inline-block;
  width: 45px;
  height: 45px;
  background-image: url(../image/arrow02.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.contact_wrap {
  display: flex;
  gap: 6rem;
}

@media screen and (max-width: 980px) {
  .contact_wrap {
    flex-direction: column;
    align-items: center;
  }
  .contact_item {
    max-width: 600px;
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .contact_wrap {
    gap: 4rem;
  }
  .contact_lead {
    font-size: 3.6rem;
  }
  .contact_item {
    max-width: 400px;
  }
  .contact_item img {
    height: 210px;
  }
  .link {
    width: 50%;
    padding: 2rem 0;
  }
  .link > div .corner {
    bottom: -11px;
  }
  .link > div .corner02 {
    bottom: 41px;
  }
  .link a {
    z-index: 1;
    font-size: 3.2rem;
  }
  .link a::after {
    width: 30px;
    height: 30px;
  }
  .contact_item02 .link a {
    font-size: 3.2rem;
    z-index: 1;
  }
  .contact_item02 .link a::after {
    width: 30px;
    height: 30px;
  }
} /* ///////////////////////////////////////




フッター




/////////////////////////////////////// */
footer {
  border-top: 1px solid #CFCFCF;
}

.footer_wrap {
  padding: 6rem 0 6.4rem 0;
  display: flex;
  justify-content: space-between;
}

.footer_wrap .logo {
  width: 180px;
}
.footer_wrap .logo img {
  width: 100%;
}

.tel_wrap {
  margin-top: 1.6rem;
}
.tel_wrap span {
  font-weight: 700;
}

.footer_wrap ul li {
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}
.footer_wrap ul li a {
  transition: 0.5s;
}
.footer_wrap ul li a:hover {
  color: #60B6BC;
}

.footer_wrap .sub-menu li {
  font-size: 12px;
  font-weight: 400;
}
.footer_wrap .sub-menu li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: #60B6BC;
  margin-right: 5px;
  line-height: 1.6;
}

.footer_menu {
  width: 55%;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.footer_wrap .sub-menu {
  gap: 10px;
  margin-top: 1.6rem;
}

.footer_menu_list ul {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  row-gap: 2rem;
  flex-direction: column;
  flex-wrap: wrap;
  height: 191px;
}

.parent_menu {
  width: 100%;
}

.banner_wrap {
  display: flex;
  gap: 1.5rem;
}
.banner_wrap a {
  flex: 1;
  transition: 0.5s;
}
.banner_wrap a:hover {
  transform: scale(1.05);
  box-shadow: 10px 10px 20px 0px rgba(51, 51, 51, 0.05);
}
.banner_wrap img {
  width: 100%;
}

.copy_wrap {
  background-color: #60B6BC;
  padding: 2rem 0;
  text-align: center;
}

.copy {
  color: #FFFFFF;
  font-family: "Quicksand", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
}
.copy p {
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 980px) {
  .footer_wrap {
    flex-direction: column;
    gap: 4rem;
  }
  .footer_menu {
    width: 100%;
  }
  .footer_menu_list ul {
    flex-direction: row;
    height: auto;
  }
  .footer_menu_list ul li {
    width: 38%;
  }
  .footer_wrap .sub-menu {
    flex-direction: column;
  }
  .footer_wrap .sub-menu li {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .footer_menu {
    gap: 4rem;
  }
  .footer_wrap .logo {
    width: 115px;
  }
  .footer_menu_list ul li {
    width: 42%;
  }
  .footer_menu_list .sub-menu {
    margin-top: 10px;
  }
  .footer_menu_list .sub-menu li {
    font-size: 10px;
  }
  .tel_wrap {
    margin-top: 2rem;
  }
  .banner_wrap {
    flex-direction: column;
    align-items: center;
  }
  .banner_wrap a {
    max-width: 400px;
    width: 100%;
  }
  .copy {
    font-size: 10px;
  }
}
/* ///////////////////////////////////////




メインビジュアル




/////////////////////////////////////// */
.mv.change-color {
  opacity: 0.6;
  transition: 0.3s;
}

.mv_wrap {
  contain: paint;
  height: 1700px;
}

.mv {
  position: sticky;
  position: -webkit-sticky; /* Safari */
  top: 0;
  height: 56vw;
  width: 100%;
  background-image: url(../image/bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.swiper {
  text-align: center;
  margin: auto;
  top: 150px !important;
  overflow: visible !important;
}

.mv img {
  width: 95%;
  height: auto;
}

@-webkit-keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
/* ///////////////////////////////////////




ABOUT




/////////////////////////////////////// */
.about {
  text-align: center;
  padding-top: 5rem;
  position: relative;
  z-index: 1;
}
.about::before {
  content: "";
  display: inline-block;
  background-image: url(../image/cloud01.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16%;
  height: 100%;
  aspect-ratio: 1/2;
  position: absolute;
  top: 3%;
  left: 5%;
  z-index: -1;
}
.about::after {
  content: "";
  display: inline-block;
  background-image: url(../image/cloud02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 16%;
  height: 100%;
  aspect-ratio: 1/2;
  position: absolute;
  top: 0;
  right: 5%;
  z-index: -1;
}

.about h1 {
  font-size: 4rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
}

.about h1 .blue {
  color: #60B6BC;
}

.about h1 .pink {
  color: #EA99A6;
}

.about_txt {
  line-height: 2.4;
  margin-top: 2.4rem;
}

/* ///////////////////////////////////////

About ループスライダー

/////////////////////////////////////// */
.loopSlide {
  padding: 10rem 0;
  position: relative;
  display: flex;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.loopSlide ul {
  padding: 0;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}
.loopSlide ul:first-child {
  -webkit-animation: slide1 60s -30s linear infinite;
          animation: slide1 60s -30s linear infinite;
}
.loopSlide ul:first-child li:nth-of-type(even) {
  position: relative;
  top: 40px;
}
.loopSlide ul:last-child {
  -webkit-animation: slide2 60s linear infinite;
          animation: slide2 60s linear infinite;
}
.loopSlide ul:last-child li:nth-of-type(odd) {
  position: relative;
  top: 40px;
}
.loopSlide ul li {
  width: 360px;
  margin-right: 4rem;
}
.loopSlide ul li img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}

@-webkit-keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* ///////////////////////////////////////




POINT




/////////////////////////////////////// */
.point {
  background: linear-gradient(120deg, #ECFBFF 0%, #FFF3F5 100%);
  border-radius: 10rem;
}

.point_head {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.point_head p {
  background-color: #60B6BC;
  color: #FFFFFF;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  font-size: 2.4rem;
  text-align: center;
  line-height: 2.7;
  flex-shrink: 0;
}

.point_head h3 {
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #60B6BC;
  font-weight: 500;
}

.point_list {
  background-color: #FFFFFF;
  box-sizing: border-box;
  padding: 4rem;
  border-radius: 6rem 6rem 6rem 0;
  box-shadow: 0px 0px 30px 0px rgba(96, 182, 203, 0.4);
  width: calc((100% - 4rem) / 2);
}
.point_list:nth-of-type(2), .point_list:nth-of-type(3) {
  box-shadow: 0px 0px 30px 0px rgba(234, 153, 166, 0.4);
}
.point_list:nth-of-type(2) .point_head p, .point_list:nth-of-type(3) .point_head p {
  background-color: #EA99A6;
}
.point_list:nth-of-type(2) .point_head h3, .point_list:nth-of-type(3) .point_head h3 {
  color: #EA99A6;
}

.point_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

/* ///////////////////////////////////////




SERVICE




/////////////////////////////////////// */
.service {
  overflow: hidden;
}

.service .wrap {
  position: relative;
}

.service .large_container {
  margin: 0 0 0 auto;
  overflow: hidden;
}

.service_foot {
  font-weight: 500;
}

.service_item {
  width: 100%;
  height: 500px;
  background-image: url(../image/service01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  position: relative;
  transition: 0.5s;
}
.service_item a {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 1;
  left: 0;
}
.service_item:hover {
  opacity: 0.7;
  transform: scale(0.95);
}

.slider2 .swiper-slide {
  width: 400px !important;
  height: 500px;
}
.slider2 .swiper-slide:not(:last-child) {
  margin-right: 4rem !important;
}

.service_name {
  position: absolute;
  bottom: 0;
  left: 0;
}

.slider2 .swiper-slide:first-of-type .service_name, .slider2 .swiper-slide:nth-of-type(3) .service_name {
  bottom: 20px;
}
.slider2 .swiper-slide:nth-of-type(2) .service_item {
  background-image: url(../image/service02.jpg);
}
.slider2 .swiper-slide:nth-of-type(2) .service_name h3::before {
  background-color: #EA99A6;
}
.slider2 .swiper-slide:nth-of-type(2) .en {
  color: #EA99A6;
}
.slider2 .swiper-slide:nth-of-type(3) .service_item {
  background-image: url(../image/service03.jpg);
}
.slider2 .swiper-slide:nth-of-type(3) .service_name h3::before {
  background-color: #E79D45;
}
.slider2 .swiper-slide:nth-of-type(3) .en {
  color: #E79D45;
}
.slider2 .swiper-slide:nth-of-type(4) .service_item {
  background-image: url(../image/service10.jpg);
}
.slider2 .swiper-slide:nth-of-type(4) .service_name h3::before {
  background-color: #80BD6A;
}
.slider2 .swiper-slide:nth-of-type(4) .en {
  color: #80BD6A;
}
.slider2 .swiper-slide:nth-of-type(5) .service_item {
  background-image: url(../image/service11.jpg);
}
.slider2 .swiper-slide:nth-of-type(5) .service_name h3::before {
  background-color: #E3B820;
}
.slider2 .swiper-slide:nth-of-type(5) .en {
  color: #E3B820;
}
.slider2 .swiper-slide:nth-of-type(6) .service_item {
  background-image: url(../image/service12.jpg);
}
.slider2 .swiper-slide:nth-of-type(6) .service_name h3::before {
  background-color: #9C72AB;
}
.slider2 .swiper-slide:nth-of-type(6) .en {
  color: #9C72AB;
}

.service_name h3 {
  font-weight: 500;
  font-size: 3.2rem;
  display: flex;
  gap: 1rem;
  line-height: 1.2;
  font-family: "Zen Maru Gothic", sans-serif;
}
.service_name h3::before {
  content: "";
  display: inline-block;
  height: 15px;
  width: 15px;
  background-color: #60B6BC;
  border-radius: 50%;
  position: relative;
  top: 12px;
}

.service_name .en {
  color: #60B6BC;
  font-weight: 700;
  margin: 1rem 0 0 2.4rem;
  line-height: 1.2;
}

.swiper-button-prev {
  position: absolute;
  left: auto !important;
  right: 90px !important;
  height: 60px !important;
  width: 60px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.swiper-button-next {
  position: absolute;
  right: 0 !important;
  height: 60px !important;
  width: 60px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "" !important;
  height: 60px !important;
  width: 60px !important;
  background-size: contain;
  background-repeat: no-repeat;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  height: 60px !important;
  width: 60px !important;
  background-image: url(../image/arrow04.png) !important;
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  height: 60px !important;
  width: 60px !important;
  background-image: url(../image/arrow05.png) !important;
}

.swiper_btn {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

/* ///////////////////////////////////////




NEWS




/////////////////////////////////////// */
.news {
  background-color: #F8FDFF;
}

.news_head {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 2rem 0 0;
  width: 180px;
  background-color: #F8FDFF;
}
.news_head p {
  font-size: 1.4rem;
  z-index: 1;
}
.news_head > div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.news_head .date {
  font-family: "Quicksand", sans-serif;
  color: #60B6BC;
  font-weight: 600;
}

.news_head .cat {
  background-color: #60B6BC;
  padding: 3px 10px;
  color: #FFFFFF;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  border-radius: 999px;
}

.corner {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  bottom: 48px;
  transform: rotate(85deg);
}

.corner::before {
  display: block;
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
  content: "";
  background: transparent;
  border-radius: 50%;
  box-shadow: 20px 20px 0 0 #F8FDFF;
  transform: translate(-50%, -50%);
}

span.corner.conner02 {
  right: -20px;
  left: auto;
  bottom: 0px;
}

.news_wrap h3 {
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.4rem;
}

.news_contents {
  flex: 1;
}

.news_contents p {
  margin-top: 1.6rem;
}

.thumb {
  width: 350px;
  height: 260px;
  flex-shrink: 0;
  position: relative;
}
.thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 35/26;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.news_wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
  padding: 2.4rem 0;
  border-bottom: 1px solid #CFCFCF;
  transition: 0.5s;
}
.news_wrap:first-of-type {
  padding-top: 0;
}
.news_wrap:nth-of-type(3) {
  padding-bottom: 0;
  border-bottom: none;
}
.news_wrap:hover {
  background-color: rgba(228, 242, 249, 0.3);
  transform: scale(0.95);
}

.news_wrap a {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  メインビジュアル




  /////////////////////////////////////// */
  .mv {
    height: 60vw;
  }
  .swiper {
    top: 120px !important;
  }
  /* ///////////////////////////////////////




  POINT




  /////////////////////////////////////// */
  .point_wrap {
    flex-direction: column;
    align-items: center;
  }
  .point_list {
    width: 100%;
    max-width: 600px;
  }
  .point_list:nth-of-type(2) {
    box-shadow: 0px 0px 30px 0px rgba(234, 153, 166, 0.4);
  }
  .point_list:nth-of-type(2) .point_head p {
    background-color: #EA99A6;
  }
  .point_list:nth-of-type(2) .point_head h3 {
    color: #EA99A6;
  }
  .point_list:nth-of-type(3) {
    box-shadow: 0px 0px 30px 0px rgba(96, 182, 203, 0.4);
  }
  .point_list:nth-of-type(3) .point_head p {
    background-color: #60B6BC;
  }
  .point_list:nth-of-type(3) .point_head h3 {
    color: #60B6BC;
  }
  .point_list:last-of-type {
    box-shadow: 0px 0px 30px 0px rgba(234, 153, 166, 0.4);
  }
  .point_list:last-of-type .point_head p {
    background-color: #EA99A6;
  }
  .point_list:last-of-type .point_head h3 {
    color: #EA99A6;
  }
  /* ///////////////////////////////////////




  NEWS




  /////////////////////////////////////// */
  .news_wrap {
    flex-direction: column;
  }
  .thumb {
    width: 100%;
    height: auto;
  }
  .thumb img {
    aspect-ratio: 17/12;
  }
  .news_head {
    width: 40%;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  メインビジュアル




  /////////////////////////////////////// */
  .swiper {
    top: 80px !important;
  }
  .mv_wrap {
    height: 70%;
  }
  /* ///////////////////////////////////////




  ABOUT




  /////////////////////////////////////// */
  .about {
    font-size: 4rem;
    padding-top: 6rem;
  }
  .about_txt {
    font-size: 2.8rem;
  }
  /* ///////////////////////////////////////

  About ループスライダー

  /////////////////////////////////////// */
  .loopSlide {
    height: 205px;
    overflow: hidden;
  }
  .loopSlide ul li {
    width: 160px;
  }
  /* ///////////////////////////////////////




  POINT




  /////////////////////////////////////// */
  .point_list {
    max-width: 450px;
    padding: 5rem 4rem;
    border-radius: 8rem 8rem 8rem 0;
  }
  .point_head p {
    width: 40px;
    height: 40px;
    font-size: 3.2rem;
    line-height: 2.5;
  }
  .point_head h3 {
    font-size: 4rem;
  }
  /* ///////////////////////////////////////




  SERVICE




  /////////////////////////////////////// */
  .slider2 .swiper-slide {
    width: 280px !important;
    height: 360px;
  }
  .service_item {
    height: 360px;
  }
  .service_name h3 {
    font-size: 4rem;
  }
  .service_name h3::before {
    width: 8px;
    height: 8px;
    top: 10px;
  }
  .service_name .en {
    font-size: 2.4rem;
  }
  .swiper-button-next,
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    top: 80% !important;
  }
  .swiper-button-next::after,
.swiper-button-prev::after {
    width: 40px !important;
    height: 40px !important;
  }
  .swiper-button-prev {
    right: 60px !important;
  }
  /* ///////////////////////////////////////




  NEWS




  /////////////////////////////////////// */
  .news_head p {
    font-size: 12px;
  }
  .news_head {
    width: 60%;
    border-radius: 0 4rem 0 0;
  }
  .news_head > div {
    padding: 2rem;
  }
  .corner {
    bottom: 46px;
  }
  span.corner.conner02 {
    right: -21px;
  }
  .news_wrap h3 {
    font-size: 3.2rem;
  }
}
/* ///////////////////////////////////////




ヘッダー




/////////////////////////////////////// */
.logo {
  display: inline-block;
  width: 148px;
}

.global_nav {
  background-color: #FFFFFF;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 35px;
  left: 0;
  z-index: 999;
  box-sizing: border-box;
  padding: 1.5rem 4rem 1.5rem 4rem;
  position: fixed;
  box-shadow: 10px 10px 20px 0px rgba(51, 51, 51, 0.05);
  height: 95px;
  width: 95%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.global_nav img {
  width: 100%;
}

.pc_menu ul {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.global_nav ul li {
  font-weight: 500;
  color: #808080;
  transition: 0.5s;
}
.global_nav ul li:hover {
  color: #60B6BC;
}

.pc_menu {
  display: flex;
}

.pc_menu .sub-menu {
  background-color: #60B6BC;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  gap: 0;
  padding: 1.5rem 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
.pc_menu .sub-menu li {
  color: #FFFFFF;
  border-right: 1px solid #FFFFFF;
  padding: 0 4em;
  transition: 0.5s;
}
.pc_menu .sub-menu li:first-of-type {
  padding-left: 0;
}
.pc_menu .sub-menu li:last-of-type {
  padding-right: 0;
  border-right: 0;
}
.pc_menu .sub-menu li:hover {
  color: #FFFFFF;
}
.pc_menu .sub-menu li a {
  position: relative;
}
.pc_menu .sub-menu li a::before {
  background: #FFFFFF;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -4px;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.5s;
}
.pc_menu .sub-menu li a:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}
.pc_menu .sub-menu::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #60B6BC;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 10px 8px;
  border-bottom-color: currentColor;
  border-top: 0;
  position: absolute;
  top: -10px;
  right: 423px;
}

.pc_menu .sub-menu.js_active {
  visibility: visible;
  opacity: 1;
}

.sp_menu {
  display: none;
}

.nav_toggle {
  display: none;
}

@media screen and (max-width: 1200px) {
  /* ///////////////////////////////////////




  ヘッダー




  /////////////////////////////////////// */
  .logo {
    width: 15%;
    min-width: 65px;
  }
  .pc_menu {
    display: none;
  }
  .sp_menu {
    position: fixed;
    z-index: 997;
    /*ナビのスタート位置と形状*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    box-sizing: border-box;
    padding: 10rem 4rem 0 4rem;
    border-radius: 0 0 5px 5px;
  }
  .sp_menu.show {
    display: block;
    -webkit-animation: fade-in 0.5s;
            animation: fade-in 0.5s;
  }
  @-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.8;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.8;
    }
  }
  .nav_menu_li {
    border-bottom: dotted 3px var(--main-color);
    padding: 2.4rem;
  }
  .global_nav {
    padding: 7px 15px 7px 15px;
    height: auto;
    top: 2rem;
  }
  /* ハンバーガーメニュー３本線 */
  .nav_toggle {
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    width: 3rem;
    height: 2.4rem;
    z-index: 999;
    background-color: #60B6BC;
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    border-radius: 50%;
    border: 2px solid #F1FCFF;
  }
  .nav_toggle i {
    display: block;
    width: 15px;
    height: 1px;
    background-color: #FFFFFF;
    position: absolute;
    transition: transform 0.5s, opacity 0.5s;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .nav_toggle i:nth-child(1) {
    top: 12px;
  }
  .nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 12px;
  }
  /* .showクラスがついた時の挙動 */
  .nav_toggle.show i:nth-child(1) {
    transform: translateY(6px) rotate(-45deg);
    left: 28%;
  }
  .nav_toggle.show i:nth-child(2) {
    opacity: 0;
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-5px) rotate(45deg);
    left: 28%;
  }
  .sp_menu ul:first-child {
    margin-top: 4rem;
  }
  .sp_menu ul:first-child > li {
    border-bottom: 1px solid #60B6BC;
    padding: 2rem 0;
  }
  .sp_menu ul:first-child > li:first-child {
    padding-top: 0;
  }
  .sp_menu ul:first-child > li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  .sp_menu .sub-menu {
    display: none;
  }
  .sp_menu .drop_menu.open .sub-menu {
    display: block;
    -webkit-animation: fade-in 0.3s;
            animation: fade-in 0.3s;
  }
  .sp_menu .sub-menu li {
    padding-top: 1rem;
    font-size: 1.4rem;
    color: #808080;
  }
  .sp_menu .drop_menu {
    position: relative;
  }
  .sp_menu .drop_menu::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 1px;
    background-color: #60B6BC;
    position: absolute;
    right: 0;
    top: 31px;
    transition: 0.5s;
  }
  .sp_menu .drop_menu::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 1px;
    transform: rotate(90deg);
    background-color: #60B6BC;
    position: absolute;
    right: 0;
    top: 31px;
    transition: 0.5s;
  }
  .sp_menu .drop_menu.open::before {
    opacity: 0;
  }
  .sp_menu .drop_menu.open::after {
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  ヘッダー




  /////////////////////////////////////// */
  .nav_toggle {
    width: 30px;
    height: 30px;
  }
  .nav_toggle i {
    width: 10px;
  }
  .nav_toggle i:nth-child(1) {
    top: 9px;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 9px;
  }
  .nav_toggle.show i:nth-child(1) {
    left: 8px;
    top: 7px;
  }
  .nav_toggle.show i:nth-child(3) {
    left: 8px;
    bottom: 7px;
  }
  .sp_menu ul:first-child {
    margin-top: 10rem;
  }
  .sp_menu .drop_menu::before {
    top: 21px;
    width: 12px;
  }
  .sp_menu .drop_menu::after {
    top: 21px;
    width: 12px;
  }
  .sp_menu .sub-menu li {
    font-size: 2.4rem;
  }
  .nav_toggle.show i:nth-child(1) {
    transform: translateY(5px) rotate(-45deg);
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-6px) rotate(45deg);
  }
} /* ///////////////////////////////////////


下層ページMV


/////////////////////////////////////// */
.page_mv {
  background-image: url(../image/service_mv.jpg);
  background-repeat: no-repeat;
  background-size: auto 100%;
  position: relative;
  aspect-ratio: 16/5;
  background-position: center;
}
.page_mv::before {
  content: "";
  background-image: url(../image/cloud03.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 220px;
  height: 180px;
  position: absolute;
  left: 8rem;
  bottom: 0;
}
.page_mv::after {
  content: "";
  background-image: url(../image/cloud04.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 200px;
  height: 128px;
  position: absolute;
  right: 8rem;
  bottom: 0;
}

.page_mv .catch {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  text-align: center;
}
.page_mv .catch h1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 5.6rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1;
}
.page_mv .catch p {
  font-family: "Quicksand", sans-serif;
  color: #FFFFFF;
  font-size: 2.8rem;
  font-weight: 700;
  margin-top: 1rem;
}

.company_mv {
  background-image: url(../image/company.jpg);
}

.factory_mv {
  background-image: url(../image/factory.jpg);
}

.contact_mv {
  background-image: url(../image/contact_bg.jpg);
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////


  下層ページMV


  /////////////////////////////////////// */
  .page_mv {
    aspect-ratio: 72/25;
  }
  .page_mv::before {
    width: 150px;
    height: 100px;
    left: 4rem;
  }
  .page_mv::after {
    width: 150px;
    height: 90px;
    right: 4rem;
  }
  .page_mv .catch {
    top: 45%;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////


  下層ページMV


  /////////////////////////////////////// */
  .page_mv {
    background-image: url(../image/service_mv_sp.jpg);
    aspect-ratio: 39/20;
  }
  .page_mv::before {
    width: 25vw;
    height: 16vw;
    left: 5rem;
  }
  .page_mv::after {
    width: 20vw;
    height: 13vw;
    right: 5rem;
  }
  .page_mv .catch {
    top: 45%;
  }
  .page_mv .catch h1 {
    font-size: 6.4rem;
  }
  .page_mv .catch p {
    font-size: 3.2rem;
  }
  .company_mv {
    background-image: url(../image/company_sp.jpg);
  }
  .factory_mv {
    background-image: url(../image/factory_sp.jpg);
  }
  .contact_mv {
    background-image: url(../image/contact_sp.jpg);
  }
}
/* ///////////////////////////////////////




ポップアップ




/////////////////////////////////////// */
.bg_onetime_popup {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  overflow: hidden;
}

body.open_popup .bg_onetime_popup {
  opacity: 1;
  visibility: visible;
}

.onetime_popup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 50%;
  min-width: 500px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 2rem;
  box-sizing: border-box;
}

.onetime_popup_title {
  position: relative;
  border-bottom: 1px solid #60B6BC;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.5;
  box-sizing: border-box;
  padding-bottom: 2rem;
}

.onetime_popup_content {
  padding: 4rem 0 2rem 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.onetime_popup_content a {
  display: inline-block;
  width: 100px;
  height: 40px;
  border-radius: 1rem;
  color: #FFFFFF;
  background-color: #60B6BC;
  border: 1px solid #60B6BC;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.1;
  transition: 0.5s;
}
.onetime_popup_content a:hover {
  opacity: 0.7;
  transform: scale(1.1);
}
.onetime_popup_content a:last-child {
  background-color: #FFFFFF;
  color: #60B6BC;
}

@media screen and (max-width: 650px) {
  .onetime_popup {
    max-width: 400px;
    width: 80%;
    min-width: initial;
  }
  .onetime_popup_title {
    font-size: 3.6rem;
  }
  .onetime_popup_content a {
    font-size: 3.2rem;
    width: 90px;
    height: 30px;
    line-height: 1.8;
  }
}
/* ///////////////////////////////////////




記事ページ




/////////////////////////////////////// */
.news_contentWrap {
  padding-top: 12rem;
  background: linear-gradient(45deg, #ECFBFF 0%, #FFF3F5 100%);
}

.post_contents {
  background-color: #FFFFFF;
  box-sizing: border-box;
  padding: 8rem;
  border-radius: 4rem;
  box-shadow: 10px 10px 30px 0 rgba(51, 51, 51, 0.05);
}

.post_contents .news_head {
  display: flex;
  gap: 10px;
  position: static;
  align-items: center;
  background-color: transparent;
  width: auto;
  font-size: 1.4rem;
}

.post_contents.post_title {
  font-size: 3.2rem;
  color: #464646;
  font-weight: 700;
}

.post_title {
  font-size: 3.2rem;
}

.news_content {
  margin-top: 6rem;
}
.news_content h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #D0D0D0;
  position: relative;
}
.news_content h2::after {
  content: "";
  display: inline-block;
  width: 15%;
  height: 1px;
  background-color: #60B6BC;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.news_content h2:first-child {
  margin-top: 0;
}
.news_content h3, .news_content h4, .news_content h5, .news_content h6 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 5rem;
  background-color: #F9FEFF;
  padding: 10px;
  border-left: 5px solid #60B6BC;
}
.news_content p {
  margin-top: 2.4rem;
}
.news_content img {
  width: 100%;
  height: auto;
  margin-top: 4rem;
  border-radius: 2rem;
}

.news_contentWrap .btn {
  margin-top: 10rem;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  記事ページ




  /////////////////////////////////////// */
  .news_contentWrap {
    padding-top: 16rem;
  }
  .post_contents {
    padding: 6rem 4rem;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  記事ページ




  /////////////////////////////////////// */
  .news_contentWrap {
    padding-top: 18rem;
  }
  .news_contentWrap .post_title {
    font-size: 4rem;
  }
  .post_contents {
    padding: 8rem 4rem;
  }
  .news_content h2 {
    font-size: 3.6rem;
  }
  .news_content h3, .news_content h4, .news_content h5, .news_content h6 {
    font-size: 3.2rem;
    padding-bottom: 2rem;
  }
}
/* ///////////////////////////////////////




MESSAGE




/////////////////////////////////////// */
.message_wrap {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.img_wrap {
  min-width: 400px;
  border-radius: 20px 20px 20px 0;
  overflow: hidden;
  position: relative;
}

.radius {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #FFFFFF;
  width: 50%;
  border-radius: 0 20px 0 0;
}

.radius > div {
  position: relative;
  padding: 1rem 0;
  text-align: center;
}
.radius > div .corner {
  left: 0px;
  bottom: 91px;
  box-shadow: 20px 20px 0 0 #FFFFFF;
}
.radius > div .corner::before {
  box-shadow: 20px 20px 0 0 #FFFFFF;
}
.radius > div .conner02 {
  right: -20px;
  bottom: -1px;
  left: auto;
}

.radius p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  position: relative;
  z-index: 1;
  text-align: left;
  padding-left: 2rem;
}

.radius p span {
  font-size: 2.4rem;
}

.message_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.message_wrap h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.6;
}

.name {
  font-weight: 500;
  text-align: right;
}

.name span {
  font-size: 2.4rem;
  margin-left: 1rem;
}

/* ///////////////////////////////////////




PHILOSOPHY




/////////////////////////////////////// */
.philosophy {
  background: linear-gradient(45deg, #ECFBFF 0%, #FFF3F5 100%);
  border-radius: 10rem;
}

.philosophy_list {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

.philosophy_item {
  position: relative;
  background-image: url(../image/01.png);
  background-size: 110% 100%;
  background-position: center;
  background-repeat: no-repeat;
  width: calc((100% - 4rem) / 2);
  height: 390px;
}
.philosophy_item > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 75%;
}
.philosophy_item:nth-of-type(2) {
  background-image: url(../image/02.png);
  position: relative;
  top: 74px;
}
.philosophy_item:nth-of-type(3) {
  background-image: url(../image/03.png);
}
.philosophy_item:nth-of-type(4) {
  background-image: url(../image/04.png);
  top: 99px;
}
.philosophy_item:last-of-type {
  background-image: url(../image/05.png);
  left: 156px;
}

.philosophy_item h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  color: #60B6BC;
  text-align: center;
}

.philosophy_item p {
  margin-top: 1.6rem;
}

/* ///////////////////////////////////////




HISTORY




/////////////////////////////////////// */
.history_wrap {
  margin-top: 8rem;
  display: flex;
  gap: 4rem;
  align-items: center;
}
.history_wrap .pc_img {
  width: 70px;
}
.history_wrap .sp_img {
  display: none;
}
.history_wrap > div {
  flex: 1;
}

.history_item p {
  font-size: 2.4rem;
}

.history_item {
  display: flex;
  align-items: center;
  padding: 2.5rem;
  box-sizing: border-box;
  box-shadow: 0px 0px 20px 0px rgba(96, 182, 203, 0.4);
  background-color: #FFFFFF;
  border-radius: 0 40px 40px 40px;
}
.history_item .date {
  color: #60B6BC;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  width: 15%;
}
.history_item .txt {
  font-family: "Zen Maru Gothic", sans-serif;
  flex: 1;
}
.history_item:not(:first-of-type) {
  margin-top: 8rem;
}
.history_item:nth-of-type(even) {
  box-shadow: 0px 0px 20px 0px rgba(234, 153, 166, 0.4);
}
.history_item:nth-of-type(even) .date {
  color: #EA99A6;
}

/* ///////////////////////////////////////




COMPANY INFO




/////////////////////////////////////// */
.company_info {
  background-color: #F8FDFF;
}

.company_info .fl {
  display: flex;
  padding: 2.4rem 0;
  position: relative;
  border-bottom: 1px solid #CFCFCF;
}
.company_info .fl::before {
  content: "";
  display: inline-block;
  background-color: #60B6BC;
  height: 1px;
  width: 18%;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.company_info .fl:first-of-type {
  padding-top: 0;
}
.company_info .fl:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.company_info .fl:last-of-type::before {
  content: none;
}
.company_info .fl:first-of-type {
  padding-top: 0;
}
.company_info .fl dt {
  width: 20%;
  font-weight: 700;
  color: #60B6BC;
}
.company_info .fl .item {
  width: 80%;
}
.company_info .fl .item dd {
  width: 100%;
}
.company_info .fl .item dd span {
  font-weight: 700;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  MESSAGE




  /////////////////////////////////////// */
  .message_wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .message_wrap .pc_only {
    display: contents;
  }
  .message_wrap .contents_title {
    order: 1;
  }
  .message_wrap .img_wrap {
    width: 100%;
    height: 60vw;
    order: 2;
    min-width: initial;
  }
  .message_wrap .txt {
    order: 2;
    margin-top: 0;
  }
  .message_wrap img {
    -o-object-position: top;
       object-position: top;
  }
  .radius > div {
    padding: 20px;
    height: 58px;
  }
  .radius > div .corner {
    bottom: 97px;
  }
  .radius > div .conner02 {
    bottom: 0;
  }
  /* ///////////////////////////////////////




  PHILOSOPHY




  /////////////////////////////////////// */
  .philosophy_list {
    flex-direction: column;
    gap: 0;
  }
  .philosophy_item {
    width: 100%;
    height: auto;
    aspect-ratio: 68/49;
  }
  .philosophy_item:nth-of-type(2) {
    top: auto;
  }
  .philosophy_item:nth-of-type(4) {
    top: auto;
  }
  .philosophy_item:last-of-type {
    left: auto;
  }
  /* ///////////////////////////////////////




  HISTORY




  /////////////////////////////////////// */
  .history_wrap .pc_img {
    display: none;
  }
  .history_wrap .sp_img {
    display: block;
    width: 60px;
  }
  .history_item {
    flex-direction: column;
    align-items: flex-start;
  }
  .history_item:not(:first-of-type) {
    margin-top: 4rem;
  }
  .history_wrap {
    align-items: flex-start;
  }
  /* ///////////////////////////////////////




  COMPANY INFO




  /////////////////////////////////////// */
}
@media screen and (max-width: 980px) and (max-width: 700px) {
  .history_wrap .sp_img {
    width: 65px;
  }
}
@media screen and (max-width: 980px) {
  .company_info .fl {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 980px) {
  .company_info .fl dt {
    width: 100%;
  }
}
@media screen and (max-width: 980px) {
  .company_info .fl .item {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  MESSAGE




  /////////////////////////////////////// */
  .radius > div .corner {
    bottom: 77px;
  }
  .radius > div .conner02 {
    bottom: 0;
  }
  .radius > div {
    padding: 10px;
  }
  .radius p {
    padding: 0;
  }
  .message_wrap h3 {
    font-size: 4rem;
  }
  .radius p span {
    font-size: 3.6rem;
  }
  /* ///////////////////////////////////////




  PHILOSOPHY




  /////////////////////////////////////// */
  .philosophy_item h3 {
    font-size: 4rem;
  }
  .philosophy_item p {
    margin-top: 2rem;
  }
  /* ///////////////////////////////////////




  HISTORY




  /////////////////////////////////////// */
  /* ///////////////////////////////////////




  拠点一覧




  /////////////////////////////////////// */
}
@media screen and (max-width: 650px) and (max-width: 350px) {
  .philosophy_item p {
    font-size: 12px;
  }
}
@media screen and (max-width: 650px) and (max-width: 390px) {
  .philosophy_item {
    height: 265px;
  }
}
@media screen and (max-width: 650px) {
  .history_item p {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 650px) {
  .history_item {
    padding: 4rem;
  }
}
@media screen and (max-width: 650px) {
  .history_wrap .sp_img {
    width: 40px;
  }
}
@media screen and (max-width: 650px) and (max-width: 460px) {
  .history_wrap .sp_img {
    width: 50px;
  }
}
@media screen and (max-width: 320px) {
  .radius p span {
    font-size: 3.2rem;
  }
}
/* ///////////////////////////////////////




見出し




/////////////////////////////////////// */
.contact_top h2 {
  text-align: center;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 3.2rem;
  text-align: center;
}

.contact_top .lead {
  text-align: center;
}

.contact_top .item {
  border-radius: 60px 60px 60px 0;
  box-shadow: 0px 0px 15px 0px rgba(96, 182, 203, 0.4);
  text-align: center;
  padding: 2.5rem 0;
  box-sizing: border-box;
  width: calc((100% - 8rem) / 3);
}
.contact_top .item:nth-last-of-type(2) {
  box-shadow: 0px 0px 15px 0px rgba(234, 153, 166, 0.4);
}
.contact_top .item:nth-last-of-type(2) h3 {
  color: #EA99A6;
}
.contact_top .item:nth-last-of-type(2) a::before {
  background-image: url(../image/tel02.png);
}
.contact_top .item h3 {
  color: #60B6BC;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.contact_top .item p {
  background: linear-gradient(45deg, #ECFBFF 0%, #FFF3F5 100%);
  padding: 10px 0;
  width: 70%;
  font-size: 12px;
  border-radius: 10px;
  margin: 10px auto 0 auto;
}
.contact_top .item a {
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  margin-top: 1.6rem;
}
.contact_top .item a::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(../image/tel.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}

.contact_top .fl {
  display: flex;
  gap: 4rem;
}

/* ///////////////////////////////////////




コンタクトフォーム




/////////////////////////////////////// */
.contact_form {
  background: linear-gradient(45deg, #ECFBFF 0%, #FFF3F5 100%);
  border-radius: 10rem;
}

.contact_form h2 {
  text-align: center;
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

.select {
  width: 100%;
  max-width: 260px;
  position: relative;
  background-color: #FFFFFF;
  border-radius: 999px;
  overflow: hidden;
}

.select::before {
  content: "";
  width: 10px;
  height: 5px;
  background-image: url(../image/arrow07.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.box {
  width: 100%;
  height: 65px;
  padding: 1.5rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
}

.box::-ms-expand {
  display: none;
}

.contact_form {
  padding-top: 18rem;
}

.contact_form dl .must {
  background: #60B6BC;
  border-radius: 5px;
  color: #FFFFFF;
  padding: 2px 10px;
  margin-right: 5px;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
}

.any {
  background: #CCCCCC;
  border-radius: 5px;
  color: #FFFFFF;
  padding: 2px 10px;
  margin-right: 5px;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
}

.contact_form dl {
  display: flex;
}
.contact_form dl dt {
  width: 30%;
  font-weight: 500;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
}
.contact_form dl dd {
  width: 70%;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

.contact_form dl:not(:first-of-type) {
  margin-top: 4rem;
}

span.wpcf7-list-item {
  display: block;
  margin: 0;
}

input.wpcf7-form-control.wpcf7-text {
  width: 100%;
  border-radius: 2px;
  border: none;
  height: 65px;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
  box-sizing: border-box;
  padding: 2rem 3rem;
  border-radius: 999px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  height: 300px;
  border-radius: 3rem;
  border: none;
  padding: 1.5rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", sans-serif;
}

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

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

::placeholder {
  color: #D2D2D2;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #D2D2D2;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #D2D2D2;
}

input:focus {
  outline: 1px solid #D2D2D2;
}

textarea:focus {
  outline: 1px solid #D2D2D2;
}

input.wpcf7-form-control.wpcf7-submit {
  background: #60B6BC;
  height: 55px;
  width: 280px;
  border-radius: 999px;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.5s;
  text-align: center;
}
input.wpcf7-form-control.wpcf7-submit:hover {
  opacity: 0.7;
  transform: scale(0.95);
}

.wpcf7-spinner {
  display: none !important;
}

.privacy_policy_lead {
  margin-top: 3.2rem;
  font-weight: 500;
}
.privacy_policy_lead span {
  background: #60B6BC;
  border-radius: 2px;
  color: #FFFFFF;
  padding: 2px 10px;
  margin-right: 5px;
  font-weight: 500;
  font-size: 12px;
}

.privacy_policy_box {
  height: 317px;
  width: 100%;
  border-radius: 3rem;
  padding: 2.5rem;
  box-sizing: border-box;
  overflow-y: scroll;
  margin-top: 4rem;
  background-color: #FFFFFF;
}
.privacy_policy_box p {
  font-size: 1.4rem;
}

.margin_top {
  margin-top: 2.4rem;
}

.checkbox_wrap {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.checkbox_wrap p {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

.privacy_policy_box::-webkit-scrollbar {
  width: 16px;
}

.privacy_policy_box::-webkit-scrollbar-thumb {
  background: #60B6BC;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  background-clip: padding-box;
  border-radius: 999px;
}

.privacy_policy_box::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.checkbox_wrap span.wpcf7-list-item {
  margin: 0 0 0 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
  text-align: center;
}

.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
  position: relative;
  font-weight: 700;
}

.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
}

input[type=checkbox] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}

.wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #D2D2D2;
  background-color: #FFFFFF;
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 10px;
  position: relative;
  top: -9px;
  vertical-align: middle;
}

.first {
  margin-top: 0 !important;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url("../image/check.png") no-repeat center;
  background-size: contain;
  content: "";
  height: 17px;
  left: 1px;
  position: absolute;
  top: -3px;
  width: 22px;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  見出し




  /////////////////////////////////////// */
  .contact_top .fl {
    flex-direction: column;
    align-items: center;
  }
  .contact_top .item {
    max-width: 500px;
    width: 100%;
  }
  .contact_form dl {
    flex-direction: column;
    gap: 2.4rem;
  }
  .contact_form dl dt {
    width: 100%;
  }
  .contact_form dl dd {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  見出し




  /////////////////////////////////////// */
  .contact_top h2 {
    font-size: 4rem;
  }
  .contact_top .item h3 {
    font-size: 3.6rem;
  }
  .contact_top .item a {
    font-size: 4.8rem;
    margin-top: 2rem;
  }
  .contact_top .item {
    padding: 4rem 0;
    max-width: 400px;
  }
  .contact_form h2 {
    font-size: 4rem;
  }
  .box {
    font-size: 2.8rem;
    height: 55px;
  }
  .contact_form dl .must {
    font-size: 2.8rem;
  }
  .any {
    font-size: 2.8rem;
  }
  .select {
    max-width: initial;
    width: 100%;
  }
  .select::before {
    width: 12px;
    height: 6px;
    right: 4rem;
  }
  .box {
    padding: 0 4rem;
  }
  .contact_form dl:not(:first-of-type) {
    margin-top: 4rem;
  }
  .contact_form dl {
    gap: 2rem;
  }
  input.wpcf7-form-control.wpcf7-text {
    height: 55px;
    font-size: 2.8rem;
    padding: 4rem;
  }
  textarea.wpcf7-form-control.wpcf7-textarea {
    height: 180px;
    padding: 4rem;
    font-size: 2.8rem;
  }
  .privacy_policy_box {
    height: 150px;
    padding: 3rem 3rem 0.7rem 3rem;
    margin-top: 4rem;
  }
  .privacy_policy_box p {
    font-size: 2.8rem;
  }
  .checkbox_wrap {
    margin-top: 2rem;
    align-items: flex-start;
  }
  input.wpcf7-form-control.wpcf7-submit {
    font-size: 3.2rem;
    height: 45px;
    max-width: 200px;
    width: 100%;
    line-height: 1.9;
  }
  .checkbox_wrap .wpcf7-list-item-label::before {
    width: 15px;
    height: 15px;
  }
  input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    width: 13px;
    left: 3px;
    top: -4px;
  }
}
/* ///////////////////////////////////////




INTRODUCTION




/////////////////////////////////////// */
.intro_item h3 {
  font-weight: 500;
  line-height: 1;
}

.intro_item h4 {
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #60B6BC;
  margin-top: 2.4rem;
}

.furigana {
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  color: #60B6BC;
  margin-top: 5px;
}

.intro_item .accordion_one {
  margin-top: 2.4rem;
  padding: 2.5rem 20px;
  box-sizing: border-box;
  border-radius: 0 40px 40px 40px;
  box-shadow: 0px 0px 20px 0px rgba(96, 182, 203, 0.4);
  position: relative;
  z-index: 0;
}

.intro_item .accordion_header {
  cursor: pointer;
  z-index: 0;
}

.intro_item .accordion_one span {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #60B6BC;
  position: absolute;
  right: 20px;
  top: 2.5rem;
  z-index: -1;
}
.intro_item .accordion_one span::before, .intro_item .accordion_one span::after {
  transition: 0.5s;
}
.intro_item .accordion_one span::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #60B6BC;
  position: absolute;
  top: 24px;
  left: 18px;
}
.intro_item .accordion_one span::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 2px;
  background-color: #60B6BC;
  position: absolute;
  top: 24px;
  left: 18px;
  transform: rotate(90deg);
}

.intro_item .accordion_header.open span::before {
  content: none;
}
.intro_item .accordion_header.open span::after {
  transform: rotate(180deg);
}

.factory_name {
  font-size: 12px;
  background-color: #60B6BC;
  font-weight: 500;
  padding: 5px 15px;
  display: inline-block;
  color: #FFFFFF;
  border-radius: 999px;
  margin-top: 1.6rem;
}

.intro_item .txt {
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  background-color: #F9FEFF;
  margin-top: 10px;
  border-radius: 10px;
  line-height: 2.4;
}

.intro_item .thumb {
  width: 100%;
  height: 240px;
}

.intro_item .thumb img {
  border-radius: 10px;
}

.accordion_inner {
  display: none;
}

.intro_item {
  width: calc((100% - 8rem) / 3);
}

.intro_wrap {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
}

/* ///////////////////////////////////////




FACTORY




/////////////////////////////////////// */
.factory_list {
  background: linear-gradient(45deg, #ECFBFF 0%, #FFF3F5 100%);
  border-radius: 10rem;
}

.factory_item {
  flex: 1;
}
.factory_item .head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.factory_item .head img {
  width: 80px;
  flex-shrink: 0;
}
.factory_item .head h3 {
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
}
.factory_item .head p {
  font-size: 12px;
  color: #60B6BC;
  font-weight: 500;
  margin-top: 5px;
}

.factory_item dl .fl {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.factory_item dl .fl:not(:first-of-type) {
  margin-top: 2.4rem;
}
.factory_item dl .fl dt {
  color: #FFFFFF;
  background-color: #60B6BC;
  padding: 6px 0;
  width: 20%;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  flex-shrink: 0;
}
.factory_item dl .fl .item {
  flex: 1;
}
.factory_item dl .fl .item dd {
  width: 100%;
}
.factory_item dl .fl:nth-of-type(even) dt {
  background-color: #EA99A6;
}

.factory_item02 {
  width: 35%;
}
.factory_item02 .thumb {
  width: 100%;
  border-radius: 2rem;
  aspect-ratio: 17/12;
  height: auto;
  overflow: hidden;
}
.factory_item02 .thumb img {
  border-radius: 0;
}
.factory_item02 .map {
  border-radius: 2rem;
  overflow: hidden;
  margin-top: 2rem;
  aspect-ratio: 17/12;
}
.factory_item02 .map iframe {
  width: 100%;
}

.factory_list_wrap .fl_wrap {
  display: flex;
  gap: 6rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 10rem;
}
.factory_list_wrap .fl_wrap:first-child {
  margin-top: 0;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  INTRODUCTION




  /////////////////////////////////////// */
  .intro_wrap {
    flex-direction: column;
    align-items: center;
  }
  .intro_item {
    width: 100%;
    max-width: 600px;
  }
  .intro_item .thumb {
    height: auto;
    aspect-ratio: 17/12;
  }
  /* ///////////////////////////////////////




  FACTORY




  /////////////////////////////////////// */
  .factory_list_wrap .fl_wrap {
    flex-direction: column;
  }
  .factory_item {
    width: 100%;
  }
  .factory_item02 {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 2rem;
  }
  .factory_item02 .thumb {
    flex: 1;
  }
  .factory_item02 .map {
    flex: 1;
    margin-top: 0;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  INTRODUCTION




  /////////////////////////////////////// */
  .furigana {
    font-size: 2.4rem;
  }
  .intro_item .accordion_one {
    padding: 20px;
  }
  .intro_item .accordion_one span {
    width: 40px;
    height: 40px;
    top: 20px;
  }
  .intro_item .accordion_one span::before, .intro_item .accordion_one span::after {
    top: 19px;
    left: 13px;
  }
  .intro_item h4 {
    font-size: 3.6rem;
  }
  /* ///////////////////////////////////////




  FACTORY




  /////////////////////////////////////// */
  .factory_item .head img {
    width: 50px;
  }
  .factory_item .head h3 {
    font-size: 3.6rem;
  }
  .factory_item dl .fl dt {
    width: 90px;
  }
  .factory_item02 {
    flex-direction: column;
  }
  .factory_item02 .thumb {
    width: 100%;
  }
  .factory_item02 .map {
    width: 100%;
  }
}
/* ///////////////////////////////////////

採用ページヘッダー

/////////////////////////////////////// */
#recruit .global_nav {
  opacity: 0;
  transition: 0.5s;
}

#recruit .global_nav.display {
  opacity: 1;
}

/* ///////////////////////////////////////




MV




/////////////////////////////////////// */
.recruit_mv {
  background: linear-gradient(45deg, #ECFBFF 0%, #FFF3F5 100%);
}

.mv_list {
  display: flex;
}
.mv_list li {
  width: 25%;
}
.mv_list img {
  width: 100%;
}

.recruit_catch {
  text-align: center;
  padding: 4rem 0;
}
.recruit_catch h1 {
  font-size: 4rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
}
.recruit_catch h1 .green {
  color: #60B6BC;
}
.recruit_catch h1 .pink {
  color: #EA99A6;
}
.recruit_catch p {
  font-family: "Quicksand", sans-serif;
  font-size: 3.2rem;
  color: #60B6BC;
  margin-top: 1.6rem;
}

.recruit_about {
  position: relative;
  overflow: hidden;
}
.recruit_about p {
  line-height: 2.4;
  text-align: center;
}
.recruit_about p span {
  font-size: 2.4rem;
  color: #60B6BC;
}
.recruit_about::before {
  content: "";
  display: inline-block;
  background-image: url(../image/cloud05.png);
  background-repeat: no-repeat;
  width: 15%;
  aspect-ratio: 217/603;
  background-size: contain;
  position: absolute;
  left: 5%;
  top: 12rem;
  z-index: -1;
}
.recruit_about::after {
  content: "";
  display: inline-block;
  background-image: url(../image/cloud06.png);
  background-repeat: no-repeat;
  width: 15%;
  aspect-ratio: 217/603;
  background-size: contain;
  position: absolute;
  right: 5%;
  top: 12rem;
  z-index: -1;
}

/* ///////////////////////////////////////




Voice




/////////////////////////////////////// */
.voice {
  background-color: #F8FDFF;
}

.voice .intro_item .accordion_one span {
  top: 16px;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
}
.voice .intro_item .accordion_one span::before, .voice .intro_item .accordion_one span::after {
  top: 18px;
  left: 12px;
}

.voice .intro_item .accordion_one {
  background-color: #FFFFFF;
}

@media screen and (max-width: 1100px) {
  .voice .intro_item .accordion_header h3 {
    font-size: 2rem;
  }
}
/* ///////////////////////////////////////




MOVIE




/////////////////////////////////////// */
.video {
  background-color: #FFFFFF;
  padding: 12px 12px 5px 12px;
  border-radius: 10px;
  height: auto;
}
.video video {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.video .mid_container {
  max-width: 824px;
}

.movie {
  background-color: #60B6BC;
  background-image: url(../image/dot.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  border-radius: 10rem;
}
.movie::before, .movie::after {
  display: inline-block;
  content: "";
  background-size: contain;
  position: absolute;
  bottom: -6rem;
  z-index: 1;
  max-width: 300px;
  aspect-ratio: 1/1;
  width: 20%;
}
.movie::before {
  background-image: url(../image/illust02.png);
}
.movie::after {
  background-image: url(../image/illust04.png);
  right: 0;
}

.movie_txt {
  color: #FFFFFF;
  font-weight: 500;
  width: 70%;
  max-width: 590px;
  margin: 6rem auto;
}

/* ///////////////////////////////////////




BENEFIT




/////////////////////////////////////// */
.benefit {
  padding-top: 16.5rem;
  padding-bottom: 0;
}
.benefit .large_container {
  margin: 4rem auto 0 0;
}

.benefit .lead {
  font-weight: 500;
}

.benefit .fl {
  display: flex;
  align-items: center;
  gap: 6rem;
}
.benefit .fl .img {
  width: 45%;
  border-radius: 0 999px 999px 0;
}

.benefit .item {
  flex: 1;
}

.pick_up {
  width: 100px;
  height: 100px;
  background-color: #EA99A6;
  flex-shrink: 0;
  text-align: center;
  border-radius: 50%;
  text-align: center;
  outline: solid 1px #FFFFFF;
  outline-offset: -3px;
  position: relative;
  margin-right: 2rem;
}
.pick_up p {
  font-weight: 700;
  font-size: 2rem;
  font-family: "Quicksand", sans-serif;
  color: #FFFFFF;
  line-height: 1.2;
}
.pick_up > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.benefit_head img {
  width: 80px;
  flex-shrink: 0;
  margin-right: 10px;
}

.title h3 {
  font-size: 3.2rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
}

.title p {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: #60B6BC;
  margin-top: 1rem;
}

.benefit_head {
  display: flex;
  align-items: center;
}

.benefit_name {
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  padding: 2.5rem;
  background-color: #F8FDFF;
  border-radius: 2rem;
  margin-top: 2.4rem;
}

.benefit .txt {
  line-height: 2.4;
}

/* ///////////////////////////////////////




その他の
福利厚生




/////////////////////////////////////// */
.grid_container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, auto);
}

.item_1 {
  background-color: #60B6BC;
  text-align: center;
  aspect-ratio: 1/1;
  outline: solid 1px #FFFFFF;
  outline-offset: -1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.item_1 p {
  color: #FFFFFF;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

.item_grid {
  background-color: #F8FDFF;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #60B6BC;
  border-right: none;
}
.item_grid img {
  width: 5vw;
}
.item_grid p {
  font-weight: 700;
  font-size: 2rem;
  color: #60B6BC;
  margin-top: 1.6rem;
}
.item_grid:nth-child(n+7):nth-child(-n+12) {
  border-top: none;
}

@media screen and (max-width: 1100px) {
  .item_grid p {
    font-size: 1.8rem;
  }
}
/* ///////////////////////////////////////




JOB




/////////////////////////////////////// */
.job {
  background: linear-gradient(45deg, #ECFBFF 0%, #FFF3F5 100%);
}

.step_wrap {
  position: relative;
  overflow-x: scroll;
  padding-bottom: 2rem;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
  z-index: 0;
}
.step_wrap::before {
  content: "";
  display: inline-block;
  width: 840px;
  height: 1px;
  background-color: #D0D0D0;
  position: absolute;
  left: 93px;
  top: 15px;
  z-index: -1;
}

.step_wrap ::-webkit-scrollbar {
  display: none;
}

.step {
  display: flex;
  gap: 2.3rem;
  width: 1020px;
  margin: auto;
  padding: 0 1rem;
}

.step .item {
  text-align: center;
  width: calc((100% - 9.2rem) / 5);
}
.step .item span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #60B6BC;
  border-radius: 50%;
}
.step .item h3 {
  font-size: 2.4rem;
  color: #60B6BC;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
}
.step .item:nth-of-type(even) h3 {
  color: #EA99A6;
}
.step .item:nth-of-type(even) span {
  background-color: #EA99A6;
}
.step .item:nth-of-type(even) .bg {
  box-shadow: 0px 0px 20px 0px rgba(234, 153, 166, 0.4);
}
.step .item:nth-of-type(even) .bg h4 {
  color: #EA99A6;
}

.step .item .bg {
  margin-top: 2.4rem;
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 20px 0px rgba(96, 182, 203, 0.4);
  padding: 2.5rem 2rem;
  box-sizing: border-box;
}
.step .item .bg h4 {
  color: #60B6BC;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  margin-top: 1.6rem;
}
.step .item .bg p {
  margin-top: 10px;
  text-align: left;
}
.step .item .bg img {
  width: 60px;
}

/* ///////////////////////////////////////




募集要項 タブ




/////////////////////////////////////// */
.tab {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 2rem 0;
  background-color: #DCDCDC;
  border-radius: 1rem;
  color: #FFFFFF;
  cursor: pointer;
  transition: 0.5s;
}
.tab:hover {
  opacity: 0.7;
}
.tab:not(:first-child) {
  margin-top: 2rem;
}

.panel-area {
  flex: 1;
}

.tab.active {
  background: #60B6BC;
  position: relative;
}
.tab.active::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #60B6BC;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.job_wrap .tab02,
.job_wrap .tab04,
.job_wrap .tab05 {
  font-size: 1.6rem;
  border-radius: 20px 20px 0 0;
  flex: 1;
  padding: 10px 0;
  background-color: #DCDCDC;
  color: #FFFFFF;
  text-align: center;
  cursor: pointer;
  transition: 0.5s;
}
.job_wrap .tab02:hover,
.job_wrap .tab04:hover,
.job_wrap .tab05:hover {
  opacity: 0.7;
}

.job_wrap .tab02.active02,
.job_wrap .tab04.active04,
.job_wrap .tab05.active05 {
  background-color: #60B6BC;
}

.job_wrap .tab.active::after {
  content: none;
}

.job_wrap .tab-area {
  display: flex;
  border-bottom: 2px solid #60B6BC;
  width: 100%;
}

.panel {
  display: none;
}

.panel.active {
  display: block;
}

.panel02, .panel04, .panel05 {
  display: none;
}

.panel02.active02,
.panel04.active04,
.panel05.active05 {
  display: block;
}

.panel02 table th,
.panel04 table th,
.panel05 table th {
  width: 30%;
  background-color: #F8FDFF;
  padding: 1.5rem;
  color: #60B6BC;
  vertical-align: middle;
}

.panel02 table td,
.panel04 table td,
.panel05 table td {
  background-color: #FFFFFF;
  padding: 1.5rem;
  vertical-align: middle;
  width: 70%;
}

.job_title h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1;
}

.job_title p {
  font-family: "Quicksand", sans-serif;
  color: #60B6BC;
  margin-top: 1rem;
  font-weight: 700;
}

.job_area .panel img {
  width: 100%;
  border-radius: 2rem;
  margin-top: 4rem;
}

.job_wrap {
  flex: 1;
}
.job_wrap table,
.job_wrap table th,
.job_wrap table td {
  border: 1px solid #D0D0D0;
}

.job_area .bg {
  background-color: #FFFFFF;
  border-radius: 0 60px 60px 60px;
  box-sizing: border-box;
  padding: 4rem 4rem 10rem 4rem;
  box-shadow: 0px 0px 20px 0px rgba(96, 182, 203, 0.4);
}

.job_area {
  margin-top: 10rem;
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.tab-area {
  width: 30%;
}

/* ///////////////////////////////////////




よくある質問 タブ




/////////////////////////////////////// */
.faq_wrap .accordion_one {
  background-color: #FFFFFF;
  padding: 2.5rem;
  box-sizing: border-box;
  border-radius: 0 40px 40px 40px;
  box-shadow: 0px 0px 20px 0px rgba(96, 182, 203, 0.4);
}
.faq_wrap .accordion_one:not(:first-of-type) {
  margin-top: 4rem;
}
.faq_wrap .accordion_one .q, .faq_wrap .accordion_one .a {
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 50%;
  box-sizing: border-box;
  font-weight: 700;
  font-family: "Quicksand", sans-serif;
  font-size: 2rem;
  flex-shrink: 0;
}
.faq_wrap .accordion_one .q {
  color: #FFFFFF;
  background-color: #60B6BC;
}
.faq_wrap .accordion_one .a {
  border: 1px solid #60B6BC;
  color: #60B6BC;
  background-color: #FFFFFF;
}

.faq_wrap .accordion_header {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
}
.faq_wrap .accordion_header h3 {
  width: 85%;
}
.faq_wrap .accordion_header::before, .faq_wrap .accordion_header::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 2px;
  background-color: #60B6BC;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s;
}
.faq_wrap .accordion_header::before {
  right: 0;
}
.faq_wrap .accordion_header::after {
  right: 0;
  transform: rotate(90deg);
}

.faq_wrap .accordion_header.open {
  cursor: pointer;
}
.faq_wrap .accordion_header.open::before {
  transform: rotate(180deg);
}
.faq_wrap .accordion_header.open::after {
  content: none;
}

.faq_wrap .accordion_inner > div {
  background: linear-gradient(45deg, #ECFBFF 0%, #FFF3F5 100%);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 2.4rem;
}

.faq .fl {
  display: flex;
  gap: 4rem;
}

.faq_wrap {
  flex: 1;
}

.panel03 {
  display: none;
}

.panel03.active {
  display: block;
}

.tab03 {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  padding: 2rem 0;
  background-color: #DCDCDC;
  border-radius: 1rem;
  color: #FFFFFF;
  cursor: pointer;
  transition: 0.5s;
}
.tab03:hover {
  opacity: 0.7;
}
.tab03:not(:first-child) {
  margin-top: 2rem;
}

.tab03.active {
  background: #60B6BC;
  position: relative;
}
.tab03.active::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #60B6BC;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.375em 0.64952em;
  border-left-color: currentColor;
  border-right: 0;
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  Voice




  /////////////////////////////////////// */
  .voice .intro_item .accordion_header h3 {
    font-size: 2.4rem;
  }
  /* ///////////////////////////////////////




  MOVIE




  /////////////////////////////////////// */
  .movie_txt {
    width: 100%;
  }
  .movie::before, .movie::after {
    bottom: -11rem;
    max-width: initial;
    width: 200px;
  }
  .movie::before {
    background-image: url(../image/illust02.png);
  }
  .movie::after {
    background-image: url(../image/illust04.png);
    width: 180px;
  }
  /* ///////////////////////////////////////




  BENEFIT




  /////////////////////////////////////// */
  .benefit .fl {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 6rem;
  }
  .benefit .large_container {
    display: contents;
  }
  .benefit .fl .img {
    width: 95%;
    height: 60vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .benefit .item {
    width: 90%;
    margin: auto;
  }
  /* ///////////////////////////////////////




  その他の
  福利厚生




  /////////////////////////////////////// */
  .grid_container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
  }
  .item_grid:nth-of-type(2) {
    border-bottom: none;
  }
  .item_grid:nth-of-type(3) {
    border-bottom: none;
  }
  .item_grid img {
    min-width: 80px;
  }
  /* ///////////////////////////////////////




  募集要項 タブ




  /////////////////////////////////////// */
  .job_area {
    flex-direction: column;
  }
  .tab-area {
    display: flex;
    gap: 1rem;
    width: 100%;
  }
  .tab-area .tab {
    width: calc((100% - 2rem) / 3);
  }
  .tab:not(:first-child) {
    margin-top: 0;
  }
  .tab.active::after {
    right: auto;
    top: auto;
    transform: translateY(0%);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-color: transparent;
    border-width: 0.64952em 0.375em;
    border-top-color: currentColor;
    border-bottom: 0;
  }
  .panel-area {
    width: 100%;
  }
  .job_wrap .tab-area {
    gap: 0;
  }
  /* ///////////////////////////////////////




  よくある質問



  /////////////////////////////////////// */
  .tab-area .tab03 {
    width: calc((100% - 2rem) / 3);
  }
  .tab03:not(:first-child) {
    margin-top: 0;
  }
  .tab03.active::after {
    right: auto;
    top: auto;
    transform: translateY(0%);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    border-style: solid;
    border-color: transparent;
    border-width: 0.64952em 0.375em;
    border-top-color: currentColor;
    border-bottom: 0;
  }
  .faq .fl {
    flex-direction: column;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  MV




  /////////////////////////////////////// */
  .mv_list {
    display: flex;
  }
  .mv_list img {
    width: 100%;
    aspect-ratio: 24/19;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .recruit_catch h1 {
    font-size: 4.8rem;
  }
  .recruit_catch p {
    font-size: 2.8rem;
    margin-top: 2rem;
  }
  .recruit_about p span {
    font-size: 3.6rem;
  }
  .recruit_about::before {
    background-image: url(../image/cloud_sp.png);
    aspect-ratio: auto;
    left: -3%;
    width: 30%;
    height: 90vh;
  }
  .recruit_about::after {
    background-image: url(../image/cloud_sp02.png);
    aspect-ratio: auto;
    right: -2%;
    width: 30%;
    height: 90vh;
  }
  /* ///////////////////////////////////////




  Voice




  /////////////////////////////////////// */
  .voice .intro_item .accordion_one {
    padding: 4.8rem 4rem;
  }
  .voice .intro_item .accordion_header h3 {
    font-size: 3.6rem;
  }
  .voice .intro_item .accordion_one span {
    top: 13px;
  }
  /* ///////////////////////////////////////




  MOVIE




  /////////////////////////////////////// */
  .movie {
    padding-bottom: 20rem;
  }
  .movie::before, .movie::after {
    bottom: -14rem;
  }
  .movie::before {
    width: 150px;
    aspect-ratio: 1/1;
  }
  .movie::after {
    width: 150px;
    aspect-ratio: 1/1;
  }
  /* ///////////////////////////////////////




  BENEFIT




  /////////////////////////////////////// */
  /* ///////////////////////////////////////




  その他の
  福利厚生




  /////////////////////////////////////// */
  /* ///////////////////////////////////////




  JOB




  /////////////////////////////////////// */
  /* ///////////////////////////////////////




  募集要項 タブ




  /////////////////////////////////////// */
  /* ///////////////////////////////////////




  よくある質問



  /////////////////////////////////////// */
}
@media screen and (max-width: 650px) and (max-width: 330px) {
  .movie {
    padding-bottom: 14rem;
  }
  .movie::before, .movie::after {
    bottom: -14rem;
  }
  .movie::before {
    width: 120px;
  }
  .movie::after {
    width: 120px;
  }
}
@media screen and (max-width: 650px) {
  .video {
    padding: 6px 6px 0 6px;
  }
  .video video {
    border-radius: 5px;
  }
}
@media screen and (max-width: 650px) {
  .benefit {
    padding-top: 24rem;
  }
}
@media screen and (max-width: 650px) {
  .pick_up {
    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width: 650px) {
  .pick_up p {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 650px) {
  .benefit_head img {
    width: 50px;
  }
}
@media screen and (max-width: 650px) {
  .title h3 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 650px) {
  .title p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 650px) {
  .benefit_name {
    padding: 3rem;
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 650px) {
  .item_grid p {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 650px) {
  .item_grid img {
    max-width: 50px;
    min-width: initial;
    width: 13vw;
  }
}
@media screen and (max-width: 650px) {
  .item_1 p {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 650px) {
  .step {
    gap: 4rem;
    width: 1200px;
  }
}
@media screen and (max-width: 650px) {
  .step .item {
    width: calc((100% - 16rem) / 5);
  }
}
@media screen and (max-width: 650px) {
  .step .item h3 {
    font-size: 4.8rem;
  }
}
@media screen and (max-width: 650px) {
  .step .item .bg {
    padding: 4rem;
  }
}
@media screen and (max-width: 650px) {
  .step .item .bg h4 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 650px) {
  .step_wrap::before {
    width: 975px;
    left: 113px;
  }
}
@media screen and (max-width: 650px) {
  .tab {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 650px) {
  .tab.active::after {
    bottom: -8px;
  }
}
@media screen and (max-width: 650px) {
  .job_area .bg {
    padding: 8rem 4rem;
  }
}
@media screen and (max-width: 650px) {
  .job_title h3 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 650px) {
  .job_wrap .tab02,
.job_wrap .tab04,
.job_wrap .tab05 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 650px) {
  .panel02 table td,
.panel04 table td,
.panel05 table td {
    padding: 2rem;
  }
}
@media screen and (max-width: 650px) {
  .panel02 table th,
.panel04 table th,
.panel05 table th {
    padding: 2rem;
  }
}
@media screen and (max-width: 650px) {
  .tab03 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 650px) {
  .tab03.active::after {
    bottom: -8px;
  }
}
@media screen and (max-width: 650px) {
  .faq_wrap .accordion_one {
    padding: 4rem;
  }
  .faq_wrap .accordion_one .q, .faq_wrap .accordion_one .a {
    font-size: 3.2rem;
    width: 30px;
    height: 30px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 650px) {
  .faq_wrap .accordion_header::before, .faq_wrap .accordion_header::after {
    width: 15px;
  }
  .faq_wrap .accordion_header::after {
    top: 48%;
  }
}
@media screen and (max-width: 650px) {
  .faq_wrap .accordion_inner > div {
    padding: 3rem;
  }
}
@media screen and (max-width: 650px) {
  .faq_wrap .accordion_header h3 {
    width: 80%;
  }
}
@media screen and (max-width: 340px) {
  .tab {
    font-size: 2.4rem;
  }
  .tab.active::after {
    bottom: -6px;
  }
  .tab03 {
    font-size: 2.4rem;
  }
  .tab03.active::after {
    bottom: -6px;
  }
}
/* ///////////////////////////////////////




PRIVACY&POLICY




/////////////////////////////////////// */
/* ///////////////////////////////////////
PRIVACY&POLICY  TOP
/////////////////////////////////////// */
.PrivacyPolicy_top {
  background-color: #60B6BC;
  margin-top: 8rem;
  text-align: center;
  padding: 4rem 0;
}

.PrivacyPolicy {
  background-color: #F5F5F5;
}

.PrivacyPolicy_top h1 {
  font-size: 4.8rem;
  margin-top: 1rem;
  color: #FFFFFF;
  line-height: 1;
}

.PrivacyPolicy_top p {
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #60B6BC;
}

.PrivacyPolicy .title {
  font-size: 2.4rem;
  font-weight: 700;
  position: relative;
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 1.6rem;
}
.PrivacyPolicy .title::after {
  content: "";
  display: inline-block;
  background-color: #60B6BC;
  width: 20%;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
}

.PrivacyPolicy .bold {
  font-weight: 700;
}

.PrivacyPolicy .list_wrap {
  margin-top: 10px;
}
.PrivacyPolicy .list_wrap div {
  width: 95%;
  margin: 5px auto 0 auto;
}

.first {
  margin-top: 1.6rem !important;
}

.PrivacyPolicy_table {
  width: 100%;
}
.PrivacyPolicy_table ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.PrivacyPolicy_table ul li:not(:first-child) {
  margin-top: 1rem;
}
.PrivacyPolicy_table td, .PrivacyPolicy_table th {
  border: 1px solid #464646;
}

.PrivacyPolicy_table th {
  background: #E4F2F9;
  padding: 12px 0;
  text-align: center;
}

.PrivacyPolicy_table tr {
  background-color: #FFFFFF;
}

.PrivacyPolicy_table td {
  padding: 1.5em 1.6rem;
}

.PrivacyPolicy_table .item {
  width: 40%;
  vertical-align: middle;
}

.txt_mid {
  font-size: 2rem;
}

.underLine {
  text-decoration: underline;
}

.PrivacyPolicy .info {
  text-align: right;
  margin-top: 10rem;
}

@media screen and (max-width: 650px) {
  .PrivacyPolicy_top {
    margin-top: 13rem;
  }
  .PrivacyPolicy_top h1 {
    font-size: 6.4rem;
  }
  .PrivacyPolicy_top {
    font-size: 3.6rem;
  }
  .PrivacyPolicy {
    overflow: hidden;
  }
  .PrivacyPolicy .title {
    font-size: 3.6rem;
  }
  .PrivacyPolicy .bold {
    font-size: 3.2rem;
  }
  .table_wrap {
    width: 100%;
    overflow-x: scroll;
  }
  .table_wrap table {
    width: 500px;
  }
  .PrivacyPolicy_table td {
    padding: 2rem;
  }
} /* ///////////////////////////////////////




SERVICE




/////////////////////////////////////// */
.service_list img {
  width: 40%;
  height: 500px;
  max-width: 400px;
  border-radius: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.service_list h3,
.service_list h4 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  line-height: 1;
}
.service_list h3::before,
.service_list h4::before {
  content: "";
  display: inline-block;
  background-color: #60B6BC;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 1rem;
}

.service_list h3 {
  font-size: 3.2rem;
}

.service_list h4 {
  font-size: 2.4rem;
  margin-top: 4rem;
}

.service_list .lead {
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: #60B6BC;
  margin-top: 1rem;
  margin-left: 2.5rem;
}

.service_list .txt {
  margin-top: 2.4rem;
}

.service_list ul {
  padding: 2.5rem;
  background-color: #F1FCFF;
  border-radius: 2rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}
.service_list ul li {
  font-weight: 700;
  text-align: center;
  padding: 5px 2rem;
  background-color: #FFFFFF;
  border: 1px solid #60B6BC;
  border-radius: 999px;
  color: #60B6BC;
}

.service_list {
  display: flex;
  gap: 6rem;
  align-items: center;
}
.service_list:not(:first-of-type) {
  margin-top: 10rem;
}
.service_list:nth-of-type(even) {
  flex-direction: row-reverse;
}
.service_list:nth-of-type(2) ul {
  background-color: #FFFCFC;
}
.service_list:nth-of-type(2) li {
  border-color: #EA99A6;
  color: #EA99A6;
}
.service_list:nth-of-type(2) h3::before, .service_list:nth-of-type(2) h4::before {
  background-color: #EA99A6;
}
.service_list:nth-of-type(2) .lead {
  color: #EA99A6;
}
.service_list:nth-of-type(3) ul {
  background-color: #FDF8F1;
}
.service_list:nth-of-type(3) li {
  border-color: #E79D45;
  color: #E79D45;
}
.service_list:nth-of-type(3) h3::before, .service_list:nth-of-type(3) h4::before {
  background-color: #E79D45;
}
.service_list:nth-of-type(3) .lead {
  color: #E79D45;
}
.service_list:nth-of-type(4) ul {
  background-color: #F2FAEF;
}
.service_list:nth-of-type(4) li {
  border-color: #80BD6A;
  color: #80BD6A;
}
.service_list:nth-of-type(4) h3::before, .service_list:nth-of-type(4) h4::before {
  background-color: #80BD6A;
}
.service_list:nth-of-type(4) .lead {
  color: #80BD6A;
}
.service_list:nth-of-type(5) ul {
  background-color: #FBF7E7;
}
.service_list:nth-of-type(5) li {
  border-color: #E3B820;
  color: #E3B820;
}
.service_list:nth-of-type(5) h3::before, .service_list:nth-of-type(5) h4::before {
  background-color: #E3B820;
}
.service_list:nth-of-type(5) .lead {
  color: #E3B820;
}
.service_list:last-of-type ul {
  background-color: #FBF7FD;
}
.service_list:last-of-type li {
  border-color: #9C72AB;
  color: #9C72AB;
}
.service_list:last-of-type h3::before, .service_list:last-of-type h4::before {
  background-color: #9C72AB;
}
.service_list:last-of-type .lead {
  color: #9C72AB;
}

.title_sp {
  display: none;
}

/* ///////////////////////////////////////




在宅生活の継続看護を支える。




/////////////////////////////////////// */
.service_foot_wrap {
  background: linear-gradient(45deg, #ECFBFF 0%, #FFF3F5 100%);
  border-radius: 10rem;
  padding-bottom: 0;
}

.service_foot_bg {
  background-color: #FFFFFF;
  border-radius: 4rem;
  padding: 8rem;
  box-sizing: border-box;
}

.catch_wrap {
  text-align: center;
  background-image: url(../image/illust.png);
  background-size: 60% auto;
  background-repeat: no-repeat;
  padding-bottom: 17rem;
  background-position: bottom;
}

.catch_wrap h2 {
  font-size: 4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}
.catch_wrap h2 .green {
  color: #60B6BC;
}
.catch_wrap h2 .pink {
  color: #EA99A6;
}

.catch_wrap p {
  line-height: 2.4;
}

.service_foot_bg .list .num {
  font-size: 1.8rem;
  font-family: "Quicksand", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #60B6BC;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 2.5;
  flex-shrink: 0;
}

.service_foot_bg .list .txt {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #60B6BC;
  font-weight: 500;
  font-size: 2.4rem;
  flex: 1;
}

.service_foot_bg .list {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #FFFFFF;
  border-radius: 40px 40px 40px 0;
  box-shadow: 0px 0px 20px 0px rgba(96, 182, 203, 0.4);
  padding: 2.5rem;
}
.service_foot_bg .list:not(:first-of-type) {
  margin-top: 4rem;
}
.service_foot_bg .list:nth-of-type(odd) {
  box-shadow: 0px 0px 20px 0px rgba(234, 153, 166, 0.4);
}
.service_foot_bg .list:nth-of-type(odd) .num {
  background-color: #EA99A6;
}
.service_foot_bg .list:nth-of-type(odd) .txt {
  color: #EA99A6;
}

@media screen and (max-width: 980px) {
  .service_list {
    flex-direction: column;
    align-items: flex-start;
  }
  .service_list:nth-of-type(even) {
    flex-direction: column;
  }
  .service_list img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    max-width: initial;
    aspect-ratio: 3/2;
  }
  .service_list:nth-of-type(5) img {
    -o-object-position: center;
       object-position: center;
  }
  .service_list {
    gap: 0;
  }
  .title_pc {
    display: none;
  }
  .title_sp {
    display: block;
  }
  .service_list img {
    margin-top: 4rem;
  }
  /* ///////////////////////////////////////




  在宅生活の継続看護を支える。




  /////////////////////////////////////// */
  .catch_wrap .pc_none {
    display: inline-block;
  }
  .catch_wrap {
    background-size: 100% auto;
    padding-bottom: 18rem;
  }
  .service_foot_bg {
    padding: 8rem 4rem;
  }
}
@media screen and (max-width: 650px) {
  .service_list h3 {
    font-size: 4.8rem;
  }
  .service_list h4 {
    font-size: 3.6rem;
  }
  .service_list img {
    margin-top: 6rem;
  }
  .service_list ul {
    margin-top: 2rem;
    padding: 3rem;
  }
  .service_list ul li {
    padding: 5px 3rem;
  }
  /* ///////////////////////////////////////




  在宅生活の継続看護を支える。




  /////////////////////////////////////// */
  .catch_wrap h2 {
    font-size: 4.8rem;
  }
  .service_foot_bg .list .num {
    width: 40px;
    height: 40px;
    font-size: 3.2rem;
  }
  .service_foot_bg .list .txt {
    font-size: 3.2rem;
  }
  .service_foot_bg .list {
    padding: 4rem 3rem;
  }
}/*# sourceMappingURL=style.css.map */