@charset "UTF-8";

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

:root {
  --pink: #F561B5;
  --green: #8BB50C;
  --b_green: #00829D;
  --gradation: rgba(0, 130, 157, 1) 0%, rgba(93, 219, 176, 1) 100%;
}

body {
  color: #333333;
  /* RGB */
  background-color: #ffffff;
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
}

.en {
  font-family: "rift", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}



.fuchidori {
  color: #ffffff;
  text-shadow: 1px 1px 0 var(--b_green), -1px -1px 0 var(--b_green),
    -1px 1px 0 var(--b_green), 1px -1px 0 var(--b_green),
    0px 1px 0 var(--b_green), 0-1px 0 var(--b_green),
    -1px 0 0 var(--b_green), 1px 0 0 var(--b_green);
}

.fuchidori02 {
  color: #ffffff;
  text-shadow: 1px 1px 0 var(--green), -1px -1px 0 var(--green),
    -1px 1px 0 var(--green), 1px -1px 0 var(--green),
    0px 1px 0 var(--green), 0-1px 0 var(--green),
    -1px 0 0 var(--green), 1px 0 0 var(--green);
}

h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.5;
}

a {
  color: #333333;
}

a:hover {
  opacity: 0.7;
}

.clarity a:hover {
  opacity: 1;
}

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

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

.pc_none {
  display: block;
}

.sp_none {
  display: none;
}

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

.pink {
  color: var(--pink);
}

.green {
  color: var(--green);
}

.b_green {
  color: var(--b_green);
}
.yellow{
  color:#F6F1D1 ;
}
.white {
  color: #ffffff;
}

.black {
  color: #333333;
}

.left {
  text-align: justify;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

.bold {
  font-weight: 600;
}

.ft_150 {
  font-size: clamp(4.0rem, 14vw, 15rem)
}

.ft_120 {
  font-size: clamp(4.0rem, 13vw, 12rem)
}

.ft_100 {
  font-size: clamp(4.0rem, 12vw, 10rem)
}

.ft_80 {
  font-size: clamp(3.6rem, 10vw, 8rem)
}

.ft_70 {
  font-size: clamp(3.6rem, 10vw, 7rem)
}

.ft_50 {
  font-size: clamp(1.8rem, 5vw, 5rem)
}

.ft_45 {
  font-size: clamp(2.2rem, 5vw, 4.5rem)
}

.ft_40 {
  font-size: clamp(2.0rem, 5vw, 4.0rem)
}

.ft_36 {
  font-size: clamp(1.8rem, 4.4vw, 3.6rem)
}

.ft_32 {
  font-size: clamp(1.6rem, 4vw, 3.2rem)
}

.ft_28 {
  font-size: clamp(2.0rem, 5.5vw, 3.2rem)
}

.ft_24 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem)
}

.ft_20 {
  font-size: clamp(1.6rem, 3.4vw, 2.0rem)
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.anchor {
  margin-top: -80px;
  padding-top: 80px;
}

.flex.row {
  flex-direction: row;
  align-items: center;
}

.fadeInUpTrigger,
.fadeInRightTrigger {
  opacity: 0;
}

/* header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  height: 55px;
  background-color: #ffffff;
  padding: 4px 0 4px 3vw;
}

.header_inner {
  height: 100%;
}

.logo_wrap {
  width: calc(100% - 80px);
  max-width: 427px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  max-width: 250px;
}

.sub_logo {
  background-color: var(--b_green);
  padding: 2% 5%;
  color: #ffffff;
  font-weight: 500;
  font-size: clamp(1.0rem, 3vw, 1.6rem);
  text-wrap: nowrap;
}

header .btnWrap {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: calc(100% - 60px);
  display: flex;
  transition: all 1s
}

header .btnWrap.active {
  bottom: 0;
  transition: all 1s
}


/* pc header*/
@media screen and (min-width: 960px) {
  body {
    font-size: 18px;

    line-height: 2;
  }

  .sp_none {
    display: block;
  }

  .pc_none {
    display: none;
  }

  .flex {
    display: flex;
    flex-direction: row;
    gap: 5%;
  }

  .flex.reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 5%;
  }

  header {
    height: 120px;
  }

  .header_inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    padding: 4px 130px 4px 0;
  }

  header .logo_wrap {
    max-width: 680px;
  }

  header .logo {
    max-width: 500px;
  }

  .logo_wrap {
    width: 100%;
  }

  .sub_logo {
    font-size: 2.0rem;
  }


}

/* pc header*/
@media screen and (min-width: 1400px) {

  header .btnWrap {
    position: static;
    gap: 10px;
    justify-content: flex-end;
    max-width: 620px;
  }
}



/* ham_btn */
.ham_btn {
  position: fixed;
  cursor: pointer;
  width: 55px;
  height: 55px;
  z-index: 999;
  margin: 0;
  top: 0;
  right: 0;
  background: var(--green);
}

.ham_btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  background: #ffffff;
  width: 27px;
  top: 28px;
}

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

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

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

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

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

.ham_btn span:nth-of-type(3)::after {
  content: "Menu";
  position: absolute;
  top: 5px;
  left: -5px;
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.ham_btn.active span:nth-of-type(3)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 6px;
  left: 8px;
}

/* pc ham*/
@media screen and (min-width: 960px) {
  .ham_btn {

    width: 120px;
    height: 120px;

  }

  .ham_btn span {

    left: 20px;
    height: 2px;

    width: 80px;
    top: 44px;
  }

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

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

  .ham_btn.active span:nth-of-type(1) {
    top: 43px;
    left: 23px;

    width: 74px;
  }

  .ham_btn.active span:nth-of-type(3) {
    top: 55px;
    left: 28px;

    width: 74px;
  }

  .ham_btn span:nth-of-type(3)::after {

    top: 27px;
    left: 4px;

    font-size: 2.2rem;

  }

  .ham_btn.active span:nth-of-type(3)::after {

    top: 17px;
    left: 37px;
  }
}

/* ham_nav */
.nav_wrap {
  position: fixed;
  z-index: 200;
  top: 0;
  right: -120%;
  width: 80%;
  height: 100%;
  transition: all 0.6s;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--b_green);
  opacity: 0.9;
  overflow-y: auto;
  padding: 60px 20px;
}

.nav_wrap ul {
  width: 100%;
  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;

  border-bottom: 1px solid #ffffff;
}

.nav_wrap li a {
  color: #ffffff;
  text-decoration: none;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.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 #333333;
}

.nav_wrap nav summary {
  color: #333333;
  padding: 10px
}

.nav_wrap nav summary::marker {
  color: #333333;
}

/* pc nav*/
@media screen and (min-width: 960px) {

  .nav_wrap li {

    font-size: 2.0rem;
    padding: 20px;

  }

}

/* MV */
.MV {
  position: relative;
  max-height: 100vh;
  margin-top: 55px;
}

.MV_text-wrap {
  position: absolute;
  left: 50%;
  bottom: 55%;
  transform: translate(-50%, 50%);
}

.MV_text-wrap h2 {
  word-break: keep-all;
  font-size: clamp(2.4rem, 7.4vw, 7.0rem);
  line-height: 1.8;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.MV_text-wrap h2 span {
  text-shadow: none;
  font-size: clamp(1.6rem, 5vw, 5.0rem);
  position: relative;
  line-height: 1;
}

.MV_text-wrap h2 span::before,
.MV_text-wrap h2 span::after {
  content: "";
  width: min(10vw, 75px);
  aspect-ratio: 75/5;
  background-color: var(--b_green);
  position: absolute;
  top: 50%;
  right: 105%;
  transform: translateY(-50%);
}

.MV_text-wrap h2 span::after {
  right: auto;
  left: 105%;
}

.MV_text-wrap .deco {
  position: absolute;
  width: min(60vw, 425px);
  top: -20%;
  left: -10%;
}

/* pc MV*/
@media screen and (min-width: 960px) {
  .MV_text-wrap {
    bottom: 10%;
    left: auto;
    right: 5%;
    transform: none;

  }

  .MV_text-wrap h2 {

    word-break: normal;

  }


}

/* 共通 */
section {
  position: relative;
}

section .deco {
  position: absolute;
  max-width: 989px;
}

.inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section_ttlWrap {
  position: relative;
  padding: 40px 0;
  z-index: 2;
}

.section_ttl {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.section_ttlWrap .deco {
  position: absolute;
  top: 00px;
  left: -5%;
  width: 70%;
  z-index: -1;
}

.bg {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* pc MV*/
@media screen and (min-width: 960px) {
  .inner_1200 {
    max-width: 1200px;
  }
  .inner_1280 {
    max-width: 1280px;
  }

  .inner_1100 {
    max-width: 1100px;
  }

  .inner_1500 {
    max-width: 1500px;
  }

  .inner_1650 {
    max-width: 1650px;
  }

  .inner_850 {
    max-width: 850px;
  }

  .anchor {
    /* margin-top: -150px;
    padding-top: 150px; */
  }




}

#concept .section_ttl {
  padding-bottom: 20px;
  position: relative;
  z-index: 2;
}

#concept .content {
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}

#concept .content_img {
  width: 100%;
  height: min(80vw, 400px);
  background-image: url(../img/concept_img.png);
  background-size: cover;
  background-position: 90% top;
}

#concept h3 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 90%;
  margin: -8vw auto 0;
}

#concept h3>div {
  text-align: left;
  padding: 2% 3%;
  background-color: #FBFFEE;
  margin-right: auto;
}

#concept h3 .text02 {
  margin-left: 5vw;
}

#concept h3 .text03 {
  margin-left: 10vw;
}

#concept h4 {
  padding-bottom: 20px;
  position: relative;
}

#concept h4 .deco {
  top: 0;
  right: 0;
  opacity: 0.6;
  max-width: 230px;
  z-index: -1;
}

#concept p {
  width: 90%;
  margin: 0 auto;
}

/* pc concept */
@media screen and (min-width: 960px) {
  #concept h2 {
    text-align: right;
    width: 90%;
    max-width: 1800px;
    margin: 40px auto;

  }


  #concept .content {
    position: relative;
    margin-bottom: 80px;
  }

  #concept .content_img {

    width: 98%;
    max-width: 1800px;
    margin: 0 auto;
    height: min(80vw, 700px);
  }

  #concept .content_textWrap {
    position: absolute;
    top: -10%;
    width: 80%;
    max-width: 800px;
    margin-left: 5%;
  }

  #concept h3 {
    margin-top: 0;
  }

  #concept h4 .deco {
    width: 100%;
    top: 40px;
    right: auto;
    transform: translateX(-50%);
    left: 100%;
    z-index: 2;
    opacity: 1;
  }

  #concept .content_textWrap p {
    font-size: 1.8rem;
  }

}







#charm .bg_01 {
  position: relative;
  background-color: #FFFBE5;
}

#charm .bg_01 .deco01 {
  top: 0;
  right: 0;
}

#charm .bg_01 .deco02 {
  bottom: 0;
  left: 0;
}

#charm .bg_01 .section_ttlWrap .deco {
  max-width: 420px;
}



.charm_content {
  position: relative;
  z-index: 2;
  padding: min(15vw, 200px) 0;
  gap: min(15vw, 80px);
}

.charm_content-img {
  position: relative;
}

.icon {
  width: 37%;
  max-width: 300px;
  aspect-ratio: 1/1;
  background-image: url(../img/icon_bg.png);
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  position: absolute;
  top: min(-15vw, 150px);
  left: 10vw;
}

.charm_content-textWrap {
  width: 90%;
  margin: 0 auto;
  background-color: #ffffff;
  position: relative;
  padding: 10vw 5% 5%;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
}


.charm_content-textWrap .no {
  width: min(20vw, 140px);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.charm_content-textWrap h3 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--b_green);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
}

.charm_content-textWrap p {
  text-align: justify;
}

#charm .bg_02 {
  position: relative;
  background-color: #EFFFF2;
  padding: 40px 0;
}

#charm .bg_02 .deco02 {
  bottom: 0;
  left: 0;
}

.icon.icon_right {
  left: auto;
  right: 10vw;
}

#charm .bg_02 .charm_content {
  position: relative;
}

#charm .bg_02 .charm_content .deco {
  transform: scaleX(-1);
  bottom: 0;
  left: auto;
  right: 0;
  z-index: -1;
}

#charm .bg_03 {
  padding: 120px 0 80px;
  background-image: url(../img/charm_img04.png);
  background-size: cover;
  background-position: 95% 20%;
}

#charm .bg_03 .icon {
  left: -5vw;
  top: min(-20vw, 180px);
  font-size: clamp(1.6rem, 2.2vw, 3.2rem);
}

#charm .bg_04 {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #8CCAEF88 calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #8CCAEF88 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  padding-bottom: 80px;
}

#charm .bg_04 .section_ttlWrap p {
  padding: 20px 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.interview_itemWrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.interview_item {
  gap: 20px;
}

.interview_text {
  background-color: #ffffff;
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 3% 5%;
  border: solid 1px var(--b_green);
  text-align: justify;
}

.interview_text:before {
  content: "";
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  border: 24px solid transparent;
  border-bottom: 24px solid #FFF;
  z-index: 2;
}

.interview_text:after {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  border: 23px solid transparent;
  border-bottom: 23px solid var(--b_green);
  z-index: 1;
}

.message {
  background: linear-gradient(45deg, var(--gradation));
  padding: 20px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.message .section_ttl {
  color: #F6F1D1;
}

.message p {
  color: #ffffff;
  text-align: justify;
}

#charm .bg_05 {
  padding: 40px 0;
  background-color: #E3F9F5;
}

#charm .bg_05 .deco {
  bottom: 0;
  right: 0;
}

#charm .bg_05 .icon.icon_right {
  right: 5vw;
}

/* pc charm */
@media screen and (min-width: 960px) {
  #charm .section_ttlWrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto 0;
    position: relative;
  }

  #charm .section_ttl {

    flex-direction: row;
    align-items: center;
  }

  #charm .section_ttlWrap .deco {
    left: auto;
    right: 100%;
  }

  .charm_content {
    gap: 20px;
    position: relative;
    padding: 10vw 0 80px 0;
  }

  .charm_content-img {
    width: 50%;
    margin-top: 5%;
  }

  .charm_content-textWrap {
    width: 40%;
    position: absolute;
    right: 8%;
    padding: 80px 40px;
    line-height: 2;
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.3);
  }

  .charm_content.reverse .charm_content-textWrap {
    width: 40%;

    right: auto;
    left: 8%;
  }


  .charm_content-textWrap h3 {
    line-height: 2;
    font-size: clamp(1.6rem, 2.2vw, 3.2rem);
  }

  .charm_content-textWrap p {
    font-size: 1.8rem;
    line-height: 2;
  }

  #charm .bg_02 {
    padding-bottom: calc(200px- 5vw);
  }

  #charm .bg_02 .charm_content .deco {

    bottom: 80px;

  }

  #charm .icon {
   
    top: auto;
    bottom: calc(100% - 150px);
    left: 40px;
  }

  #charm .icon.icon_right {

    left: auto;
    right: 40px;
  }

  #charm .icon.icon_right-bottom {

    left: auto;
    right: 40px;
    bottom: auto;
    top: calc(100% - 230px);
  }

  #charm .bg_03 {
    padding: 180px 0;
  }

  #charm .bg_03 .charm_content-textWrap {
    position: static;
    width: 100%;
  }

  #charm .bg_03 .charm_content-textWrap .icon {
    width: 300px;
    height: 300px;
    top: auto;
    bottom: calc(100% - 150px);

  }

  #charm .bg_03 .charm_content-textWrap .icon p {
    font-size: 3.2rem;
    width: 100%;

  }

  #charm .bg_03 .charm_content-textWrap p {
    width: 80%;
    margin: 0 auto;
    text-align: center;
  }

  #charm .bg_04 .section_ttlWrap .deco {
    max-width: 300px;
    top: -20px;
    right: 90%;
  }

  .interview_item {
    gap: 5vw;
  }

  .interview_icon {
    width: 30%;
  }

  .interview_text {
    width: 70%;
    display: flex;
    align-items: center;
  }

  .interview_text:before {

    top: 50%;
    left: auto;
    right:  calc(100% - 2px);
    transform: translateY(-50%) rotate(-90deg);

  }

  .interview_text:after {
    top: 50%;
    left: auto;
    right: 100%;
    transform: translateY(-50%) rotate(-90deg);
  }

  .interview_item:nth-of-type(even) .interview_text:before {

    right: auto;
    left: calc(100% - 2px);
    transform: translateY(-50%) rotate(90deg);

  }

  .interview_item:nth-of-type(even) .interview_text:after {

    right: auto;
    left: 100%;
    transform: translateY(-50%) rotate(90deg);
  }

  .message{
    padding:60px 0  80px;
  }
  .message .inner {
    display: flex;
    flex-direction: column;
    align-items: center;

  }

  .message .inner p {
    text-align: center;
    font-size: 2.0rem;

  }









































}

.CVT {
  background-color: #179251;
  padding: 40px 0;
}

.CVT .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.CVT .flex {
  gap: 10px;
}

.CVT h2 {
  font-size: clamp(5.0rem, 10vw, 9.0rem);
  color: #F6F1D1;
  font-family: "rift", sans-serif;
  font-weight: 600;
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

.CVT .flex p {
  background-color: #F6F1D1;
  padding: 2% 5%;
  border-radius: 20px;
  word-break: keep-all;
  font-weight: 600;
}

.CVT .gradation {
  padding: 2% 5%;
  background: linear-gradient(45deg, var(--gradation));
  color: #ffffff;
  font-weight: 600;
}

.cvt_btnWrap {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cvt_btn {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}

.cvt_btn a:hover {
  opacity: 1;
}

/* pc cvt */
@media screen and (min-width: 960px) {
  .CVT {
    padding: 60px 0;
  }

  .CVT .inner {
    gap: 40px;
  }

  .CVT .flex {

    width: 100%;
    align-items: center;
    justify-content: space-between;
  }

  .CVT .flex p {
    height: 80px;
    line-height: 1;
    border-radius: 40px;
  }

  .CVT p.gradation {
    width: 100%;
  }

  .cvt_btnWrap {
    width: 100%;

    flex-direction: row;
    gap: 40px;
  }










































}

#pickUp {
  padding-bottom: 40px;
}

#pickUp .section_ttlWrap .deco {
  top: auto;
  bottom: 0;
}

#pickUp .inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

#pickUp .content {
  background-color: #E3F9F5;
  padding: 10vw 0;
  position: relative;
}

#pickUp .content::after {
  content: "";
  width: min(50%, 355px);
  aspect-ratio: 355 / 301;
  background-image: url(../img/pickup_deco01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 100%;
  right: 2%;
  transform: translateY(60%);
  z-index: 1;
}

#pickUp h3 {
  display: flex;
  flex-direction: column;
  margin: 0 auto 0 0;
}

#pickUp .content .inner {
  gap: 60px;
}

#pickUp .content_itemWrap {
  gap: min(10vw, 70px);
}

#pickUp .content_item {
  background-color: #ffffff;
  border: 1px solid #333333;
  padding: 7% 5%;
  position: relative;
}

#pickUp .content_item .no {
  background-color: #F9D459;
  width: min(14vw, 10rem);
  aspect-ratio: 1 / 1;
  color: #ffffff;
  font-size: min(8vw, 4.0rem);
  display: inline-block;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 100%;
  left: 5%;
  transform: translateY(50%);
}

#pickUp h4 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--b_green);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

#pickUp .content_item p {
  text-align: justify;
}

#pickUp .content-yellow {
  background-color: #FEFBEC;
}

#pickUp .content-yellow:after {
  aspect-ratio: 337 / 300;
  background-image: url(../img/pickup_deco02.png);
  right: auto;
  left: 5%;
}

#pickUp .content-yellow h3 {
  margin: 0 0 0 auto;
}
/* pc pickUp */
@media screen and (min-width: 960px) {
  #pickUp .inner{
    gap: 120px;
  }


  #pickUp .section_ttlWrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    margin: 40px auto 0;
    position: relative;
  }

  #pickUp .section_ttl {

    flex-direction: row;
    align-items: center;
  }

  #pickUp .section_ttlWrap .deco {
    max-width: 430px;
    left: auto;
    right: 83%;
 bottom: -5%;

  }
  #pickUp .content {
    
    padding: 80px 0;
width: 100%;
margin-bottom: 60px;
  
}
  #pickUp .content .inner {
    
gap: 100px;

}


#pickUp h3 {

    margin: 0 auto ;
}

#pickUp .content_itemWrap {
    gap: 5%;
    justify-content: space-between
}
#pickUp .content_item {
    width:30% ;
    padding: 60px 20px 80px;
}
#pickUp .content-yellow h3 {
    margin: 0 auto;
}
#pickUp .content-yellow .content_item {
 padding-bottom: 20px;
}
}



























#support .bg_01 {
  background: linear-gradient(90deg, var(--gradation));
  position: relative;
}

#support .deco01 {
  top: 0;
  left: 0;
}

#support .deco02 {
  bottom: 0;
  right: 0;
}

#support .section_ttlWrap .ft_45 {
  font-size: clamp(3.2rem, 7vw, 4.5rem);
}

#support .section_ttlWrap h2 {
  display: inline;
  line-height: 1.2;
  padding-bottom: 20px;
}

#support .section_ttlWrap p {
  padding-top: 20px;
}

#support p.ft_28 {
  color: #ffffff;
  font-size: clamp(1.8rem, 5.3vw, 2.8rem)
}

#support .content_itemWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  padding: 40px 0;
}

#support .content_item {
  width: calc((100% - 20px)/ 2);
  aspect-ratio: 1 / 1;
  background-image: url(../img/support_bg01.png);
  background-size: contain;
  position: relative;
}

#support .content_item:nth-of-type(even) {
  background-image: url(../img/support_bg02.png);
}

#support .content_item a {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
  font-size: clamp(1.8rem, 4vw, 2.8rem)
}

#support .content_item .arrow {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: min(5vw, 45px);
}

#support .bg_02 {

  margin-top: 40px;
  padding-bottom: 80px;
}

#support .bg_02 .inner {
  padding-top: 80px;
}


#support .content {
  background-color: #ffffff;
  position: relative;
  padding: 7% 5%;
  border: 1px solid #333333;
  margin-bottom: 120px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
}



#support .content::after {
  content: "";
  width: 0;
  height: 0;
  border-top: min(40vw, 226px) solid transparent;
  border-bottom: 0vw solid #E3F9F5;
  border-left: min(60vw, 435px) solid #E3F9F5;
  opacity: 0.7;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

#support .content h3 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--b_green);
  font-size: clamp(2.0rem, 5.4vw, 3.6rem);
  position: relative;
  z-index: 2;
}

#support .content h3 span {
  display: block;
  font-size: clamp(1.8rem, 4.6vw, 2.5rem);
}

#support .content h3::before {
  content: "";
  width: min(15vw, 113px);
  aspect-ratio: 113 / 100;
  background-image: url(../img/support_deco02.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  top: -5%;
  left: 0;
  z-index: -1;
}

#support .content p {
  text-align: justify;
  position: relative;
  z-index: 2;
}

#support .content.content_type01 h3::before {
  width: min(18vw, 107px);
  aspect-ratio: 107 / 106;
  background-image: url(../img/support_deco01.png);
  top: -2%;
  left: auto;
  right: 0%;
  z-index: -1;
}

#support .content.content_type01::after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: min(40vw, 226px) solid transparent;
  border-top: 0vw solid #FEFBEC;
  border-left: none;
  border-right: min(60vw, 435px) solid #FEFBEC;
  opacity: 0.7;
  position: absolute;
  bottom: auto;
  top: 0;
  left: auto;
  right: 0;
}

#support .content:last-of-type {
  margin-bottom: 0;
}
/* pc pickUp */
@media screen and (min-width: 960px) {
  #support .bg_01{
    padding: 80px 0;
  } 

  #support .content_itemWrap{
    padding: 60px 0;
  }
#support .content_item {
    width: calc((100% - 60px) / 4);

}
#support .content_item:nth-last-of-type(odd) {
margin-bottom: 60px;
}
#support .content_item:nth-last-of-type(even) {
margin-top: 60px;
}
#support .bg_02{
  padding-bottom: 0;
}
#support .bg_02 .inner{
  display: flex;
  flex-wrap: wrap;
  gap: 40px 40px;
}
#support .bg_02 .content{
width: calc((100% - 40px )/2);
padding:90px 40px 60px ;
margin-bottom: 150px;
}
}











#recruitment .bg {
  padding-bottom: 40px;
}

#recruitment .bg p {
  word-break: keep-all;
}

#recruitment .bg_02 {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #8CCAEF88 calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #8CCAEF88 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  padding: 80px 0 40px;
}

#recruitment .content_itemWrap {
  gap: min(10vw, 70px);
}

#recruitment .content_item {
  background-color: #ffffff;
  border: 1px solid #333333;
  padding: 7% 5%;
  position: relative;
}

#recruitment .content_item .no {
  background-color: #F9D459;
  width: min(14vw, 10rem);
  aspect-ratio: 1 / 1;
  color: #ffffff;
  font-size: min(8vw, 4.0rem);
  display: inline-block;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 50%);
}
/* pc recruitment */
@media screen and (min-width: 960px) {
  #recruitment .bg_02{
    padding-bottom: 80px;
  }
#recruitment .content_itemWrap {
  gap: 40px;
}
#recruitment .content_item {
width: calc((100% - 80px) / 3);
padding:60px 20px 20px ;
}


}

#flow{
  background: linear-gradient(to bottom, transparent 78%, #E3F9F5 22%);
}


#flow .inner {
  padding-bottom: 80px;
}
#flow .deco{
  right: 0;
  max-width: 1200px;
}

.flow_ttl {
  font-size: min(20vw, 100px);
  text-align: center;
  letter-spacing: 0.2em;
}

.flow_index {
  display: flex;
  gap: 2vw 5vw;
  flex-wrap: wrap;
  padding-bottom: 20px;
}

.flow_index li {
  width: 35%;
}

.flow_index li:nth-child(3) {
  margin-left: 20vw;
}

#flow_slider {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

#flow_slider li {
  width: 80vw;
}

#flow_slider li img {
  width: 100%;
}

#flow_slider li .caption {
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border: 1px solid var(--b_green);
  text-align: justify;
  padding: 2% 5%;
  gap: 10px;
}

#flow_slider li .caption dt {
  font-size: min(4vw, 2.0rem);
  font-weight: 400;
}

#flow_slider li .caption dd {
  font-size: min(3vw, 1.6rem);
}

#flow_slider .slick-next,
#flow_slider .slick-prev {
  content: "";
  display: block;
  width: min(5vw, 50px);
  height: auto;
  aspect-ratio: 65 / 113;
  background: url(../img/slide_arrow.png) no-repeat center / contain;
  position: absolute;
  top: 22vw;
  left: -9%;
  z-index: 5;
  border: none;
  transform: rotate(0);
  ;
}

#flow_slider .slick-next::before,
#flow_slider .slick-prev::before {
  display: none;
}

#flow_slider .slick-next {
  left: auto;
  right: -9%;
  transform: scaleX(-1);
}

#flow_slider .no {
  width: min(12vw, 75px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--gradation));
  color: #ffffff;
}
/* pc recruitment */
@media screen and (min-width: 960px) {
#flow .section_ttl{
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

  .flow_index{
    flex-wrap: nowrap;
    gap: 40px;
    padding: 60px 0 120px;
  }
  .flow_index li{
width: calc((100% - 120px)/ 4);


  }
  .flow_index li:nth-child(3) {
    margin: 0;
  }

.flow_slider {
  max-width: 900px;
}

.flow_slider .slide{
  max-width: 900px;
}

#flow_slider li {
  width: 80vw;
  max-width: 900px;
  position: relative;
}

#flow_slider .slick-next,
#flow_slider .slick-prev {

top: 50%;
  transform: translateY(-50%);
}
#flow_slider .slick-next {


  transform:  scaleX(-1) translateY(-50%);
}
#flow_slider li .caption {
  max-width: 560px;
  position: absolute;

  padding: 20px;
  border-left: none;

}




}

#training .bg {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #8CCAEF88 calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #8CCAEF88 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
}

#training .inner {
  padding: 0 0 40px;
}

#training .content {
  background-color: #E3F9F5;
  margin-bottom: 40px;
  padding: 40px 0;
}

#training .content .inner {
  gap: 60px;
}

#training .content .inner h3 {
  display: flex;
  flex-direction: column;
}

#training .content_itemWrap {
  gap: 20px;
}

#training .content_item {
  background-color: #ffffff;
  border: 1px solid #333333;
  padding: 7% 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#training .content_item .no {
  background: linear-gradient(-45deg, rgba(83, 222, 88, 1), rgba(81, 238, 209, 1));
  width: min(22vw, 180px);
  aspect-ratio: 1 / 1;
  color: #ffffff;
  font-size: min(4.0vw, 4.0rem);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: bottom;
  text-wrap: nowrap
}

#training .content_item .no span.ft_50 {
  font-size: min(6vw, 5.0rem);
  padding-bottom: 5%;
}

#training .content_item p {
  text-align: justify;
}

#training .content-yellow {
  background-color: #FEFBEC;
}

#training .content-yellow .content_item .no {
  background: linear-gradient(150deg, rgba(238, 222, 81, 1), rgba(222, 176, 83, 1));
}
/* pc training  */
@media screen and (min-width: 960px) {
  #training  .section_ttlWrap{
  padding: 80px 0;
  }
  #training  .section_ttl{
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }
  #training .content{
  padding: 80px 5%;
  }
  #training .content .inner{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 80px;
  }
  #training .content_itemWrap{
    gap: 40px;
  }

  #training .content_item{
 padding: 20px;
 width: calc((100% - 120px) / 4);
 gap: 20px;
margin-bottom: auto;
  }












}









#greeting .bg {
  background-color: #E3F9F5;
  z-index: -2;
}

#greeting .deco {
  left: auto;
  right: 0;
}

.name_img-area {
  width: 100%;
  height: min(60vw, 600px);
  flex-direction: row;
  gap: 0;
  position: relative;
}

.name_img-deco {
  width: 10%;
  height: 100%;
  background-image: url(../img/name_deco.png);
  background-size: cover;
}

.name_img {
  width: 90%;
  height: 100%;
  background-image: url(../img/doctor.png);
  background-size: cover;
  background-position: 70% top;
}

.name_tag {
  position: absolute;
  background-color: rgba(0, 130, 157, 0.8);
  padding: 5% 5%;
  color: #ffffff;
  bottom: 15%;
  right: 0;
}

.name_tag span.name_bg {
  background-color: var(--b_green);
  padding: 4px 8px;
  margin-right: 8px;
}

.name_tag span.ft_36 {
  margin-right: 8px;
}

.name_textWrap {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 7% 5%;
  border: 1px solid #333333;
  margin-bottom: 120px;
  width: 90%;
  max-width: 800px;
  margin: -80px auto 0;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.3);
}

.name_textWrap h3 {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--b_green);
  font-size: clamp(2.0rem, 5.4vw, 3.6rem);
  position: relative;
  z-index: 2;
}

.name_textWrap::after {
  content: "";
  width: 0;
  height: 0;
  border-bottom: min(40vw, 226px) solid transparent;
  border-top: 0vw solid #FEFBEC;
  border-left: none;
  border-right: min(60vw, 435px) solid #FEFBEC;
  opacity: 0.7;
  position: absolute;
  bottom: auto;
  top: 0;
  left: auto;
  right: 0;
}

.name_textWrap p {
  text-align: justify;
}

.greeting_body {
  padding: 40px 0;
}

.greeting_body .content_textWrap {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.greeting_body .content_textWrap p.ft_36 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  font-weight: 600
}

.greeting_body .content_textWrap p {
  text-align: justify;
}
/* pc greeting  */
@media screen and (min-width: 960px) {
  #greeting  .section_ttlWrap{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin: 80px auto;
  }

  #greeting .section_ttl{
    flex-direction: row;
    align-items: center;
    gap: 2px;
  }
  #greeting .section_ttlWrap .deco{
 width: 100%;
 max-width: 450px;
 right: 0;
 left: 100%;
 top: 80px;
  }
.name_ttl{

position: relative;
}


.name_img-area{
  position: absolute;
  width: 100%;
  top: 0;
  aspect-ratio: 1920 / 600;
}
.name_img-deco{
  width: 22%;
}
.name_img{
  width: 78%;
  position: relative;
}

#greeting .name_img:after{
  content: "";
  width: 0;
  height: 0;
  border-top: 10vw solid #00829D;
  border-bottom: 10vw solid transparent;
  border-left: 20vw solid transparent;
  border-right: 20vw solid #00829D;
  opacity: 0.5;
  position: absolute;
  top: 100%;
  right:0 ;
  z-index: 1;
     
  }

.name_textWrap {
    padding: 40px 20px;
   
    margin-bottom: 120px;
   
    margin: 10vw auto 0 8vw;
   
}
.name_tag{
  padding: 20px 40px;
  right: 10%  ;
}
.name_tag span.name_bg {
padding: 8px 16px;
  margin-right: 14px;
}


.name_tag span.ft_36 {
  margin-right: 14px;
}

.greeting_body .inner{
  max-width: 1440px;
  margin: 80px auto;

}
.greeting_body .content_img{
  width: 45%;
}
.greeting_body .content_textWrap{
  width: 50%;
  align-items: flex-start;
}






}
#person h2 {
  font-size: clamp(3.6rem, 11vw, 12rem);
  text-wrap: nowrap;
}

#person .interview_itemWrap {
  background-color: #ECEFF1;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.interview_itemWrap .inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
/* pc person  */
@media screen and (min-width: 960px) {
  #person .section_ttlWrap{
    padding: 80px 0;
  }
#person .interview_itemWrap {
    padding: 80px 0;
}






}
#position .bg {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #8CCAEF88 calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #8CCAEF88 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  padding-top: 20vw;
  margin-top: 20vw;
}

#position ul {
  display: flex;
  gap: 20px;
  padding-bottom: 40px;
}

#position ul li {
  width: calc((100% - 20px)/2);
  border: 1px solid var(--b_green);
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 20px 0;
  z-index: 10;
}

#position ul li h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(2.0rem, 5vw, 4.0rem);
}

#position ul li img {
  width: min(5vw, 45px);
  transform: rotate(-90deg);
  position: absolute;
  bottom: 5%;
  right: 5%;
}

#position ul li::before {
  content: "";
  width: 80%;
  aspect-ratio: 250 / 270;
  background-image: url(../img/position_deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: calc(100% + 2px);
  z-index: 1;
}



#hygienist .name_img {
  background-image: url(../img/hygienist_bg.png);
  background-position: 15% top;
}

#hygienist .name_tag {
  background-color: #ffffff;
  border: 1px solid var(--b_green);
  color: #333333;
}

.skd {
  margin-top: 140px;
  background-color: #FEFBEC;
  position: relative;
  padding-top: 40px;
}

.skd::after {
  content: "";
  width: 50px;
  aspect-ratio: 1 / 1;
  background-image: url(../img/clock.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.skd::before {
  content: "";
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #FEFBEC;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 1;
}

.skd h3 {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.skd ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  padding-bottom: 40px;
}

.skd ol li {
  width: calc((100% - 20px)/2);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 7vw;
  position: relative;
}

.skd ol li::after {
  content: "";
  width: min(5vw, 45px);
  aspect-ratio: 1 / 1;
  background-image: url(../img/arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center bottom;
  transform: translateY(-50%) rotate(-90deg);
  position: absolute;
  top: 50%;
  right: 0;
}

.skd ol li:last-child:after {
  content: "";
  display: none;
}

.skd ol li .no {
  color: #ffffff;
  font-size: clamp(2.0rem, 4vw, 4.0rem);
  width: min(12vw, 100px);
  border-radius: 50%;
  background: linear-gradient(-180deg, var(--gradation));
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(50%);
}

.skd ol li p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.desc {
  padding-top: 40px;
}

.desc h3 {
  line-height: 1.2;
}

.desc table {
  margin: 40px 0;
  border: 1px solid var(--green);
  border-bottom: none;
  width: 100%;
}

.desc table tr {
  display: flex;
  flex-wrap: wrap;
}

.desc table th {
  width: 100%;
  padding: 20px;
  background-color: var(--green);
  color: #ffffff;
  border-bottom: 1px solid var(--green);
}

.desc table td {
  width: 100%;
  padding: 20px;
  text-align: justify;
  border-bottom: 1px solid var(--green);
}

#assistant .name_img {
  background-image: url(../img/assistant_bg.png);
  background-position: 80% top;
}

#assistant .name_tag {
  background-color: #ffffff;
  border: 1px solid var(--b_green);
  right: auto;
  left: 0;
  color: #333333;
}

#assistant .skd {
  background-color: #E3F9F5;
}

#assistant .skd::before {
  background-color: #E3F9F5;
}
/* pc position  */
@media screen and (min-width: 960px) {
  #position .section_ttl{
 flex-direction: row;
 align-items: center;
max-width: 1200px;

margin: 0 auto;
  }

 #position .bg {
     margin-top:0;
     padding-top: 12vw;
 } 


 #position ul{
  gap: 40px;
  padding-bottom: 120px;
 }
 #position ul li{
 width: calc((100% - 80px) /3);
 }

 #hygienist .name_img-area {
  position: relative;
}
#assistant  .name_img-area {
  position: relative;
}
.skd{
  margin-top: 200px;
  padding: 60px 0 80px;
}

.skd ol{
  gap:40px 7vw;
  
}
.skd ol li{
width:25% ;
padding-right: 0;
}
.skd ol li::after {
    right: -4.2vw;
    transform:rotate(-90deg) translateX(50%);

}

.desc{
  padding: 80px 0;

}

.desc .content_ttl{
display: flex;
flex-direction: column;
margin-bottom: 80px;

}
.desc table th {
  width: 30%;
}
.desc table td {
  width: 70%;
}
#assistant{
  margin-top: 120px;
}


#assistant .name_tag{
  left: 10%;
}











}
#clinic .bg_01 {
  padding-bottom: 40px;
  background: linear-gradient(to bottom, transparent 70%, #FEFBEC 30%);
}

#clinic .bg_01 .inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

#clinic .logo {
  width: 90%;
  max-width: 500px;
}

#clinic .official_site {
  width: 80%;
  max-width: 400px;
}

#clinic .bg_02 {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #8CCAEF88 calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #8CCAEF88 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;
  padding-top: 40px;
}

#clinic .bg_02 .inner>.flex {
  gap: 40px;
  padding-bottom: 40px;
}

.clinic_info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.clinic_info .btn {
  width: 80%;
  max-width: 350px;
}

.clinic_info .btn a:hover {
  opacity: 1;
}

.clinic_info p {
  text-align: left;
}

.time-table {
  width: 100%;
  background: linear-gradient(-180deg, var(--gradation));
  padding: 10px;
  font-weight: 500;
}

.biz-hour {
  width: 100%;
  color: #ffffff;
}

.biz-hour .U_line {
  border-bottom: 1px solid #ffffff;
}

.access {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.access_info {
  width: 100%;
  max-width: 550px;
  background-color: #E3F9F5;
  padding: 10px 20px;
  gap: 20px;
  text-align: left;
}

.access_info .star {
  width: 20%;
  max-width: 75px;
}

.access_info p {
  width: 70%;
}

.biz-hour th:first-of-type {
  width: min(30vw, 186px);
  font-size: min(3.2vw, 2.0rem);
}

.biz-txt {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 20px;
}
/* pc clinic  */
@media screen and (min-width: 960px) {
#clinic .bg_01{
  padding-bottom: 80px;
}
#clinic .bg_02{
  padding: 80px 0;
}

.time-tableWrap p{
  font-size: 1.4rem;
}


}
#form {
  padding-bottom: 80px;
}

#form .form_outer {
  background-color: #ECEFF1;
  padding: 40px 20px;
}

form {
  font-size: 2.0rem;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  font-weight: 700;
}

.must {
  color: #ffffff;
  background-color: var(--green);
  margin-left: 20px;
  font-size: 1.6rem;
  padding: 1% 2%;
}

.form_item--input.radio {
  display: flex;
  flex-direction: column;
  line-height: 2;
  padding-left: 12px;
}

.form_item--ttl {
  padding: 0 4px 20px;
  line-height: 1;
  color: var(--b_green);
}

.form_item--input {
  border-bottom: 0.5px solid var(--sky-blue);
  padding: 0 4px 20px;
  margin: 0 0 20px;
}

.form_item.last .form_item--input {
  border-bottom: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
  display: block;
  height: 48px;
  width: 100%;
  font-size: 2.0rem;
  padding: 6px;
  background-color: #ffffff;
  border: none;
}

#age {
  width: 200px;
}

select {
  display: block;
  height: 48px;
  width: 200px;
  font-size: 2.0rem;
  padding: 6px;
  background-color: #ffffff;
}

label {
  font-weight: 500
}

input[type="radio"] {
  margin: 0 3px 2px 5px;
}

input[type="number"] {
  max-width: 120px;
}

textarea {
  height: 252px;
  resize: vertical;
  background-color: #ffffff;
  border-radius: 9px;
}

.form_submit button {
  width: 100%;
  max-width: 320px;
  background-color: var(--b_green);
  padding: 20px;
  margin: 20px auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  transition: 0.3s;
}

.form_submit button:hover {
  opacity: 0.7;
}

.form_submit button p {
  font-size: 2.2rem;
  color: #ffffff;
  text-align: left;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

.Privacy_policy {
  background-color: #ffffff;
  border: 1px solid var(--b_green);
  padding: 20px 10px;
  text-align: center;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.Privacy_policy h3 {
  margin-bottom: 20px;
}

.Privacy_policy ul {
  text-align: left;
}

.Privacy_policy li {
  padding-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 400;
}

iframe {
  display: block;
  height: 80vw;
  max-height: 450px;
}

.cr {
  padding: 16px 0;
  color: var(--b_green);
  font-size: 1.6rem;
  text-align: center;
  font-weight: 700;
}

#go_top {
  width: 50px;
  position: fixed;
  bottom: 10px;
  right: 5px;
  z-index: 900;
}

.section_inner {
  width: 90%;
  max-width: 1280px;
}

/* pc form  */
@media screen and (min-width: 960px) {
 #form .section_ttl{
  flex-direction: row;
  align-items: center;
 }

 .form_item {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.form_item:first-of-type .form_item--input {
  margin-bottom: 0;
  padding: 0 0 0 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.form_item--ttl {
  padding: 30px 10px;
  width: 40%;
  margin: 0;
  height: 80px;
  line-height: 1;
  text-align: right;
}

.form_item--input {
  width: 60%;
  margin: 0;
  padding: 20px 60px 20px 30px;
  border-left: 0.5px solid var(--sky-blue);
  height: 80px;
}


.form_item--input label {
  line-height: 1;
  display: inline-block;
}

.form_item:nth-of-type(9) .form_item--ttl {
  border-bottom: none;
  padding-bottom: 260px;
}

.form_item:nth-of-type(9) .form_item--input {
  border-bottom: none;
}

.form_item--input.big {
  padding: 16px 60px 15px 30px;
  height: 300px;
}

  .Privacy_policy {
  
    margin: 40px  auto;
  }
  
#go_top {
  width: 50px;
  bottom: 5%;
  right: 2%;
  z-index: 900;
}

}