/*
Theme Name: komiya-dental-recruit
Description: テーマの説明
Author: あなたの名前
Version: 1.0
*/

@charset "UTF-8";

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  color: #191919;
  font-family: var(--font-first);
  font-style: normal;
  font-weight: 400;
}

main {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition-duration: 0.3s;
}

a img,
a::before,
a::after,
a p,
a div,
a span,
a button {
  transition-duration: 0.3s;
}

a:hover img {
  opacity: 0.8;
}

p,
a,
li,
button,
dt,
dd,
th,
td,
address,
small {
  letter-spacing: 0.05em;
}

:root {
  --color-main: #003F88;
  --color-accent: #FFDC26;
  --color-main-bg: #EBF4FF;
  --color-sub-bg: #EBE6DE;
  --color-body: #fff;
  --color-shadow: rgba(0, 0, 0, .16);
  --font-first: "Zen Maru Gothic", sans-serif;
  --font-secondary: Arial, Helvetica, sans-serif;
}

/*-----------------------------------------------------------------------------------------
アニメーション
-----------------------------------------------------------------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 2s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade {
  opacity: 0;
  transition: opacity 2s ease;
}

.fade.is-visible {
  opacity: 1;
}

/*-----------------------------------------------------------------------------------------
レイアウト
-----------------------------------------------------------------------------------------*/

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

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

.txt-box {
  text-align: justify;
  line-height: 2;
}

.mb-section {
  margin-bottom: 120px;
}


.flex-sb {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 1em;
}

.flex-sb .l-box, .flex-sb .r-box {
  width: 48%;
}

@media (max-width:1024px) {
  .flex-sb .l-box, .flex-sb .r-box, .flex-box {
    width: 100% !important;
  }

  .mb-section {
    margin-bottom: 80px;
  }


}

.sp-block {
  display: none;
}

/*-----------------------------------------------------------------------------------------
見出し
-----------------------------------------------------------------------------------------*/
/*68 青太字 左揃 下余白34*/
.heading-001 {
  font-size: 68px;
  font-weight: bold;
  color: var(--color-main);
  text-transform: uppercase;
  font-family: var(--font-secondary);
  letter-spacing: .05em;
  margin-bottom: .5em;
  width: fit-content;
}

.heading-001.white {
  color: #fff;
}

.heading-001.circle {
  position: relative;
  z-index: 1;
  padding-left: .5em;
}

.heading-001.circle::before {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  aspect-ratio: 1/1;
  background-color: var(--color-accent);
  border-radius: 50%;
  top: -.5em;
  left: 0;
  z-index: -1;
}

.heading-001 span {
  display: block;
  font-size: 24px;
  font-family: var(--font-first);
  ;
}

@media (max-width:1024px) {
  .heading-001 {
    font-size: 34px;
    margin-bottom: 1em !important;
  }

  .heading-001 span {
    font-size: 14px;
  }

  .heading-001.circle::before {
    width: 68px;
  }
}

/*34 白太字 中央揃*/
.heading-002 {
  color: #fff;
  text-align: center;
  font-size: 34px;
  letter-spacing: .05em;
}

.heading-002 span {
  font-size: 16px;
  text-transform: uppercase;
  display: block;
  text-align: center;
  width: 100%;
  margin-top: .3em;
}

@media (max-width:1024px) {
  .heading-002 {
    font-size: 26px;
  }
}

/* 下層 ヘッダー h2 */
.heading-003 {
  font-size: 20px;
  color: #fff;
  text-align: center;
}

/* 下層 h3 */
.heading-004 {
  font-size: 40px;
  font-weight: bold;
  color: var(--color-main);
  text-transform: uppercase;
  font-family: var(--font-secondary);
  letter-spacing: .05em;
  width: fit-content;
  margin: 0 auto 1em;
  text-align: center;
  position: relative;
}

.heading-004 span {
  display: block;
  font-size: 16px;
  font-family: var(--font-first);
  margin-bottom: 0.5rem;
}


/*-----------------------------------------------------------------------------------------
背景色・文字色
-----------------------------------------------------------------------------------------*/
.bgc-navy {
  background-color: var(--color-main);
}

.bgc-lightblue {
  background-color: var(--color-main-bg);
}

.bgc-yellow {
  background-color: var(--color-accent);
}

.bgc-beige {
  background-color: var(--color-sub-bg);
}

.bgc-white {
  background-color: #fff;
}

.navy {
  color: var(--color-main);
}

.yellow {
  color: var(--color-accent);
}

.white {
  color: #fff;
}

/*-----------------------------------------------------------------------------------------
パーツ
-----------------------------------------------------------------------------------------*/

.count {
  counter-reset: number 0;
}

.count li::before {
  display: block;
  counter-increment: number 1;
  content: "0"counter(number);
}

/*-----------------------------------------------------------------------------------------
パーツ
-----------------------------------------------------------------------------------------*/
/* 青ボタン */
.btn-b {
  display: block;
  width: fit-content;
  border-radius: 40px;
  background-color: var(--color-main);
  color: #fff;
  padding: .2em 2em;
  border: 6px double #fff;
  box-sizing: border-box;
  font-size: 24px;
}

.btn-w {
  display: block;
  width: fit-content;
  border-radius: 40px;
  background-color: #fff;
  color: var(--color-main);
  padding: .2em 2em;
  border: 6px double var(--color-main);
  box-sizing: border-box;
  font-size: 24px;
}

.btn-b:hover, .btn-w:hover {
  opacity: .8;
}

@media (max-width:1024px) {
  .btn-b, .btn-w {
    font-size: 20px;
  }
}

/*診察カレンダー*/
.table-1 table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border: 1px solid #fff;
  margin-bottom: 0.5em;
}

.table-1 table tr:first-child {
  background-color: var(--color-main);
  color: #fff;
}

.table-1 table tr:not(:first-child) {
  background-color: rgba(0, 63, 136, .05);
}

.table-1 table th {
  width: 20%;
}

.table-1 table th, .table-1 table td {
  padding: 8px 0;
  text-align: center;
}

.table-1 table tr:not(:first-child) th {
  color: var(--color-main);
  font-style: italic;
}

.opening-hour li {
  text-indent: .5em;
}

@media (max-width:1024px) {
  .table-1 table th {
    font-size: 12px;
  }
}

/*-----------------------------------------------------------------------------------------
アコーディオン
-----------------------------------------------------------------------------------------*/
.accordion-item {
  border-bottom: 1px solid #ddd;
}

.accordion-question {
  background: none;
  border: none;
  width: 100%;
  line-height: 2;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  color: #4c4b4c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 0;
}

.accordion-icon {
  transition: transform 0.3s;
  color: var(--color-main);
}

.accordion-question.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-answer {
  max-height: 0;
  overflow: hidden;
  color: #4c4b4c;
  transition: all .2s ease;
}

.accordion-answer p,
.accordion-answer ul {
  padding: 0 1em 1em 1em;
}

.accordion-answer.active {
  max-height: 100vh;
}

/* -------------------------------------
    タブ関連
----------------------------------------*/
.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tab-wrap:after {
  content: '';
  width: 100%;
  height: 50px;
  display: block;
  order: -1;
}

@media (max-width:1024px) {
  .tab-wrap:after {
    height: 30px;
  }
}

.tab-switch {
  display: none;
}

.tab-switch:checked+.tab-label {
  background-color: var(--color-main);
  color: #FFF;
}

.tab-switch:checked+.tab-label::after {
  background-color: var(--color-main);
}

.tab-label {
  color: var(--color-main);
  background: rgba(0, 63, 136, .05);
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 10px 20px;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  flex: 1;
  position: relative;
  margin: 2px;
  font-family: var(--font-secondary);
}

.tab-label::after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: transparent;
  bottom: -10px;
  left: calc(50% - 10px);
  rotate: 45deg;
  z-index: 300;
}

.tab-label span {
  display: block;
  font-size: small;
}

.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: hidden;
  padding: 5px 3px;
  opacity: 1;
  transition: .5s opacity;
}

.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

/*-----------------------------------------------------------------------------------------
header
-----------------------------------------------------------------------------------------*/
header {
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-wrapper {
  padding: 1em 0;
  background-color: var(--color-main);
}

.header-wrapper h1 {
  width: 250px;
}

.header-wrapper h1 a {
  display: block;
  width: 100%;
  position: relative;
}

.header-wrapper h1 a span {
  display: block;
  position: absolute;
  background-color: var(--color-accent);
  color: var(--color-main);
  padding: .2em .8em;
  font-size: 10px;
  width: fit-content;
  border-radius: 10px;
  right: 0;
  top: 5px;
  letter-spacing: .01px;
  font-family: var(--font-secondary);
}

.header-wrapper h1 a:hover span {
  opacity: .8;
}

.header-wrapper .flex-sb {
  align-items: center;
  padding: 0 5%;
  box-sizing: border-box;
}

.header-wrapper nav.global {
  box-sizing: border-box;
}

nav.global>ul.nav-menu {
  display: flex;
  justify-content: space-between;
}

nav.global>ul.nav-menu li {
  width: fit-content;
  box-sizing: border-box;
}

nav.global>ul.nav-menu li a {
  display: block;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  padding: .5em 1em;
  box-sizing: border-box;
}

nav.global>ul.nav-menu li:last-child {
  padding: 0 1em;
}

nav.global>ul.nav-menu li:last-child a {
  font-family: var(--font-secondary);
  background-color: var(--color-accent);
  color: var(--color-main);
  border-radius: 40px;
  font-weight: bold;
  padding: .5em 2em;
  font-size: 18px;
}

nav.global>ul.nav-menu li:last-child a:hover {
  transform: scale(1.1);
}

nav.global>ul.nav-menu li:not(:last-child) a {
  position: relative;
}

nav.global>ul.nav-menu li:not(:last-child) a::after {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 1px;
  left: 1em;
  bottom: -.5px;
  background-color: var(--color-accent);
}

nav.global>ul.nav-menu li:not(:last-child) a:hover::after {
  width: calc(100% - 2em);
}


header .btn-squ {
  display: block;
  width: 60px;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  border: 0;
  position: relative;
  background-color: transparent;
  padding: 0;
}

header #hamburger span {
  position: absolute;
  width: 30px;
  height: 2px;
  top: calc(50%- 1px);
  right: 0;
  background-color: #fff;
  transition: all 0.6s;
  z-index: 1000;
}

header #hamburger span::before, header #hamburger span::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 2px;
  right: 0;
  background-color: #fff;
  transition: all 0.6s;
}

header #hamburger span::before {
  top: -8px;
}

header #hamburger span::after {
  top: 8px;
}

header #hamburger.active span {
  background-color: transparent;
}

header #hamburger.active span::before {
  transform: translateY(8px) rotate(-45deg);
  background-color: var(--color-accent);
}

header #hamburger.active span::after {
  transform: translateY(-8px) rotate(45deg);
  background-color: var(--color-accent);
}

/* .fixed-menu a {
  display: block;
  text-align: center;
  border-radius: 20px;
  position: fixed;
  writing-mode: vertical-lr;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: 20px 110px 20px 20px;
  right: -90px;
  box-shadow: -5px 0 0 0 #fff;
  z-index: 30;
}

.fixed-menu a span {
  writing-mode: horizontal-tb;
  text-transform: uppercase;
  line-height: 1;
  font-size: 15px;
}

.fixed-menu a:nth-child(1) {
  background-color: #F3A93B;
  top: 115px;
}

.fixed-menu a:nth-child(2) {
  background-color: #003F88;
  top: 280px;
}

.fixed-menu a:hover {
  transform: translateX(-70px);
}

@media (max-width:1024px) {
  .fixed-menu {
    width: 100%;
  }

  .fixed-menu a {
    width: 50%;
    top: auto;
    right: 0;
    bottom: 0;
    writing-mode: horizontal-tb;
    padding: 15px 0;
    box-shadow: none;
    box-sizing: border-box;
    border-radius: 0;
  }

  .fixed-menu a:nth-child(1) {
    right: auto;
    left: 0;
    top: auto;
  }

  .fixed-menu a:nth-child(2) {
    top: auto;
  }

  .fixed-menu a:hover {
    transform: none;
    opacity: .8;
  }

} */

.sp-nav-wrapper {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: var(--color-body);
  transition-duration: 1s;
  z-index: 990;
  overflow: hidden;
}

.sp-nav-wrapper .sp-nav {
  background-color: var(--color-main-bg);
  height: 100vh;
}

.sp-nav-wrapper .sp-nav-menu {
  padding-top: 76px;
}

.sp-nav-wrapper .sp-nav li a {
  display: block;
  text-align: center;
  color: var(--color-main);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  line-height: 4;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.sp-nav-wrapper .sp-nav li:last-child a {
  background-color: var(--color-main);
  border-radius: 50px;
  width: 80%;
  margin: 1em auto 0;
  padding: 0 1em;
  color: var(--color-accent);
}

.sp-nav-wrapper.active {
  height: 100vh;
}


/*-----------------------------------------------------------------------------------------
footer
-----------------------------------------------------------------------------------------*/

footer .flex-sb {
  row-gap: 2em;
}

footer .table-1 {
  width: 50%;
}

address {
  line-height: 1.8;
  text-align: center;
}

address a {
  display: block;
  color: var(--color-main);
  font-size: 32px;
}

address a:hover {
  color: var(--color-accent);
  transform: scale(1.05);
}

footer .bgc-navy {
  padding: 2em 0;
}

footer nav {
  margin-bottom: 2em;
}

small {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
}

@media (max-width:1024px) {
  #information h2, #information address {
    margin: 0 auto;
    width: 50%;
  }

  #information .table-1 {
    width: 100%;
  }
}

/*-----------------------------------------------------------------------------------------
トップページ index.php
-----------------------------------------------------------------------------------------*/

/*-------------------------------------
main-img
---------------------------------------*/

.main-img {
  position: relative;
  margin-bottom: 150px;
}

.main-img .flex-sb {
  flex-wrap: wrap;
  gap: 0;
}

.main-img .flex-sb.pc-tablet div {
  width: calc(100% / 4);
  aspect-ratio: 1/1;
  box-sizing: border-box;
}

.main-img .flex-sb.pc-tablet div:nth-child(4), .main-img .flex-sb div:nth-child(7) {
  border: 10px solid #fff;
  box-shadow: 1px 1px 5px 3px #ddd;
}

.main-img .flex-sb.pc-tablet div:nth-child(4) {
  transform: rotate(5deg);
}

.main-img .flex-sb.pc-tablet div:nth-child(7) {
  transform: rotate(-6deg);
}

.main-img .flex-sb.sp-only {
  display: none;
}

.main-img .flex-sb.sp-only div {
  width: calc(100% / 2);
  aspect-ratio: 1/1;
  box-sizing: border-box;
}

.main-img p {
  position: absolute;
  top: calc(50% - (306px / 2));
  left: 5%;
}

.main-img p span {
  display: block;
  background-color: #fff;
  color: var(--color-main);
  font-size: 52px;
  font-family: var(--font-secondary);
  font-weight: bold;
  margin-bottom: .2em;
  width: fit-content;
  padding: 0 .5em;
  border-radius: 10px;
}

.main-img p span.sub {
  font-size: 31px;
  text-transform: capitalize;
  background-color: transparent;
  padding-left: 1em;
}

@media (max-width:1024px) {
  .main-img {
    margin-bottom: 80px;
  }

  .main-img p {
    top: calc(50% - (168px / 2));
  }

  .main-img p span {
    font-size: 28px;
    margin-bottom: .2em;
    border-radius: 10px;
  }

  .main-img p span.sub {
    font-size: 18px;
    padding-left: 1em;
  }

}

@media (max-width:767px) {

  .main-img .flex-sb.flex-sb.pc-tablet {
    display: none;
  }

  .main-img .flex-sb.sp-only {
    display: flex;
  }

}

/* 飾り */
.main-img::before, .main-img::after {
  position: absolute;
  display: block;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 0;
}

.main-img::before {
  width: 46%;
  background-image: url(img/decoration_main_left.svg);
  aspect-ratio: 607/327;
  left: -5%;
}

.main-img::after {
  width: 42%;
  background-image: url(img/decoration_main_right.svg);
  aspect-ratio: 610/432;
  right: 0;
}

/*-------------------------------------
concept
---------------------------------------*/
#concept {
  position: relative;
  z-index: 1;
}

#concept .flex-sb {
  align-items: center;
}

#concept .l-box {
  width: 50%;
}

#concept .r-box {
  width: calc(50% - 5em);
}

@media (max-width:1024px) {
  #concept .l-box {
    width: 100%;
  }

  #concept .r-box {
    width: 50%;
  }
}

#concept .txt-box {
  margin-bottom: 2em;
  background-color: rgba(255, 255, 255, .8);
}

#concept .btn-b {
  margin: 0 0 0 auto;
}


/* 飾り */
#concept .heading-001 {
  position: relative;
  margin-bottom: 0;
}

#concept .heading-001::after {
  content: "";
  display: block;
  position: absolute;
  width: 28%;
  aspect-ratio: 108/96;
  background-size: contain;
  background-image: url(img/decoration_teeth.svg);
  background-repeat: no-repeat;
  right: -30%;
  top: -28%;
}

#concept::before, #concept::after {
  position: absolute;
  content: "";
  display: block;
  width: 15%;
  min-width: 150px;
  aspect-ratio: 228/157;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

#concept::before {
  top: -5%;
  right: 0;
  background-image: url(img/decoration_line_yellow.svg);
}

#concept::after {
  bottom: -5%;
  left: 0;
  background-image: url(img/decoration_line_navy.svg);
}

#concept .img-wrapper {
  position: relative;
}

#concept .img-wrapper::after {
  position: absolute;
  display: block;
  content: "";
  width: 30%;
  aspect-ratio: 120/128;
  background-image: url(img/decoration_tool_01.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: -10%;
  bottom: -10%;
}

@media (max-width:1024px) {
  #concept .heading-001 {
    margin-bottom: 0.5em;
  }

  #concept .img-wrapper::after {
    display: none;
  }

}

/*-------------------------------------
#recommend_greeting
---------------------------------------*/
#recommend_greeting.bgc-lightblue {
  padding-top: 120px;
}

/*-------------------------------------
recommend
---------------------------------------*/
#recommend .heading-001 {
  margin: 0 auto .5em;
}

#recommend .heading-001 span {
  text-align: center;
}

#recommend .introduction {
  text-align: center;
  position: relative;
  margin-bottom: 60px;
}

#recommend .title {
  color: var(--color-main);
  font-weight: 700;
  text-align: center;
  display: block;
  margin-bottom: 1em;
}

#recommend .introduction::before {
  content: "";
  display: block;
  width: 10%;
  min-width: 80px;
  aspect-ratio: 108/96;
  background-size: contain;
  background-image: url(img/decoration_teeth02.svg);
  background-repeat: no-repeat;
  margin: 0 auto;
}

#recommend .center.txt-box {
  text-align: center;
  margin-bottom: 2em;
}

#recommend ol {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.5em;
  margin-bottom: 4em;
}

#recommend ol li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5em 4em 1em;
  position: relative;
  flex-wrap: wrap-reverse;
  row-gap: 1em;
  z-index: 1;
}

#recommend ol li::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #FFF;
  border-radius: 20px;
  z-index: -1;
  right: 0;
  top: 0;
}

#recommend .h3-wrapper {
  display: flex;
  gap: 2em;
  align-items: center;
  width: calc(100% - (33% + 2em));
}

#recommend .h3-wrapper .title {
  text-align: left;
  font-size: 20px;
}

#recommend h3 {
  color: var(--color-main);
  text-align: center;
  margin-bottom: 0.5em;
  text-transform: uppercase;
  width: 108px;
  position: relative;
  z-index: 1;
}

#recommend h3 span {
  font-size: 42px;
  display: block;
  line-height: 1;
}

#recommend h3::after {
  position: absolute;
  content: "";
  display: block;
  width: 108px;
  aspect-ratio: 1/1;
  top: calc(50% - 54px);
  left: 0;
  background-color: var(--color-accent);
  border-radius: 50%;
  z-index: -1;
}

#recommend .img-wrapper {
  width: 33%;
  height: 230px;
  transform: translateY(1em);
  text-align: center;
}

#recommend .img-wrapper img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

#recommend ol li:nth-child(2) .img-wrapper img {
  transform-origin: top center;
  transform: scale(1.1);
}

#recommend ol li:nth-child(2) .img-wrapper {
  order: 1;
}

#recommend ol li:nth-child(2) .h3-wrapper {
  order: 2;
}


#recommend .btn-b {
  margin: 0 auto;
}

#recommend .fade.is-visible:nth-child(2){
  transition-delay: .2s;
}

#recommend .fade.is-visible:nth-child(3){
  transition-delay: .2s;
}


@media (max-width:1024px) {

  #recommend_greeting.bgc-lightblue {
    padding-top: 60px;
  }

  #recommend ol {
    row-gap: 3em;
    margin-bottom: 2em;
  }

  #recommend ol li {
    padding: 3em 1em;
    position: relative;
  }

  #recommend ol li::after {
    width: calc(100% - 2%);
    right: 1%;
  }

  #recommend ol li:nth-child(2) {
    flex-wrap: wrap;
  }

  #recommend .img-wrapper {
    width: 100%;
    height: 200px;
    margin-bottom: 2em;
  }

  #recommend ol li:nth-child(2) .img-wrapper img {
    transform: scale(1);
  }

  #recommend h3 {
    position: absolute;
    left: 0;
    top: 0;
  }

  #recommend .h3-wrapper {
    width: 100%;
  }

  #recommend .h3-wrapper .txt-box {
    margin: 0 auto;
    text-align: center;
  }

  #recommend .h3-wrapper .txt-box .title {
    margin: 0 auto 1em;
    text-align: center;
  }


}


/*-------------------------------------
greeting
---------------------------------------*/
#greeting.mb-section {
  margin-bottom: 150px;
}

#greeting .bgc-navy {
  padding: 100px 0 160px;
  border-radius: 100px 0 0 0;
}

@media (max-width:1024px) {
  #greeting.mb-section {
    margin-bottom: 80px;
  }

  #greeting .bgc-navy {
    padding-top: 80px;
    border-radius: 80px 0 0 0;
  }
}

#greeting .heading-001::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: calc(50% - 1px);
  right: -120%;
}

/* 非アクティブ可視化 */
#greeting .swiper {
  overflow: visible;
}

/* 非アクティブ時は透過 */
#greeting .swiper-slide {
  position: relative;
  opacity: .5;
  transition-duration: .3s;
}

/* アクティブ時は透過解除 */
#greeting .swiper-slide.swiper-slide-active,
#greeting .swiper-slide.swiper-slide-next,
#greeting .swiper-slide.swiper-slide-prev {
  opacity: 1;
  transition-duration: .3s;
}

#greeting .swiper-button-next,
#greeting .swiper-button-prev {
  top: auto;
  background-color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  bottom: -120px;
  left: auto;
  right: 0;
}

#greeting .swiper-button-prev {
  right: 80px;
}

#greeting .swiper-button-next::after {
  content: "→";
  color: var(--color-main);
  font-size: 24px;
}

#greeting .swiper-button-prev::after {
  content: "←";
  color: var(--color-main);
  font-size: 24px;
}

#greeting .swiper-slide .slide-wrapper {
  border-radius: 40px;
  /*角丸*/
  overflow: hidden;
}

#greeting .swiper-slide .name {
  position: absolute;
  width: 72%;
  box-sizing: border-box;
  left: calc(50% - 36%);
  bottom: -9%;
  background-color: rgba(255, 220, 38, .7);
  border: 2px solid #fff;
  text-align: center;
  border-radius: 20px;
  padding: .5em 0;
}

#greeting .name span {
  font-size: 20px;
  text-transform: capitalize;
}

@media (max-width:1024px) {
  #greeting .swiper {
    width: 86%;
    margin: 0 auto;
  }
}

/*-------------------------------------
step
---------------------------------------*/

#step .heading-001 {
  margin: 0 auto .5em;
}

#step .heading-001 span {
  text-align: center;
}

#step .bgc-beige {
  padding: 5em 0 4em;
  box-sizing: border-box;
  border-radius: 3px;
  border-radius: 10px;
}

#step dl {
  margin-bottom: 4em;
}

.nth-year {
  display: flex;
  justify-content: center;
}

.nth-year:not(:last-child) {
  margin-bottom: 2em;
}

.nth-year dt {
  font-size: 32px;
  color: var(--color-main);
  width: 20%;
  max-width: 180px;
  position: relative;
  padding-left: 2em;
}

.nth-year dt::before {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-main);
  left: 0;
  top: 14px;
}

.nth-year dt::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: calc(100% + 1em);
  background-color: var(--color-main);
  left: 9px;
  top: 34px;
}

.nth-year dd {
  width: 48%;
  position: relative;
}

.nth-year dd .flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
}

.nth-year dd p.txt-box {
  box-sizing: border-box;
  background-color: #fff;
  padding: 2em;
  width: fit-content;
  border-radius: 10px;
}

.nth-year dd div.img-wrapper {
  width: 20%;
  transform: scale(2) translateX(5%) rotate(4deg);
}

.nth-year:nth-child(2) dd .flex {
  flex-wrap: wrap-reverse;
  align-items: flex-end;
}

.nth-year:nth-child(2) dd .flex p.txt-box {
  order: 2;
}

.nth-year:nth-child(2) dd .flex div.img-wrapper {
  order: 1;
  transform: scale(-2, 2) translateX(0) rotate(8deg);
}

#step .btn-b {
  margin: 0 auto;
}


/* 飾り */

#step .heading-001::after {
  content: "";
  display: block;
  position: absolute;
  width: 28%;
  aspect-ratio: 115/87;
  background-size: contain;
  background-image: url(img/decoration_tool_02.svg);
  background-repeat: no-repeat;
  right: -30%;
  top: -28%;
}

#step dl {
  position: relative;
}

#step dl::before, #step dl::after {
  content: "";
  position: absolute;
  display: block;
  width: 12%;
  min-width: 68px;
  aspect-ratio: 1/1;
  background-size: contain;
  background-repeat: no-repeat;
}

#step dl::before {
  background-image: url(img/decoration_record.svg);
  top: -4em;
  left: 1em;
}

#step dl::after {
  background-image: url(img/decoration_chair.svg);
  right: 2em;
  bottom: -10em;
}

#step .dc-box {
  position: relative;
  z-index: 1;
}


#step .dc-box::before, #step .dc-box::after {
  position: absolute;
  content: "";
  display: block;
  width: 25%;
  min-width: 200px;
  aspect-ratio: 429/304;
  background-size: contain;
  background-image: url(img/decoration_dotline_yellow.svg);
  background-repeat: no-repeat;
  z-index: -1;
}

#step .dc-box::before {
  top: -60px;
  right: -15%;
}

#step .dc-box::after {
  bottom: -60px;
  left: -15%;
}

#step .fade.is-visible:nth-child(2){
  transition-delay: .2s;
}

#step .fade.is-visible:nth-child(3){
  transition-delay: .2s;
}

@media (max-width:1023px) {

  .nth-year {
    display: block;
  }

  .nth-year dt {
    width: 100%;
    text-align: left;
    padding: 0 10%;
    max-width: none;
    margin-bottom: 0.5em;
    box-sizing: border-box;
  }

  .nth-year:nth-child(2) dt {
    text-align: right;
  }

  .nth-year dt::before,
  .nth-year dt::after {
    visibility: hidden;
  }

  .nth-year dd {
    width: 90%;
    margin: 0 auto;
  }

  .nth-year dd p.txt-box {
    padding: 1em;
    text-align: justify;
    width: 55%;
    font-size: 14px;

  }

  .nth-year dd div.img-wrapper {
    width: 45%;
    transform-origin: right bottom;
    transform: scale(1.2) translate(6%, 0) rotate(3deg);
  }

  .nth-year dd .flex {
    align-items: center;
  }

  .nth-year:nth-child(2) dd .flex div.img-wrapper {
    width: 45%;
    transform-origin: right bottom;
    transform: scale(-1.2, 1.2) translateX(80%) rotate(6deg);
  }

}

/*-------------------------------------
entry
---------------------------------------*/
#entry .bgc-yellow {
  padding: 90px 0 120px;
}

#entry .heading-001 {
  margin: 0 auto .5em;
}

#entry .heading-001 span {
  text-align: center;
}

#entry .heading-002::before {
  width: 100%;
  color: #fff;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 43px;
  font-weight: bold;
  display: block;
  line-height: .8;
}

#entry .heading-002.hygienist::before {
  content: "01";
}

#entry .heading-002.assistant::before {
  content: "02";
}

#entry .flex-sb a {
  aspect-ratio: 116/43;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

#entry .flex-sb li:first-child a {
  background-image: url(img/entry_01.jpg);
}

#entry .flex-sb li:last-child a {
  background-image: url(img/entry_02.jpg);
}

#entry .flex-sb a:hover {
  opacity: .8;
}

@media (max-width:1024px) {
  #entry .bgc-yellow {
    padding: 60px 0 80px;
  }

  #entry .heading-002::before {
    font-size: 36px;
  }
}


/*-----------------------------------------------------------------------------------------
下層ページ
-----------------------------------------------------------------------------------------*/
/*-------------------------------------
下層ページヘッダー
---------------------------------------*/
.lower-heading-wrapper {
  background-image: url(img/bg-medical.jpg);
  height: 290px;
  background-size: cover;
  background-position: left center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

#page-staff .lower-heading-wrapper {
  background-image: url(img/interview_top.jpg);
  background-position: center center;
}

#page-step .lower-heading-wrapper {
  background-image: url(img/step_top.jpg);
  background-position: center center;
}

#page-recommend .lower-heading-wrapper {
  background-image: url(img/recommend_top.jpg);
  background-position: center center;
}

/*-------------------------------------
下層ページパンくずリスト
---------------------------------------*/
.breadcrumb-container {
  padding: 1rem 2rem;
  margin-bottom: 40px;
}

.lower .breadcrumb {
  margin-bottom: 0;
  padding: 0;
  border-bottom: none;
}

.lower .breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #666;
}

.lower .breadcrumb-item {
  display: flex;
  align-items: center;
}

.lower .breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
  color: #999;
  font-weight: normal;
}

.lower .breadcrumb-item a {
  color: var(--color-main);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.lower .breadcrumb-item a:hover {
  opacity: .6;
}

.lower .breadcrumb-item.current {
  font-weight: 500;
}

/*-------------------------------------
下層ページメインコンテンツ
---------------------------------------*/

.lower-wrapper .main-container a.link {
  color: var(--color-main);
  text-decoration: underline;
}

em {
  text-decoration: underline;
  text-decoration-color: var(--color-accent);
  text-decoration-thickness: 3px;
  text-decoration-style: solid;
}

/* リストアイコン設定 */
.lower-wrapper .main-container li::before,
.lower-wrapper .main-container p::before {
  content: "";
  display: none;
  width: 1em;
  height: 1em;
  left: -1.5em;
  position: absolute;
}

/* アイコン有効時字下げ設定 */
.lower-wrapper .main-container .kome,
.lower-wrapper .main-container .circle,
.lower-wrapper .main-container .square,
.lower-wrapper .main-container .dot,
.lower-wrapper .main-container .count li {
  margin-left: 1.5em;
}

/* カウントアップ*/
.lower-wrapper .main-container .count {
  counter-reset: number 0;
}

.lower-wrapper .main-container .count li::before {
  display: block;
  counter-increment: number 1;
  content: counter(number) ".";
  color: var(--color-main);
}

/* 米印 */
.lower-wrapper .main-container .kome::before {
  content: "※";
  color: var(--color-main);
  display: block;

}

/* ⚫︎印 */
.lower-wrapper .main-container .circle::before {
  content: "";
  display: block;
  background-color: var(--color-main);
  border-radius: 50%;
  top: .5em;

}

/* ◼︎印 */
.lower-wrapper .main-container .square::before {
  content: "";
  display: block;
  background-color: var(--color-main);
  top: .5em;

}

/* 中黒 */
.lower-wrapper .main-container .dot::before {
  content: "・";
  display: block;
  color: var(--color-main);

}

/*-----------------------------------------------------------------------------------------
インタビュー page-staff.php
-----------------------------------------------------------------------------------------*/
/*-------------------------------------
レイアウト
---------------------------------------*/

#page-staff .staff-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-end;
}

#page-staff li.staff-box {
  row-gap: 2.2em;
}

/* 奇数行のみ文字と写真順番入れ替え */
#page-staff .staff-box:nth-child(odd) .flex-box.img {
  order: 1;
}

#page-staff .staff-box:nth-child(odd) .flex-box.txt {
  order: 2;
}


#page-staff .staff-box .flex-box.txt {
  width: 43%;
}

#page-staff .staff-box .flex-box.img {
  width: 47%;
}

/* 点線 */
#page-staff li.staff-box {
  padding: 60px 0 100px;
  border-bottom: 4px dotted var(--color-main);
}

#page-staff li.staff-box:first-child {
  padding-top: 0;
}

#page-staff ul {
  margin-bottom: 140px;
}

@media (max-width:1024px) {
  #page-staff li.staff-box {
    padding: 60px 0 60px;
  }

  #page-staff ul {
    margin-bottom: 100px;
  }
}


/*-------------------------------------
コンテンツ
---------------------------------------*/

#page-staff .heading-004::before {
  display: block;
  width: 28%;
  aspect-ratio: 86/72;
  background-image: url(img/decoration_teeth03.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin: 0 auto .5rem;
}

/* 名前 */
#page-staff .staff-name {
  font-size: 35px;
  /* text-transform: capitalize; */
  color: var(--color-main);
  line-height: 1;
}

/* 肩書き */
#page-staff .label {
  color: var(--color-main);
  box-sizing: border-box;
  border: 1px solid var(--color-main);
  border-radius: 20px;
  width: fit-content;
  padding: 0.5em 1em;
  font-weight: 700;
  line-height: 1;
}

#page-staff .name-wrapper {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 2.2em;
}

/* インタビュー項目 */
#page-staff dl div dt {
  font-size: 18px;
  color: var(--color-main);
  font-weight: 700;
  margin-bottom: .5em;
}

/* インタビュー内容 */
#page-staff dl div dd {
  line-height: 1.8;
  text-align: justify;
}

#page-staff dl div:not(:last-child) {
  margin-bottom: 1.5em;
}

@media (max-width:1024px) {

  #page-staff li.staff-box:nth-child(even) {
    flex-wrap: wrap-reverse;
  }

  #page-staff .name-wrapper {
    justify-content: center;
  }

  #page-staff .staff-box .flex-box.img {
    text-align: center;
  }

  #page-staff .staff-box .flex-box.img img {
    width: 50%;
    min-width: 270px;
  }

}

/*-------------------------------------
  新卒 section#new-grad 
---------------------------------------*/
#new-grad {
  background-color: var(--color-main-bg);
  padding: 6em 4em 0 0;
  box-sizing: border-box;
  border-radius: 10px;
  position: relative;
}

#new-grad .heading-002 {
  position: absolute;
  width: 25%;
  max-width: 275px;
  min-width: 234px;
  text-align: center;
  background-color: var(--color-main);
  border-radius: 10px;
  box-shadow: 1px 1px 10px 2px var(--color-shadow);
  padding: .3em 0;
  box-sizing: border-box;
  top: -38px;
  left: calc(50% - 12.5%);
}

#new-grad .heading-002::after {
  position: absolute;
  display: block;
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  border: 12px solid var(--color-main);
  border-color: var(--color-main) transparent transparent var(--color-main);
  left: calc(50% - 12px);
  bottom: -16px;
}

#page-staff #new-grad .flex-box.txt {
  width: 46%;
  order: 2;
  margin-bottom: 4em;
}

#page-staff #new-grad .flex-box.img {
  width: 50%;
  order: 1;
}

@media (max-width:1024px) {
  #new-grad {
    background-color: transparent;
    padding: 0;
    box-sizing: border-box;
    border-radius: 10px;
    position: relative;
  }

  #page-staff #new-grad .flex-box.txt {
    background-color: var(--color-main-bg);
    padding: 2em 1em 3em;
    box-sizing: border-box;
    border-radius: 10px;
    margin-bottom: 0;
  }

  #page-staff #new-grad .staff-box .flex-box.img img {
    min-width: 210px;
  }

  #new-grad .heading-002 {
    position: static;
    margin: 0 auto;
    transform: translateY(-30px);
  }
}

/*-----------------------------------------------------------------------------------------
キャリアプラン page-step.php
-----------------------------------------------------------------------------------------*/
#page-step article ol li {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

#page-step article ol li:nth-child(odd) {
  background-color: var(--color-sub-bg);
}

#page-step h4 {
  font-size: 40px;
  text-align: center;
  font-weight: 500;
  color: var(--color-main);
  line-height: 1.8;
  margin-bottom: .5em;
}

#page-step .heading-002 {
  width: 682px;
  background-color: var(--color-main);
  font-size: 30px;
  padding: 1em 0;
  margin: 0 auto 2em;
  box-shadow: 0 0 10px 1px var(--color-shadow);
  border-radius: 10px;
  box-sizing: border-box;
}

#page-step .heading-002 em {
  text-decoration: none;
}

#page-step .txt-box {
  text-align: center;
  margin-bottom: 2em;
  font-size: 18px;
  font-weight: 500;
  box-sizing: border-box;
  padding: 0 1em;
}

#page-step .txt-box em {
  font-weight: 500;
}

#page-step .img-wrapper {
  width: 300px;
  margin: 0 auto;
}

#page-step section .deco-box,
#page-step section .bg-box {
  position: relative;
  z-index: 1;
}

#page-step section .bg-box::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 64px);
  left: 0;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0 0 10px 1px var(--color-shadow);
  border-radius: 10px;
  z-index: -1;
}

#page-step section .deco-box::before {
  position: absolute;
  display: block;
  content: "";
  width: 200px;
  aspect-ratio: 1/1;
  background-image: url(img/step_d1.svg);
  background-repeat: no-repeat;
  right: -120px;
  top: -120px;
}

#page-step section .deco-box::after {
  position: absolute;
  display: block;
  content: "";
  width: 200px;
  aspect-ratio: 1/1;
  background-image: url(img/step_d2.svg);
  background-repeat: no-repeat;
  left: -100px;
  bottom: -130px;
}

#page-step article ol li:nth-child(2)::before,
#page-step article ol li:nth-child(2)::after {
  position: absolute;
  display: block;
  content: "";
  width: 6px;
  height: 100px;
  background-image: url(img/step_dl.svg);
  background-repeat: no-repeat;
  background-position: center center;
  top: -50px;
  left: calc(50% - 3px);
}

#page-step article ol li:nth-child(2)::after {
  top: auto;
  bottom: -50px;
  transform: rotate(180deg);
}

#page-step section#s2 .deco-box::before {
  width: 200px;
  background-image: url(img/step_d3.svg);
  background-position: bottom;
  right: -120px;
  top: -120px;
}

#page-step section#s2 .deco-box::after {
  width: 200px;
  background-image: url(img/step_d4.svg);
  left: -100px;
  bottom: -130px;
}

#page-step section#s3 .deco-box::before {
  width: 200px;
  background-image: url(img/step_d5.svg);
  right: -120px;
  top: -120px;
}

#page-step section#s3 .deco-box::after {
  width: 200px;
  background-image: url(img/step_d6.svg);
  left: -100px;
  bottom: -130px;
}



@media (max-width:1024px) {

  #page-step article ol li {
    padding: 60px 0 80px;
  }

  #page-step .heading-002 {
    width: 95%;
    font-size: 20px;
    margin: 0 auto 2em;
    padding: 1em .5em;
  }

  #page-step section .bg-box::after {
    width: 104%;
    height: calc(100% - 64px);
    left: calc(50% - 52%);
  }

  #page-step .txt-box {
    font-size: 14px;
    padding: 0;
  }
}

/*-----------------------------------------------------------------------------------------
おすすめ page-recommend.php
-----------------------------------------------------------------------------------------*/
#page-recommend .heading-004 span {
  font-size: 25px;
}

#page-recommend .heading-004::before {
  display: block;
  width: 28%;
  aspect-ratio: 82/53;
  background-image: url(img/decoration_teeth02.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  margin: 0 auto .5rem;
}

/*-------------------------------------
  introduction
---------------------------------------*/
#page-recommend .introduction {
  position: relative;
  z-index: 1;
}

#page-recommend .introduction .txt-box {
  text-align: center;
  margin-bottom: 2em;
  font-weight: 500;
  box-sizing: border-box;
  padding: 0 1em;
}

#page-recommend .introduction .txt-box em {
  font-weight: 500;
}


#page-recommend .introduction .img-wrapper img {
  display: block;
  position: absolute;
  width: 25%;
  max-width: 200px;
  z-index: -1;

}

#page-recommend .introduction .img-wrapper img:nth-child(1) {
  left: -10%;
  bottom: 15%;
  transform: rotate(-14deg);
}

#page-recommend .introduction .img-wrapper img:nth-child(2) {
  left: 0%;
  bottom: 0%;
  transform: rotate(13deg);

}

#page-recommend .introduction .img-wrapper img:nth-child(3) {
  right: 0%;
  bottom: 0%;
  transform: rotate(-9deg);

}

#page-recommend .introduction .img-wrapper img:nth-child(4) {
  right: -10%;
  bottom: 15%;
  transform: rotate(13deg);

}

@media (max-width:1024px) {

  #page-recommend .txt-box {
    font-size: 14px;
  }

  #page-recommend .introduction .img-wrapper img {
    position: static;
    max-width: 120px;
  }

  #page-recommend .introduction .img-wrapper {
    display: flex;
    justify-content: center;
    transform-origin: top center;
    transform: scale(1.3);
  }

  #page-recommend .introduction .img-wrapper img:nth-child(odd) {
    transform: rotate(-9deg) scale(1.1);
  }

  #page-recommend .introduction .img-wrapper img:nth-child(even) {
    transform: translateY(20px) rotate(13deg) scale(1.1);
    transform-style: unset;
  }
}

/*-------------------------------------
point
---------------------------------------*/

#page-recommend article ol#point-list {
  background-color: var(--color-main-bg);
  padding: 120px 0;
}

#point-list>li:not(:last-child) {
  margin-bottom: 160px;
}

#point-list section {
  position: relative;
  z-index: 1;
}

#point-list section::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  left: 0;
  top: 50px;
  z-index: -1;
}

#point-list h4 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  width: fit-content;
  color: var(--color-main);
  text-align: center;
  margin: 0 auto 3em;
  line-height: 1;
  border: 1px solid #000;
  position: relative;
  z-index: 1;
}

#point-list h4 span {
  font-size: 58px;
  display: block;
}

#point-list h4::after {
  position: absolute;
  display: block;
  content: "";
  width: 150px;
  aspect-ratio: 1/1;
  background-color: var(--color-accent);
  border-radius: 50%;
  top: calc(50% - 75px);
  left: calc(50% - 75px);
  z-index: -1;
}


#point-list .img-wrapper {
  height: 338px;
  text-align: center;
  margin-bottom: 3em;
}

#point-list .img-wrapper img {
  height: 100%;
  width: auto;
}

#point-list .copy-wrapper {
  text-align: center;
  margin-bottom: 3em;
}

#point-list .copy-wrapper .main-copy {
  font-size: 20px;
  color: var(--color-main);
  font-weight: 500;
}

#point-list .copy-wrapper .sub-copy {
  font-size: 18px;
  font-weight: 500;
  margin-top: 1em;
}

/* ポイントリストのタイトル〜キャッチコピーまで */
@media (max-width:1024px) {

  #page-recommend article ol#point-list {
    padding: 60px 0;
  }

  #point-list>li:not(:last-child) {
    margin-bottom: 65px;
  }

  #point-list section::after {
    height: calc(100% - 30px);
    top: auto;
    bottom: 0;
  }

  #point-list h4 {
    font-size: 18px;
  }

  #point-list h4 span {
    font-size: 40px;
  }

  #point-list h4::after {
    width: 108px;
    top: calc(50% - 54px);
    left: calc(50% - 54px);
  }

  #point-list .img-wrapper {
    height: 182px;
    margin-bottom: 2em;
  }

  #point-list .copy-wrapper {
    margin-bottom: 2em;
  }

  #point-list .copy-wrapper .sub-copy {
    font-size: 14px;
  }

}

/* ------------------------------ */

#point-list .txt-wrapper {
  background-color: var(--color-sub-bg);
  padding: 3em 0;
  box-sizing: border-box;
  border-radius: 10px;
  width: 100%;
  max-width: 992px;
  margin: 0 auto 2em;
}

#point-list .txt-wrapper .txt-box {
  text-align: center;
}

#point-list .txt-wrapper .txt-box.top {
  margin-bottom: 3em;
}

#point-list .txt-wrapper .txt-box.bottom {
  margin-top: 2em;
}

#point-list .icon-wrapper {
  width: 90%;
  margin: 0 auto;
}

#point-list .icon-wrapper .flex {
  display: flex;
  justify-content: center;
  gap: 2em .8em;
  flex-wrap: wrap;
}

#point-list .icon-wrapper .flex li {
  background-color: #fff;
  width: 287px;
  border-radius: 10px;
  padding: 2em 1em;
  box-sizing: border-box;
  position: relative;
}

#point-list .icon-wrapper .flex li::before {
  position: absolute;
  width: 15px;
  height: auto;
  aspect-ratio: 15 / 23;
  display: block;
  content: "";
  background-image: url(img/decoration_pin.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  left: calc(50% - 7.5px);
  top: -12px;
}

#point-list .icon-wrapper .flex li .icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1em;
  text-align: center;
}

#point-list .icon-wrapper .flex li .icon img {
  max-width: 100%;
  height: 100%;
}

#point-list .icon-wrapper .flex li .icon.size img {
  transform-origin: top center;
  transform: scale(1.2);
}

#point-list .icon-wrapper .flex li .icon-txt {
  text-align: center;
  color: var(--color-main);
}

@media (max-width:1024px) {
  #point-list li #box-1 {
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
  }

  #point-list li #box-2 {
    margin: 0 auto;
    border-radius: 0 0 10px 10px;
    transform: translate(0);
    opacity: 1;
  }

}


/*-----------------------------------------------------------------------------------------
募集要項 page-recruitment.php
-----------------------------------------------------------------------------------------*/
#page-recruitment .heading-004 span {
  font-size: 25px;
}

#page-recruitment .bg-box {
  background-color: var(--color-main-bg);
  padding: 120px 0;
}

.table-wrapper {
  width: 90%;
  max-width: 900px;
  padding: 2em 4em;
  box-sizing: border-box;
  background-color: #fff;
  margin: 0 auto;
  border-radius: 10px;
}

.m-jobTable tr:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.m-jobTable th,
.m-jobTable td {
  line-height: 2;
  padding: 2em 0;
  letter-spacing: .05em;
  box-sizing: border-box;
}

.m-jobTable th {
  width: 30%;
  font-weight: 500;
  color: var(--color-main);
  padding: 2em 1em 2em 0;
}

@media (max-width:1024px) {
  #page-recruitment .bg-box {
    padding: 60px 0 80px;
  }
}

@media (max-width:767px) {
  .table-wrapper {
    padding: 1em 1.5em;
  }

  .m-jobTable th,
  .m-jobTable td {
    font-size: 15px;
  }
}

/*-----------------------------------------------------------------------------------------
エントリー page-entry.php
-----------------------------------------------------------------------------------------*/
.entry-row {
    border-bottom:1px solid #ddd;
    display: flex;
}
@media (max-width:1024px) {
    .entry-row {
        display: block;
    }
}
.entry-label {
    width: 12em;
    font-weight: 500;
    color: var(--color-main);
    padding: 2em 1em 2em 0;
}
@media (max-width:1024px) {
    .entry-label {
        width: 100%;
    }
}
.entry-input,
.entry-label {
    display:block;
    line-height: 2;
    padding: 2em 0;
    letter-spacing: .05em;
    box-sizing: border-box;
}
@media (max-width:1024px) {
    .entry-input {
        padding: 0 0 2em 0;
    }
    .entry-label {
        padding: 2em 0 0 0;
    }
}
.entry-input textarea,
.entry-input input[type=email],
.entry-input input[type=text] {
    padding:10px 4px;
    border-radius: 4px;
    border:1px solid #888;
    width: 100%;
    box-sizing: border-box;
}
.entry-button {
    font-family: var(--font-secondary);
    background-color: var(--color-accent);
    color: var(--color-main);
    border-radius: 40px;
    font-weight: bold;
    padding: .5em 2em;
    font-size: 18px;
    margin-left:auto;
    margin-right: auto;
    display: block;
    transition-duration: 0.3s;
    cursor: pointer;
    margin-top: 2em;
}
.entry-button:hover {
    transform: scale(1.1);
}

.line-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 2em;
  margin: 1em 0 4em;
  justify-content: center;
  align-items: center;
  background-color: var(--color-sub-bg);
  padding: 2em 0;
  border-radius: 10px;
}

.line-box .qr {
  width: 160px;
}

@media (max-width:1024px) {

  .line-box {
    margin-bottom: 0;
  }

  .line-box .txt-box {
    width: 80%;
    margin: 0 auto;
    font-size: 14px;
}

.line-box .line-btn-wrapper {
  width: fit-content;
  margin: 0 auto;
}

}



/*-------------------------------------
404.php
---------------------------------------*/
#nf404 {
  padding: 80px 0;
}

#nf404 .heading-001.circle {
  margin: 0 auto .5em;
  text-align: center;
}

#nf404 .img-wrapper {
  width: 30%;
  max-width: 120px;
  margin: 0 auto 2em;
}

#nf404 .txt-box {
  text-align: center;
  margin-bottom: 2em;
}

#nf404 .btn-b {
  margin: 0 auto;
}

@media (max-width:1024px) {
  #nf404 {
    padding: 50px 0;
  }

}

@media (max-width:1024px) {
  .sp-none {
    display: none;
  }

  .sp-block {
    display: block;
  }
}




/*# sourceMappingURL=style.css.map */