@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: "zen-maru-gothic", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.1rem;
}

a:hover {
  opacity: 0.5;
}

.clarity a:hover {
  opacity: 1;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

.wide_only {
  display: none;
}

.is-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fadeInUpTrigger {
  opacity: 0;
}

.ft_40 {
  font-size: 4.0rem;
}

.ft_36 {
  font-size: 3.6rem;
}

.ft_30 {
  font-size: 3.0rem;
}

.ft_24 {
  font-size: 2.4rem;
}

/* header */
header {
  width: 100%;
  height: 60px;
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
}

.header_bg {
  position: absolute;
  height: 180px;
  width: 100%;
  overflow: hidden;
  top: -100px;
  z-index: 1;
}

.header_bg img {
  height: 180px;
  width: auto;
}

.header_inner {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 4vw;
  position: relative;
  z-index: 5;
}

.header_inner .logo {
  padding-top: 10px;
  width: 160px;
}

.nav_wrap {
  position: fixed;
  z-index: 100;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  transition: all 0.6s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f08b99;
}

.nav_wrap nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav_wrap ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 40px;
}

.nav_wrap li {
  list-style: none;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ffff;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 1.8rem;
}

.nav_wrap.show {
  right: 0;
}

.nav_wrap nav .sp_nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav_wrap nav .sp_nav li {
  border-bottom: 1px solid #ffffff;
}

/* ham_menu */
.ham_btn {
  position: relative;
  cursor: pointer;
  width: 80px;
  height: 80px;
  z-index: 999;
  margin-right: 16px;
  background-color: #f08b99;
  margin: 0;
  top: 0;
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 15px;
  height: 1px;
  background: #fff;
  width: 40px;
  top: 54px;
}

.ham_btn span:nth-of-type(1) {
  top: 34px;
}

.ham_btn span:nth-of-type(2) {
  top: 44px;
}

.ham_btn.active span:nth-of-type(1) {
  top: 35px;
  left: 20px;
  transform: translateY(6px) rotate(-45deg);
}

.ham_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.ham_btn.active span:nth-of-type(3) {
  top: 48px;
  left: 20px;
  transform: translateY(-6px) rotate(45deg);
}

/* MV */
.MV {
  position: relative;
}

.MV_slide {
  margin-inline: auto;
  overflow: hidden;
}

.slide img {
  width: 100%;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

.MV_lead {
  position: absolute;
  top: 40px;
  left: 4vw;
  width: 50%;
  max-width: 500px;
}

.MV_text {
  position: absolute;
  text-align: justify;
  bottom: 8%;
  padding: 0 6vw;
  z-index: 20;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
}

/* 共通 */
section {
  position: relative;
  padding: 100px 0 120px;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.section_ttl h2 {
  font-size: 2.6rem;
  margin-bottom: 40px;
  text-align: left;
  line-height: 1;
  font-weight: 700;
  padding-left: 2vw;
}

section::before {
  content: "";
  position: absolute;
  left: 0;
  height: 3px;
  width: 50%;
  background-color: #ffffff;
  top: 150px;
}

section::after {
  content: "";
  position: absolute;
  right: 6vw;
  height: 3px;
  width: 100%;
  background-color: #ffffff;
  top: 180px;
}

#top_02::before,
#top_04::before {
  left: auto;
  right: 0;
}

#top_02::after,
#top_04::after {
  right: 0;
  left: 6vw;
}

.contentInner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  text-align: justify;
  margin: 100px auto;
  width: 100%;
}

.more a {
  display: block;
  width: 80%;
  max-width: 300px;
  margin: 40px auto;
  height: 70px;
  border-radius: 35px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ea5550;
  font-size: 2.0rem;
  padding-right: 9rem;
  z-index: 100;
}

.more a::after {
  content: "";
  width: 100px;
  height: 7px;
  background-image: url(../img/arrow_w@2x.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 40%;
  right: 20px;
  z-index: 100;
}

.more a:hover {
  opacity: 1;
}

.more a::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 35px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  transition: background-color 0.3s;
  top: 0;
  left: 0;
  transition: 1s all;
}

.more a:hover::before {
  background-color: rgba(255, 255, 255, 0.3);
}

.section_ttl--deco {
  position: absolute;
}

#top_01 {
  background-image: url(../img/top01_bg@2x.png);
  background-size: cover;
  padding: 100px 0 80px;
}

.section_deco {
  position: absolute;
  width: 133px;
  z-index: 1;
}

#top_01 .section_deco.deco01 {
  right: 6vw;
  top: 30px;
}

#top_01 .section_deco.deco02 {
  width: 168px;
  right: auto;
  left: -40px;
  top: 50%;
}

#top_01 .section_deco.deco03 {
  width: 209px;
  right: 6vw;
  bottom: 8px;
}

#top_01 .content {
  position: relative;
  z-index: 10;
}

#top_01 .contentInner {
  margin: 100px auto 80px;
}

#top_01 .content_text {
  background-image: url(../img/top01_textbg@2x.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 80px 6vw;
}

#top_01 .content_text p {
  max-width: 480px;
  margin: 0 auto;
}

#top_01 .content_lead {
  padding-bottom: 20px;
  line-height: 1.5;
}

#top_01 .content_img {
  margin: 80px 6vw 0;
}

#top_02 {
  background-color: #ffae8a;
}

#top_02 h2,
#top_04 h2 {
  text-align: right;
  padding: 0 6vw 0 0;
}

#top_02 .contentInner {
  gap: 100px;
}

#top_02 .content_text {
  display: flex;
  flex-direction: column-reverse;
}

#top_02 .content_text p {
  background-image: url(../img/top02_textbg01@2x.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 80px 100px 0;
  width: 500px;
  height: 240px;
  display: flex;
  align-items: center;
  margin: 0 auto
}

#top_02 .content_text dl {
  background-image: url(../img/top02_textbg02@2x.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 80px 6vw 40px;
  width: 100%;
  text-align: left;
  margin-bottom: 80px;
  font-weight: 700;
  color: #333333;
}

dt,
dd {
  padding: 10px 0;
  position: relative;
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

dt::after,
dd::after {
  content: "";
  width: 100%;
  height: 3px;
  background-image: url(../img/line.png);
  background-size: auto 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
}

#top_02 .content_img {
  margin: 0 6vw;
}

#top_03 {
  background-image: url(../img/top03_bg@2x.png);
  padding: 100px 0 80px;
}

#top_03 .section_lead {
  padding: 80px 6vw;
  text-align: justify;
}

#top_03 .content {
  padding: 0 6vw;
}

#top_03 .contentInner {
  max-width: 480px;
  margin: 0 auto 160px;
}

#top_03 .arrow {
  width: 200px;
  margin: 0 auto;
}

#top_04 {
  background-color: #efaaa5;
}

#top_04 .content_text {
  text-align: center;
  background-image: url(../img/top04_textbg@2x.png);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: top center;
  padding: 100px 6vw;
  line-height: 3;
}

#top_04 .content_img {
  margin: 0 6vw;
}

#top_04 .more a {
  background-color: #939393;
}

#top_05 {
  padding: 0;
}

#top_05::before,
#top_05::after {
  display: none;
}

#contact {
  background-image: url(../img/contact_bg@2x.png);
  padding-bottom: 100px;
}

#contact .section_deco.deco04 {
  right: auto;
  left: 6vw;
  top: 35%;
  width: 227px;
}

#contact .section_deco.deco05 {
  width: 196px;
  right: 6vw;
  top: auto;
  bottom: 10px;
}

#contact .content {
  position: relative;
  z-index: 10;
  padding: 0 6vw;
}

#contact .contact_inner {
  padding: 0 6vw;
}

#contact .section_lead {
  text-align: left;
  display: inline-block;
  margin: 0 auto 80px;
}

.contact_btn--wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  margin: 60px auto 100px;
}

.contact_btn a {
  width: 312px;
  height: 70px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ea5550;
  font-size: 3.0rem;
  position: relative;
  padding-left: 4rem;
}

.contact_btn a:hover {
  opacity: 1;
}

.contact_btn a::after {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 35px;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  transition: background-color 0.3s;
  transition: 1s all;
  left: 0;
}

.contact_btn a:hover::after {
  background-color: rgba(255, 255, 255, 0.5);
}

.contact_btn::before {
  content: "";
  position: absolute;
  left: 27px;
  height: 33px;
  width: 33px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
}

.contact_btn.tel::before {
  background-image: url(../img/tel_w@2x.png);
  z-index: 10;
}

.contact_btn.mail::before {
  background-image: url(../img/mail@2x.png);
  height: 20px;
  width: 28px;
  left: 40px;
  z-index: 10;
}

#access {
  padding: 0;
}

#access .access_map iframe {
  display: block;
  width: 100%;
  height: 500px;
}

#access::before {
        content: "";
        height: 0;
    }
#access::after {
        content: "";
        height: 0;
    }　
footer {
  background-color: #fffede;
}

.footer_inner {
  padding: 40px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer_item01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 10px;
  font-size: 1.6rem;
  max-width: 480px;
  position: relative;
  z-index: 10;
}

footer .tel a {
  color: #333333;
  position: relative;
  line-height: 1;
  padding: 0 0 0 4rem;
  display: inline-block;
}

footer .tel a p {
  line-height: 1;
  display: block
}

footer .tel a::before {
  content: "";
  position: absolute;
  left: 0px;
  height: 20px;
  width: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/tel@2x.png);
  z-index: 10;
}

.footer_logo {
  width: 60%;
  margin: 0 auto;
}

.footer_item02 {
  margin: 0 auto;
  font-size: 1.6rem;
  width: 100%;
  max-width: 390px;
  padding: 20px;
  position: relative;
  z-index: 10;
}

.Instagram a {
  width: 40px;
  margin: 0 auto 20px;
  display: inline-block;
}

.footer_nav li {
  margin-bottom: 14px;
  text-align: left;
}

.footer_nav li a {
  color: #333333;
  font-size: 1.6rem;
}

.footer_nav li a span {
  display: block;
  line-height: 1;
  font-size: 1.8rem;
  font-weight: 900;
}

.footer_deco {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.cr {
  padding: 14px 0 8px;
  position: relative;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.cr_bg {
  position: absolute;
  height: 90px;
  width: 100%;
  overflow: hidden;
  top: 0;
  z-index: 1;
}

.cr_bg img {
  height: 90px;
  width: auto;
}

.cr p {
  position: relative;
  z-index: 10;
  font-size: 1.6rem;
}

#go_top {
  width: 47px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
}

/* pcスタイル */
@media screen and (min-width: 960px) {
    .row
{
    flex-direction: row!important;
}
    .re
    {
        flex-direction: row-reverse!important;
    }
  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  header {
    width: 100%;
    height: 130px;
  }

  .header_bg {
    background-image: url(../img/header_bg@2x.png);
    background-size: cover;
    background-position: center bottom;
    width: 100%;
    top: -30px;
  }

  header a {
    color: #333333;
  }

  .header_inner {
    height: 100%;
    padding: 0 10px 0 6vw;
    gap: 40px;
  }

  .header_inner .logo {
    width: 300px;
  }

  .header_right {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: calc(100% - 200px);
    max-width: 1280px;
    height: 100%;
    background: none;
    align-items: flex-end;
    min-width: 680px;
    font-weight: 700;
    gap: 50px;
  }

  .header_right--item {
    padding-top: 10px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
  }

  .header_btnWrap {
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 300px;
    gap: 5px;
  }

  .header_tel {
    position: relative;
    padding-right: 10px;
  }

  header .tel a {
    color: #333333;
    font-size: 4.0rem;
  }

  .header_tel a::before {
    content: "";
    position: absolute;
    background-image: url(../img/tel@2x.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 24px;
    left: -18%;
    top: 50%;
    transform: translateY(-50%);
  }

  .header_contact a {
    width: 280px;
    height: 60px;
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #00afcc;
    font-size: 2.4rem;
    position: relative;
    padding-left: 4rem;
    color: #ffffff;
  }

  .header_contact a:hover {
    opacity: 1;
  }

  .header_contact a::after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 35px;
    background-color: rgba(255, 255, 255, 0);
    position: absolute;
    transition: background-color 0.3s;
    transition: 1s all;
    left: 0;
  }

  .header_contact a:hover::after {
    background-color: rgba(255, 255, 255, 0.5);
  }

  .header_contact a::before {
    content: "";
    background-image: url(../img/mail@2x.png);
    height: 24px;
    width: 33px;
    z-index: 10;
    position: absolute;
    left: 27px;
    top: 50%;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
  }

  .header_contact a p {
    line-height: 1;
  }

  .header_right nav {
    width: 100%;
  }

  .header_right nav ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    padding-bottom: 0px;
  }

  .header_right nav ul li {
    padding: 0 0px 4px;
    display: flex;
    justify-content: space-between;
    width: calc(100% / 5);
    position: relative;
    height: 100%;
  }

  .header_right nav ul li a {
    width: 100%;
    color: #333333;
    font-size: 1.8rem;
    letter-spacing: 0.01rem;
    line-height: 1.3;
  }

  .MV_lead {
    position: absolute;
    top: 80px;
    left: auto;
    right: 4vw;
  }

  .MV_text {
    font-size: 4.0rem;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
    width: 100%;
    bottom: 12%;
  }

  .MV_text .ft_24 {
    font-size: 5.0rem;
  }

  .MV_text p {
    max-width: 1360px;
    margin: 0 auto;
  }

  section,
  #top_01,
  #top_02,
  #top_03,
  #top_04 {
    padding: 120px 6vw 160px;
  }

  section::before {
    content: "";
    position: absolute;
    left: 0;
    height: 3px;
    width: 40%;
    background-color: #ffffff;
    top: 180px;
  }

  section::after {
    content: "";
    position: absolute;
    right: 45%;
    height: 3px;
    width: 55%;
    background-color: #ffffff;
    top: 210px;
  }

  #top_02::before,
  #top_04::before {
    left: auto;
    right: 0;
  }

  #top_02::after,
  #top_04::after {
    right: 0;
    left: 45%;
  }

  .section_inner {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0;
  }

  .section_ttl {
    margin: 0 auto;
    max-width: 1280px;
  }

  .section_ttl h2 {
    font-size: 5.0rem;
    padding: 0;
  }

  .section_lead {
    padding: 0;
    text-align: center;
    margin: 0 auto 40px;
  }

  .contentInner {
    flex-direction: row;
    max-width: 1660px;
    margin: 0px auto 60px;
    gap: 60px;
  }

  #top_01 .contentInner {
    margin: 140px auto 80px;
    justify-content: center;
    flex-wrap: wrap;
  }

  #top_01 .content_text {
    width: 50%;
    min-width: 820px;
    padding: 0px 80px 0 20px;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: contain;
  }

  #top_01 .content_img {
    margin: 0;
  }

  #top_01 .section_deco.deco01 {
    right: 35vw;
    top: 110px;
  }

  #top_01 .section_deco.deco02 {
    left: 5%;
    top: 70%;
  }

  #top_01 .section_deco.deco03 {
    right: 5%;
    top: 70%;
    bottom: auto;
  }

  #top_02 h2,
  #top_04 h2 {
    padding: 0;
  }

  #top_02 .section_inner {
    max-width: 1800px;
    margin: 0 auto;
  }

  #top_02 .contentInner {
    max-width: 1880px;
    gap: 0;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  #top_02 .content_img {
    margin: 0;
    width: 50%;
    max-width: 980px;
  }

  #top_02 .content_text {
    flex-direction: column;
    width: 100%;
    gap: 50px;
    max-width: 800px;
    margin: 40px 0 40px -50px;
  }

  #top_02 .content_text p {
    margin: 0 0 0 auto;
  }

  #top_02 .content_text dl {
    width: 800px;
    max-width: 1000px;
    margin: 0;
    padding: 80px 80px 20px 100px;
    background-size: contain;
  }
    #top_02 .row .content_text dl {
min-height: 28vw;
        display: flex;
        align-items: flex-start;
    justify-content: center;
    flex-direction: column;
  }

  #top_02 .description-item {
    display: flex;
  }

  #top_02 dt,
  #top_02 dd {
    padding: 8px 0;
    line-height: 1.8;
  }

  #top_02 dt {
    width: 190px;
  }

  #top_02 dd {
    width: calc(100% - 190px);
  }

  #top_03 .section_lead {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 0;
  }

  #top_03 .content {
    padding: 0;
  }

  #top_03 .contentInner {
    max-width: 10000px;
    margin: 0 auto 160px;
    flex-wrap: wrap;
    align-items: center;
  }

  #top_03 .arrow {
    margin: 0 auto 0 40px;
  }

  #top_03 .content_item.item02 {
    margin: 0 0 0 auto;
  }

  #top_04 {
    padding: 120px 0 160px
  }

  #top_04 .contentInner {
    margin: 140px auto;
    gap: 0;
    flex-wrap: wrap;
  }

  #top_04 .content_text {
    width: 50%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
  }

  #top_04 .content_img {
    position: absolute;
    width: 45vw;
    right: 0;
    margin: 0;
    max-height: 540px;
    overflow: hidden;
  }

  #top_05 {
    padding: 100px 6vw;
  }

  #top_05 .contentInner {
    justify-content: center;
  }

  #contact .contentInner {
    flex-direction: column;
    max-width: 1280px;
    margin: 160px auto 60px;
    gap: 60px;
  }

  #contact .section_lead {
    margin: 0px auto;
  }

  .contact_btn--wrap {
    flex-direction: row;
    justify-content: space-between;
    max-width: 720px;
    gap: 0;
    margin: 80px auto 0;
    padding: 0;
  }

  .contact_btn {
    width: 100%;
    min-width: 390px;
  }

  #contact .section_deco.deco04 {
    right: auto;
    left: 6vw;
    top: 60%;
    width: 227px;
  }

  #contact .section_deco.deco05 {
    width: 196px;
    right: 6vw;
    top: 5%;
    bottom: auto;
  }

  .footer_inner {
    flex-direction: row;
    gap: 80px;
    justify-content: flex-start;
    padding: 60px 6vw;
  }

  .footer_item01 {
    margin: 0;
    justify-content: flex-start;
    max-width: 540px;
  }

  .footer_logo {
    max-width: 540px;
    margin: 0;
    width: 100%;
  }

  .footer_item02 {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    padding: 0;
    justify-content: space-around;
    margin: 0;
  }

  .footer_nav {
    width: 100%;
    margin: 0;
    min-width: 710px;
  }

  .footer_nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 0px;
  }

  .footer_nav ul li {
    padding: 0 10px 0px;
    display: flex;
    justify-content: space-around;
    width: calc(100% / 5);
    position: relative;
    text-align: center;
  }

  .footer_deco {
    width: 100%;
  }

  .cr_bg {
    position: absolute;
    background-image: url(../img/cr_bg@2x.png);
    background-size: cover;
    background-position: center top;
    width: 100%;
    bottom: 0;
    z-index: 5;
  }

  #go_top {
    width: 60px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 900;
  }
}

/* pcスタイル */
@media screen and (min-width: 1600px) {
  .header_btnWrap {
    display: flex;
  }
}
/*-------------------------------------------------------------------

下層ページ

-----------------------------------------------------------*/
.h2_ttl_about
{
    font-size: max(3vw , 3rem);
    text-align: center;
    color: #FFFFFF;
    background: url("../img/h2_ttl_about.png")no-repeat center;
    padding: 12vw 0;
    background-size: cover;
}
.h2_ttl_recruit
{
    font-size: max(3vw , 3rem);
    text-align: center;
    color: #FFFFFF;
    background: url("../img/h2_ttl_recruit.png")no-repeat center;
    padding: 12vw 0;
    background-size: cover;
}
.h2_ttl_flow
{
    font-size: max(3vw , 3rem);
    text-align: center;
    color: #FFFFFF;
    background: url("../img/h2_ttl_flow.png")no-repeat center;
    padding: 12vw 0;
    background-size: cover;
}
.h2_ttl_contact
{
    font-size: max(3vw , 3rem);
    text-align: center;
    color: #FFFFFF;
    background: url("../img/h2_ttl_contact.png")no-repeat center;
    padding: 12vw 0;
    background-size: cover;
}
.h2_ttl
{
    font-size: max(3vw , 3rem);
    text-align: center;
    color: #FFFFFF;
    background: url("../img/h2_ttl.png")no-repeat center;
    padding: 12vw 0;
    background-size: cover;
}
.w100
{
    width: 100%;
}
.txt
{
    width: 70%;
}
.service_inner .img
{
    width: 13%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ftc
{
    justify-content: center;
    gap: 3vw;
}
.service_inner
{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3vw;
}
.service_ttl
{
    font-size: max(2vw , 2rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: #BF4D00;
}
.service_ttl span
{
    font-size: max(1vw , 1.4rem);
}
.sec01
{
    padding: 50px 6vw 160px;
    position: relative;
}
.sec01 .section_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
.sec01::before {
    content: "";
    position: absolute;
    left: 0;
    height: 3px;
    width: 40%;
    background-color: #333333;
    top: 180px;
  }

  .sec01::after {
    content: "";
    position: absolute;
    right: 45%;
    height: 3px;
    width: 55%;
    background-color: #333333;
    top: 210px;
  }
.sec01 .contentInner
{
    margin: 150px auto 0;
    flex-wrap: wrap;
}
.sec01 .description-item {
    display: flex;
    flex-wrap: wrap;
  }
.sec01 dt,.sec01 dd {
    width: 190px;
    max-width: 100%;
  }
@media screen and (max-width: 960px) {
    .sec01 .price_wrap dt,.sec01 .price_wrap dd {
    width: 100%!important;
    max-width: 100%;
  }
    .sec01::before {
  content: "";
  position: absolute;
  left: 0;
  height: 3px;
  width: 40%;
  background-color: #333333;
  top: 100px;
}
    .sec01::after {
  content: "";
  position: absolute;
  right: 45%;
  height: 3px;
  width: 55%;
  background-color: #333333;
  top: 130px;
}
    .sec01 .contentInner {
  margin: 100px auto 0;
  flex-wrap: wrap;
}
    .content .flow_txt
{
    width: 100%;
}
.content .flow_img
{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    flex-wrap: wrap;
}
}
  .sec01 .price_wrap dd {
    width: calc(100% - 190px);
  }
.sec01 .content_text {
  width: 100%;
}

.price_wrap
{
    max-width: 900px;
    margin: 3% auto;
}
.price_wrap dl
{
    width: 100%;
    margin-bottom: 3rem;
}
.description-item a
{
    color: #333333;
}
.flow_design03 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}

.flow_design03 ul {
  padding: 0;
}

.flow_design03 li {
  list-style-type: none;
}

.flow_design03 dd {
  margin-left: 0;
}

.flow03 {
  position: relative;
}

.flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.flow03 > li {
  position: relative;
}

.flow03 > li:not(:last-child) {
  margin-bottom: 40px;
}

.flow03 > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: #ca7530;
  display: inline-block;
  margin-right: 0.3em;
}

.flow03 > li dl {
  padding-left: 70px;
  position: relative;
}

.flow03 > li dl::before,
.flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
}

.flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #ca7530;
  border-radius: 50%;
  left: -4px;
}

.flow03 > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}

.flow03 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #ca7530;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.flow_txt
{
    width: 47%;
}
.flow_img
{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    flex-wrap: wrap;
}
.flow_design03 dt,.flow_design03 dd
{
    border: none;
    width: 100%;
    padding: 5px 0 0;
}
.flow_design03 dt::after,.flow_design03 dd::after
{
    background-image: none;
}
.kurashi_ttl
{
    font-size: max(3vw , 3rem);
}
.kurashi_txt
{
    width: 47%;
}
.kurashi_img
{
    width: 47%;
}
@media screen and (max-width: 960px) {
    .contentInner .kurashi_txt
{
    width: 100%;
}
.contentInner .kurashi_img
{
    width: 100%;
}
}
.alic
{
    align-items: center;
}
.rev
{
    flex-direction: row-reverse;
}
.contact_tel
{
    font-size: max(2vw , 2rem);
    text-align: center;
    display: block;
    padding: 2vw 0;
}
/*------------------------------------------------------

メールフォーム

-----------------------------------------------------------*/
.box_con {
  max-width: 900px;
  margin: 0  auto;
}
@media only screen and (max-width: 768px) {
  .box_con {
    width: 95%;
  }
}
.box_con form {
  width: 100%;
}
.box_con form table {
  width: 100%;
    font-size: 1.8rem;
    padding: 1rem;
    margin-top: 5rem;
}
.box_con form table tr {
  position: relative;
}
.box_con form table tr:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  border-bottom: dotted #cdcdcd 1px;
}
.box_con form table tr th {
  width: 34%;
  font-weight: normal;
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .box_con form table tr th {
    text-align: center;
    width: 100%;
    display: block;
    background: #f08b99;
    padding: .8em .2em;
    color: #fff;
  }
}
.box_con form table tr th span {
  background: #cd6f55;
  padding: 0 .3em;
  color: #fff;
  margin-left: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.box_con form table tr td {
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .box_con form table tr td {
    padding: 1.5em .5em;
    display: block;
    width: 100%;
  }
}
.box_con form table tr .box_br {
  display: block;
}
.box_con form table tr select {
  border: 1px solid #f08b99;
}
.box_con form table tr label input {
  cursor: pointer;
  display: none;
  vertical-align: middle;
}
.box_con form table tr .radio02-input + label {
  padding-left: 23px;
  margin-right: 20px;
  position: relative;
}
.box_con form table tr .radio02-input + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #999;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box_con form table tr .radio02-input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 3px;
  width: 12px;
  height: 12px;
  background: #f08b99;
  border-radius: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.box_con form table tr select, .box_con form table tr input, .box_con form table tr textarea {
  width: 100%;
  height: 3em;
  padding: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
    background: #EEEEEE;
}
.box_con form table tr textarea {
  height: 10em;
}

/*プライバシーのデザインcss↓*/
.con_pri {
  max-width: 700px;
  margin: 0  auto;
}
@media only screen and (max-width: 768px) {
  .con_pri {
    width: 95%;
  }
}
.con_pri .box_pri {
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #cdcdcd;
  background: #f7f7f7;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: 20px;
  padding: 20px 55px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri {
    margin-top: 4%;
    padding: 3%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .con_pri .box_pri {
    padding: 4%;
  }
}
.con_pri .box_pri .box_tori {
  text-align: left;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori {
    margin-top: 4%;
  }
}
.con_pri .box_pri .box_tori h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori h4 {
    margin-bottom: 4%;
  }
}
.con_pri .box_pri .box_tori .txt {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_tori .txt {
    padding: 0;
  }
}
.con_pri .box_pri .box_num {
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num {
    margin-top: 5%;
  }
}
.con_pri .box_pri .box_num h4 {
    font-size: 2rem;
    font-weight: 600;
}
.con_pri .box_pri .box_num .txt {
  padding: 10px 0 0 20px;

}
@media only screen and (max-width: 768px) {
  .con_pri .box_pri .box_num .txt {
    padding: 3% 0 0 3%;
  }
}
.box_num ul li {
    font-size: 1.8rem;
    line-height: 1.7;
    list-style: square outside none;
    margin: 0 0 0 4rem;
    padding: 0;
}

.box_check {
  text-align: center;
  margin: 1em auto;
}
.box_check label {
  display: inline-block;
}
.box_check label span {
  margin-left: .3em;
    font-size: 1.8rem;
}

.btn {
  text-align: center;
}
.btn input {
  display: inline-block;
  background: #f08b99;
  padding: 2rem 5rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  border: none;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  font-size: 1.8rem;
}
.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
.box_tori .txt
{
    width: 100%;
}
.contact_tel a
{
    color: #333333;
}
.img
{
    max-width: 46%;
}
.txt02
{
    max-width: 46%;
}
@media only screen and (max-width: 959px) {
  .sec01 .img
{
    max-width: 100%;
}
.sec01 .txt02
{
    max-width: 100%;
}
    .sec01 {
  padding: 50px 6vw 50px;
  position: relative;
}
    .contant .row
{
    flex-direction: column!important;
}
}
.logo_area
{
    text-align: center;
    width: 100%;
}
.logo_area img
{
    margin: 0 auto;
}


.recruit-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    line-height: 1.5;
}

.recruit-table th {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #efaaa5;
  /* background-color: #f8f8f8; */
  font-weight: bold;
  width: 20%;
}
.recruit-table th:first-child {
border-top: 1px solid #efaaa5;
}
.recruit-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #efaaa5;
}
.recruit-table td:first-child {
 border-top: 1px solid #efaaa5;
}

.recruit-table tr:first-child td {
 border-top: 1px solid #efaaa5;
}

/* .recruit-table tr:nth-child(even) {
  background-color: #f0f0f0;
}

.recruit-table tr:nth-child(odd) {
  background-color: #fff;
} */

.content_img_recruit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 0 10px;
}

.header_contact_recruit{
margin:20px auto;
min-width: 280px;
width: auto;
flex-shrink: 0;
}

.header_contact_recruit a {
width: 280px;
height: 60px;
border-radius: 35px;
display: flex;
align-items: center;
justify-content: center;
background-color: #00afcc;
font-size: 2.4rem;
position: relative;
padding-left: 4rem;
color: #ffffff;
}

.header_contact_recruit a:hover {
opacity: 1;
}

.header_contact_recruit a::after {
content: '';
width: 100%;
height: 100%;
border-radius: 35px;
background-color: rgba(255, 255, 255, 0);
position: absolute;
transition: background-color 0.3s;
transition: 1s all;
left: 0;
}

.header_contact_recruit a:hover::after {
background-color: rgba(255, 255, 255, 0.5);
}

.header_contact_recruit a::before {
content: "";
background-image: url(../img/mail@2x.png);
height: 24px;
width: 33px;
z-index: 10;
position: absolute;
left: 27px;
top: 50%;
transform: translateY(-50%);
background-size: contain;
background-repeat: no-repeat;
}

.header_contact_recruit a p {
line-height: 1;
}