@charset "utf-8";
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
common
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ----------------------------------------------------
element base setting (common)
---------------------------------------------------- */
body {
  color: var(--c-brown);
  line-height: 1.8;
  background: var(--bg-base);
}
a {
  color: var(--c-orange);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.clickable a, .clickable a:hover {
  color: #333;
}
img {
  width: 100%;
  height: auto;
}
.flex {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#wrapper {
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
:root {
  --ff-symbol: 'Material Symbols Outlined';
  --ff-en: 'Montserrat';
  --c-red: #ca1600;
  --c-orange: #dc5800;
  --c-orange-01: #e7782d;
  --c-orange-02: #e48537;
  --c-blueGreen: #5ab3ae;
  --c-green: #1e930b;
  --c-blue: #34a2db;
  --c-brown: #382105;
  --bg-orange: #f1d89b;
  --bg-orange-01: #f2e1af;
  --bg-base: #f4f3ed;
}
.ic--symbol {
  position: relative;
}
.ic--symbol::before {
  font-family: var(--ff-symbol);
  position: absolute;
}
.ic--fill::before {
  font-variation-settings: 'FILL'1;
}
.ic--left::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.ic--top::before {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.ic--reserve::before {
  content: "\e1b1";
}
.ff--en {
  font-family: var(--ff-en);
}
.fc--orange {
  color: var(--c-orange);
}
.fc--blue {
  color: var(--c-blue);
}
.fc--red {
  color: var(--c-red);
}
.scrolled .page_top_btn, .page_top_btn {
  display: none !important;
}
/* ----------------------------------------------------
calendar (common)
---------------------------------------------------- */
/* month prev/next */
div.cal_wrapper .cal_ui input:not(:nth-child(2)) {
  font-size: clamp(1.25vw, 1.5rem);
  padding: 0 clamp(5px, 0.83vw, 10px);
  background: #fff;
  color: #333;
}
/* date */
div.cal_wrapper .headline {
  background: #796a57;
  color: #fff;
}
div.cal_wrapper .headline td {
  padding: clamp(3px, 0.5vw, 6px) 0;
  font-size: clamp(1.2rem, 1.3vw, 1.6rem);
}
/* day */
div.cal_wrapper tr:not(.headline) {
  column-gap: 2px;
}
div.cal_wrapper tr:not(.headline) td {
  margin-top: 2px;
  font-size: clamp(1.2rem, 1.16vw, 1.4rem);
}
div.cal_wrapper td > div {
  background: #fff;
}
@media (max-width: 780px) {}
/* color */
/* 午後休診 */
div.cal_wrapper td > div.Sat {
  background: #7fc2e3;
  color: #333;
}
.cal-halfOff {
  color: #7fc2e3;
}
/* 日曜・祝日 */
div.cal_wrapper td > div.Sun, div.cal_wrapper td > div.Thu, div.cal_wrapper td > div.Holyday {
  background: #f5b1a2;
  color: #333;
}
.cal-off {
  color: #f5b1a2;
}
/* その他 */
div.cal_wrapper td > div.otherDay {
  background: #d8e698;
  color: #333333;
}
.cal-other {
  color: #81b02a;
}
/* 午後休診（イレギュラー) */
div.cal_wrapper td > div.PMOff {
  background: #7fc2e3;
  color: #333;
}
/* 休診（イレギュラー） */
div.cal_wrapper td > div.dayOff {
  background: #f5b1a2;
  color: #333;
}
/* 休診→受診日（イレギュラー） */
div.cal_wrapper td > div.weekday {
  background: transparent;
  color: #333;
}
/* 本日 */
div.cal_wrapper td > div.Today {
  font-weight: bold;
  color: #333;
}
/* ----------------------------------------------------
footer (common)
---------------------------------------------------- */
footer {
  background: var(--bg-orange-01);
  position: relative;
  padding: min(5vw, 60px) 0 min(2.5vw, 30px);
  margin-top: min(8.3vw, 100px);
}
.inrFooter {
  width: 96%;
  max-width: 1320px;
  margin: 0 auto;
}
footer::before {
  content: "";
  background: url("../../img/common/lg-mark-01.png") center center / cover no-repeat;
  aspect-ratio: 1/1;
  width: min(8.75vw, 105px);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
.lg-logo {
  width: min(36.67vw, 440px);
  margin: 0 auto min(3vw, 36px);
}
.ft__wrapper {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}
.ft__info {
  width: 37%;
}
.ft__cal {
  width: 28%;
  padding-bottom: min(1.25vw, 15px) !important;
}
.ft__bnr {
  width: 32%;
}
.ft__cont {
  background: #fff;
  border-radius: min(1.25vw, 15px);
  padding: min(2.5vw, 30px) min(3vw, 40px);
  font-size: min(1.16vw, 1.4rem);
  color: #333;
}
.ft__info .ft__cont:not(:last-child) {
  margin-bottom: min(1.25vw, 15px);
}
.ft__tel {
  margin-top: min(0.4vw, 5px);
}
.ft__tel a {
  color: #333;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: min(2vw, 2.4rem);
  line-height: 1;
  margin-left: 5px;
}
.timetable {
  width: 100%;
  font-size: min(1.25vw, 15px);
  text-align: center;
  margin-bottom: min(1.66vw, 20px);
}
.timetable th {
  font-weight: normal;
  text-align: center;
}
.timetable thead tr {
  border-bottom: 1px solid #aaa;
}
.timetable thead th, .timetable thead td {
  padding: 0 min(0.83vw, 10px) min(0.4vw, 5px);
}
.timetable tbody th, .timetable tbody td {
  padding: min(0.8vw, 10px) min(0.83vw, 10px) 0;
}
.ft__note {
  line-height: 1.6;
  font-size: min(1.08vw, 1.3rem);
}
.ft__bnr li {
  text-align: right;
  margin-bottom: min(1.25vw, 15px);
}
.ft__bnr li img {
  max-width: 420px;
}
.ft__map {
  margin: min(2.5vw, 30px) auto;
  background: #fff;
  border-radius: min(1.25vw, 15px);
  padding: min(0.83vw, 10px);
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
}
.ft__img {
  width: 29%;
  max-width: 375px;
}
.ft__iframe {
  width: 70%;
  border-radius: min(0.83vw, 10px);
  overflow: hidden;
}
.ft__iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.ft__area {
  font-size: min(1.16vw, 1.4rem);
  padding-bottom: min(2vw, 24px);
  border-bottom: 1px solid #666;
  margin-bottom: min(1.66vw, 20px);
}
#navFooter {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  column-gap: min(2.5vw, 30px);
}
#navFooter li a {
  font-weight: 600;
  color: #333;
  font-size: min(1.3vw, 1.6rem);
}
.copy {
  text-align: center;
  margin: min(1.25vw, 15px) 0 0;
  font-size: min(1vw, 1.2rem);
}
.copy a {
  color: #333;
}
#pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 7;
}
#pagetop a {
  display: block;
  width: 45px;
  height: 45px;
  background-color: var(--c-orange);
  color: #fff;
  position: relative;
  z-index: 8;
}
#pagetop a::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 9;
}
.btn_FixedGuide {
  position: fixed;
  right: min(2vw, 25px);
  bottom: 0;
  z-index: 10;
  display: flex;
  display: -webkit-flex;
}
.btn_FixedGuide li {
  width: min(16.67vw, 200px);
  position: relative;
}
.btn_FixedGuide li .btn_close {
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, -50%);
  width: min(2.42vw, 29px);
  cursor: pointer;
}
.btn_FixedGuide.bottom {
  position: absolute;
  bottom: inherit;
  top: 0%;
  transform: translateY(-50%);
}
.btn_FixedGuide.bottom li .btn_close {
  display: none;
}
@media (max-width: 767px) {
  footer {
    position: relative;
    padding: min(12vw, 60px) 0 16vw;
    margin-top: min(20vw, 100px);
  }
  footer::before {
    display: none;
  }
  .inrFooter {
    width: 90%;
  }
  .lg-logo {
    width: min(65vw, 440px);
    margin: 0 auto min(6vw, 36px);
  }
  .ft__wrapper {
    display: block;
  }
  .ft__info, .ft__bnr {
    width: 100%;
    margin-bottom: min(3vw, 20px);
  }
  .ft__cal {
    width: 100%;
    padding-bottom: min(4vw, 15px) !important;
    margin: 0 auto min(3vw, 20px);
  }
  .ft__cal .cal_wrapper {
    width: 80%;
    margin: 0 auto;
  }
  .ft__cal .cal-txt {
    text-align: center;
  }
  .ft__cont {
    border-radius: min(3vw, 15px);
    padding: min(5vw, 30px) min(6vw, 40px);
    font-size: min(3.8vw, 1.4rem);
  }
  .ft__info .ft__cont:not(:last-child) {
    margin-bottom: min(3vw, 15px);
  }
  .ft__tel {
    margin-top: min(1vw, 5px);
  }
  .ft__tel a {
    font-size: min(6vw, 2.4rem);
  }
  .timetable {
    font-size: min(3.8vw, 15px);
    margin-bottom: min(3vw, 20px);
  }
  .timetable thead th, .timetable thead td {
    padding: 0 min(2vw, 10px) min(1vw, 5px);
  }
  .timetable tbody th, .timetable tbody td {
    padding: min(2vw, 10px) 0 0;
  }
  .ft__note {
    line-height: 1.6;
    font-size: min(3.6vw, 1.3rem);
  }
  .ft__bnr li {
    margin-bottom: min(2vw, 15px);
  }
  .ft__map {
    margin: min(5vw, 30px) auto;
    border-radius: min(3vw, 15px);
    padding: min(2vw, 10px);
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .ft__img {
    width: 100%;
    max-width: 375px;
    margin: 3vw auto 0;
  }
  .ft__iframe {
    width: 100%;
    border-radius: min(0.83vw, 10px);
    overflow: hidden;
    height: 60vw;
  }
  .ft__iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  .ft__area {
    font-size: min(3.2vw, 1.4rem);
    padding-bottom: min(4vw, 24px);
    margin-bottom: min(4vw, 20px);
  }
  #navFooter {
    column-gap: min(4vw, 30px);
    flex-wrap: wrap;
  }
  #navFooter li {
    line-height: 1.4;
  }
  #navFooter li a {
    font-size: min(3.4vw, 1.6rem);
  }
  .copy {
    margin: min(3vw, 15px) 0 0;
    font-size: min(2.8vw, 1.2rem);
  }
  #pagetop {
    bottom: 0;
    right: 0;
    z-index: 220;
    display: block !important;
  }
  #pagetop a {
    width: 15vw;
    height: 15vw;
  }
  .btn_FixedGuide {
    right: 0;
    bottom: 15vw;
    z-index: 10;
  }
  .btn_FixedGuide li {
    width: min(28vw, 200px);
  }
  .btn_FixedGuide li .btn_close {
    width: min(4vw, 29px);
  }
}
/* -----------------------------------------------------
home(common)
------------------------------------------------------- */
/* visual */
.homVisual {}
.homSlider {
  width: 100%;
  aspect-ratio: 1300/420;
}
.homSlide {
  aspect-ratio: 1300/420;
  border-radius: min(1.5vw, 18px);
  overflow: hidden;
  background: #f3f3f3;
}
.homSlide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#home .navWrapper {
  padding-bottom: 0;
  margin-bottom: min(2.5vw, 30px);
}
#home .navWrapper .homFirst a {
  display: block;
  background: var(--c-orange-01);
  color: #fff;
  border-radius: 0 0 min(1.25vw, 15px) min(1.25vw, 15px);
  margin: min(0.83vw, 10px) max(-1vw, -12px) 0;
  text-align: center;
  padding: min(0.83vw, 10px) 0;
}
#home .navWrapper .homFirst span {
  font-weight: 600;
  font-size: min(1.66vw, 20px);
  position: relative;
  letter-spacing: 0.1rem;
}
/*#home .navWrapper .homFirst span::before {
  content: "";
  background: url("../../img/common/ic-first.svg") center center / cover no-repeat;
  aspect-ratio: 1/1;
  width: min(2.5vw, 30px);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-150%, -50%);
}*/
#home .navWrapper .homFirst span::after {
  content: "arrow_circle_right";
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: min(2.2vw, 26px);
  line-height: 1;
  display: inline-block;
  position: absolute;
  right: -50px;
  top: 60%;
  color: #fff;
}
@media (max-width: 767px) {
  .homVisual {}
  #home .navWrapper {
    margin-bottom: min(6vw, 30px);
  }
  #home .navWrapper .homFirst a {
    border-radius: 0;
    margin: 0;
    padding: min(2vw, 10px) 0;
    font-size: 3vw;
  }
  #home .navWrapper .homFirst span {
    font-size: min(3.6vw, 18px);
  }
  #home .navWrapper .homFirst span::after {
    right: -10px;
    top: 25px;
    font-size: 2rem;
  }
  /*  #home .navWrapper .homFirst span::before {
    width: min(6vw, 30px);
  }*/
}
/* common */
.homList {
  display: flex;
  column-gap: min(0.8vw, 10px);
  flex-wrap: wrap;
}
.homList li {
  margin-top: min(0.8vw, 10px);
  text-align: center;
  line-height: 1.4;
}
.homList li a {
  display: block;
}
.homList--2 li {
  width: calc(calc(100% - min(0.8vw, 10px))/2);
}
.homList--2 li:nth-child(-n+2) {
  margin-top: 0;
}
.homList--2 li img {
  max-width: 613px;
}
.homList--3 li {
  width: calc(calc(100% - min(1.6vw, 20px))/3);
}
.homList--3 li:nth-child(-n+3) {
  margin-top: 0;
}
.homList--3 li img {
  max-width: 256px;
}
.homList--4 li {
  width: calc(calc(100% - min(2.4vw, 30px))/4);
}
.homList--4 li:nth-child(-n+4) {
  margin-top: 0;
}
.homList--4 li img {
  max-width: 300px;
}
.homList-tate li img {
  max-width: 100px;
}
.homList-tate li {
  width: calc(calc(100% - min(2.4vw, 30px)) / 6);
}
.content h2 {
  position: relative;
}
.content h2 .btnMore {
  display: block;
  position: absolute;
  top: 0;
  font-size: min(1.25vw, 15px);
  border-radius: 30vw;
  background: #ffa128;
  color: #fff;
  padding: min(0.6vw, 8px) min(1.6vw, 20px);
  line-height: 1.3;
  border-bottom: 3px solid #d47700;
  font-weight: normal;
}
@media (max-width: 767px) {
  .homList {
    justify-content: space-between;
    column-gap: none;
  }
  .homList li {
    margin-top: min(2vw, 10px);
  }
  .homList--2 li {
    width: 100%;
  }
  .homList--2 li:nth-child(2) {
    margin-top: min(2vw, 10px);
  }
  .homList--3 li {
    width: 49%;
  }
  .homList--3 li:nth-child(3) {
    margin-top: min(2vw, 10px);
  }
  .homList--4 li {
    width: 49%;
  }
  .homList--4 li:nth-child(n+3) {
    margin-top: min(2vw, 10px);
  }
  .content h2 .btnMore {
    top: -0.3em;
    font-size: min(3.4vw, 15px);
    padding: min(1.5vw, 8px) min(4vw, 20px);
  }
}
/* homNews */
.homNews li {
  position: relative;
  padding-left: 5.5em;
  line-height: 1.4;
}
.homNews li:not(:last-child) {
  margin-bottom: min(0.83vw, 10px);
}
.homNews li a {
  color: var(--c-brown);
}
.homNews .homNews__pickup li span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background: #f6929b;
  font-size: min(1.08vw, 1.3rem);
  color: #fff;
  border-radius: 30vw;
  width: 5.4em;
  text-align: center;
  padding: min(0.25vw, 3px);
}
.homNews .homNews__pickup li a {
  font-weight: 600;
}
.homNews .homNews__list {
  margin-bottom: 0;
}
.homNews .homNews__list li span {
  color: #ad7c5f;
  position: absolute;
  left: 0;
  top: 0;
  font-size: min(1.25vw, 1.5rem);
  font-weight: 600;
}
@media (max-width: 767px) {
  .homNews li:not(:last-child) {
    margin-bottom: min(2vw, 10px);
  }
  .homNews .homNews__pickup li span {
    font-size: min(3.5vw, 1.3rem);
    padding: min(0.6vw, 3px);
  }
  .homNews .homNews__list li span {
    font-size: min(3.6vw, 1.5rem);
  }
}
/* homTime */
.homTime h2 {
  position: relative;
}
.homTime h2 p {
  margin: 0;
  font-size: min(1.16vw, 1.4rem);
  line-height: 1.3;
  position: absolute;
  left: min(12.5vw, 150px);
  top: 0;
  font-weight: normal;
}
.homTimeTable {
  width: 100%;
  margin: 0 0 min(0.4vw, 5px);
}
.homTimeTable thead th {
  background: var(--c-blueGreen);
  color: #fff;
  font-weight: 600;
  padding: min(0.4vw, 5px) min(0.83vw, 10px);
}
.homTimeTable tbody tr {
  background: #f1efe5;
  border-bottom: 1px solid #fff;
}
.homTimeTable tbody th, .homTimeTable tbody td {
  padding: min(0.4vw, 5px) min(0.83vw, 10px);
  font-weight: normal;
  text-align: center;
}
.homTime .homTime__note {
  margin: 0;
  text-align: right;
  font-size: min(1.16vw, 1.4rem);
}
@media (max-width: 767px) {
  .homTime h2 p {
    font-size: min(3.2vw, 1.2rem);
    position: relative;
    left: inherit;
    top: inherit;
  }
  .homTime h2 p br {
    display: none;
  }
  .homTimeTable {
    margin: 0 0 min(1vw, 5px);
    font-size: min(3.6vw, 1.5rem);
  }
  .homTimeTable thead th, .homTimeTable tbody th, .homTimeTable tbody td {
    padding: min(1vw, 5px) min(2vw, 10px);
  }
  .homTime .homTime__note {
    font-size: min(3.5vw, 1.3rem);
  }
}
/* homMenu */
.homMenu .homMenu__block {
  border-bottom: 1px solid #ddd;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  align-items: center;
  padding: min(0.83vw, 10px) 0;
}
.homMenu .homMenu__block:first-of-type {
  padding-top: 0;
}
.homMenu .homMenu__block h3 {
  font-weight: 600;
  width: 25%;
}
.homMenu .homMenu__block h3 img {
  width: auto;
  max-width: 100%;
}
.homMenu .homMenu__block ul {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  width: 70%;
}
.homMenu .homMenu__block ul li {
  width: 48%;
}
.homMenu .homMenu__block ul li a {
  display: block;
  border-radius: 30vw;
  color: #fff;
  background: #f3f3f3;
  padding: min(0.83vw, 10px) min(2vw, 30px);
  position: relative;
  text-align: center;
  font-weight: 600;
  line-height: 1.3;
  border-bottom: 3px solid #aaa;
}
.homMenu .homMenu__block ul li a::before {
  content: "";
  width: min(0.6vw, 8px);
  aspect-ratio: 1/1;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: min(1vw, 12px);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.homMenu .homMenu__block ul li.btn--gr a {
  background: #6abd81;
  border-color: #33994f;
}
.homMenu .homMenu__block ul li.btn--bl a {
  background: #668dce;
  border-color: #3b69b5;
}
@media (max-width: 767px) {
  .homMenu .homMenu__block {
    padding: min(2vw, 10px) 0;
  }
  .homMenu .homMenu__block ul {
    width: 76%;
  }
  .homMenu .homMenu__block ul li a {
    padding: min(2.5vw, 10px) min(8vw, 40px);
  }
  .homMenu .homMenu__block ul li a::before {
    width: min(1.6vw, 8px);
    right: min(2vw, 12px);
  }
}
/* homFeature */
.homFeature__wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.homFeature__main {
  width: 49%;
}
.homFeature__sub {
  width: 32%;
}
.homFeat__img {
  position: relative;
  height: min(16.67vw, 200px);
  overflow: hidden;
  background: #999;
}
.homFeat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homFeat__img .homFeat__num {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--ff-en);
  margin: 0;
  position: absolute;
  font-size: min(9.17vw, 11rem);
  line-height: 1;
  font-weight: 800;
  left: 0;
  bottom: 0;
  transform: translate(8%, 15%);
  z-index: 1;
}
.homFeat__img h3 {
  color: #fff;
  font-weight: 700;
  position: absolute;
  bottom: min(0.8vw, 10px);
  font-size: min(1.4vw, 2rem);
  line-height: 1.4;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.homFeat--01 .homFeat__img h3 {
  left: min(12.5vw, 150px);
}
.homFeat--02 .homFeat__img h3 {
  left: min(13.75vw, 165px);
}
.homFeature__main p {
  margin: min(1.66vw, 20px);
  line-height: 1.6;
}
.homFeature__main .homFeat__img::after {
  content: "";
  width: 100%;
  height: 60%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #333;
  background: linear-gradient(0deg, rgba(51, 51, 51, 0.7) 0%, rgba(51, 51, 51, 0) 100%);
}
.homFeature__sub .homFeat__img {
  height: min(12.5vw, 150px);
}
.homFeature__sub .homFeat__img .homFeat__num {
  font-size: min(7.5vw, 9rem);
}
.homFeature__sub .homFeat__img h3 {
  font-size: min(1.4vw, 2rem);
  left: min(12.5vw, 150px);
}
.homFeature__sub p {
  font-size: min(1.08vw, 1.3rem);
  margin: min(1.66vw, 20px);
}
@media (max-width: 767px) {
  .homFeature__main, .homFeature__sub {
    width: 100%;
    margin-bottom: 3vw;
  }
  .homFeat__img {
    height: 38vw;
  }
  .homFeat__img .homFeat__num {
    font-size: min(20vw, 11rem);
  }
  .homFeat__img h3 {
    bottom: inherit;
    top: 50%;
    transform: translateY(-50%);
    font-size: min(4vw, 1.8rem);
    text-align: center;
    width: 100%;
  }
  .homFeat--01 .homFeat__img h3, .homFeat--02 .homFeat__img h3 {
    left: 0;
  }
  .homFeature__main p {
    margin: min(4vw, 20px) 0;
  }
  .homFeature__main .homFeat__img::after {
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
  }
  .homFeature__sub .homFeat__img {
    height: min(30vw, 150px);
  }
  .homFeature__sub .homFeat__img .homFeat__num {
    font-size: min(18vw, 9rem);
  }
  .homFeature__sub .homFeat__img h3 {
    font-size: min(4vw, 1.8rem);
    left: 0;
  }
  .homFeature__sub p {
    font-size: min(3.4vw, 1.3rem);
    margin: min(4vw, 20px) 0;
  }
}
/* homBlog */
.homBlog h2 {
  position: relative;
}
.homBlog h2 .btnMore {
  right: max(-0.8vw, -10px);
  font-family: var(--ff-en);
}
.homBlog ul li {
  position: relative;
  padding-left: 1.8em;
  line-height: 1.5;
}
.homBlog ul li::before {
  content: "\f591";
  font-family: var(--ff-symbol);
  font-variation-settings: 'FILL'1;
  color: var(--c-blueGreen);
  position: absolute;
  left: 0;
  top: 0.08em;
  font-size: 1.5em;
  line-height: 1;
}
.homBlog ul li:not(:first-child) {
  margin-top: min(1vw, 12px);
}
.homBlog ul li a {
  color: var(--c-brown);
}
@media (max-width: 767px) {
  .homBlog h2 .btnMore {
    right: 0;
  }
  .homBlog ul li:not(:first-child) {
    margin-top: min(2.4vw, 12px);
  }
}
/* homStaff */
.homStaff__wrap {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.homStaff__wrap .homStaff__img {
  position: relative;
  width: 31%;
  background: #f3f3f3;
  overflow: hidden;
}
.homStaff__wrap .homStaff__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.homStaff__wrap .homStaff__img p {
  position: absolute;
  left: min(1.66vw, 20px);
  bottom: min(1.25vw, 15px);
  text-shadow: 2px 2px 2px white, -2px 2px 2px white, 2px -2px 2px white, -2px -2px 2px white;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1rem;
}
.homStaff__wrap .homStaff__img p span {
  font-size: min(2vw, 2.4rem);
}
.homStaff__wrap .homStaff__txt {
  width: 64%;
}
@media (max-width: 767px) {
  .homStaff__wrap {
    flex-direction: column-reverse;
  }
  .homStaff__wrap .homStaff__img {
    width: 100%;
    height: 60vw;
    margin-top: 3vw;
  }
  .homStaff__wrap .homStaff__img p {
    left: inherit;
    right: min(4vw, 20px);
    bottom: min(3vw, 15px);
  }
  .homStaff__wrap .homStaff__img p span {
    font-size: min(5.4vw, 2.4rem);
  }
  .homStaff__wrap .homStaff__txt {
    width: 100%;
  }
}
/* homPublish / youtube */
.homPublish h2 .btnMore {
  left: min(21.67vw, 260px);
}
.homYoutube h2 .btnMore {
  left: min(13.3vw, 160px);
}
.btnMore .pc {
  display: block !important;
}
.btnMore .sp {
  display: none !important;
}
@media (max-width: 767px) {
  .homPublish h2 .btnMore, .homYoutube h2 .btnMore {
    left: inherit;
    right: 0;
  }
  .btnMore .pc {
    display: none !important;
  }
  .btnMore .sp {
    display: block !important;
    font-family: var(--ff-en);
  }
}
/* ----------------------------------------------------
module(common)
---------------------------------------------------- */
/* vusial */
.visual {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  height: min(22.5vw, 270px);
  border-radius: min(1.5vw, 18px);
  background: url("../../img/page/common/img-visual-01.png") center center / cover no-repeat;
}
.visual h2 {
  font-size: min(3vw, 3.6rem);
  font-weight: 600;
  padding-top: 1em;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (max-width: 767px) {
  .visual {
    height: min(30vw, 270px);
    border-radius: 0;
  }
  .visual h2 {
    font-size: min(6vw, 4rem);
    padding-top: 0;
  }
}
/* topicPath */
ol.topicPath {
  margin: min(0.83vw, 10px) auto;
  width: 96%;
  max-width: 1320px;
  font-size: min(1vw, 1.2rem);
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
}
ol.topicPath li:not(:first-child) {
  padding: 0 0 0 min(1.25vw, 15px);
  margin-left: min(0.4vw, 5px);
  position: relative;
}
ol.topicPath li:not(:first-child)::before {
  content: "";
  width: min(0.5vw, 6px);
  height: min(0.5vw, 6px);
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
ol.topicPath li a {
  color: #333;
}
@media (max-width: 767px) {
  ol.topicPath {
    margin: min(1vw, 10px) auto;
    font-size: min(3vw, 1rem);
    flex-wrap: wrap;
  }
  ol.topicPath li:not(:first-child) {
    padding: 0 0 0 3vw;
    margin-left: 1vw;
  }
  ol.topicPath li:not(:first-child)::before {
    width: 1.2vw;
    height: 1.2vw;
  }
}
/* layout */
#mainContent {
  margin: 0 auto;
  width: 96%;
  max-width: 1320px;
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 2%;
}
#mainContent .content {
  background: #fff;
  border: 1px solid #d4c5b3;
  border-radius: min(1.25vw, 15px);
  padding: min(3.3vw, 40px) min(3.25vw, 39px) min(1.66vw, 20px);
  margin-bottom: 2%;
}
.content--1 {
  width: 100%;
}
.content--1_2 {
  flex-grow: 1;
  width: 49%;
}
.content--1_3 {
  flex-grow: 1;
  width: 32%;
}
.content--2_3 {
  flex-grow: 1;
  width: 66%;
}
@media (max-width: 767px) {
  #mainContent {
    padding-bottom: 10vw;
  }
  #home #mainContent {
    padding-bottom: 0;
  }
  #mainContent .content {
    border-radius: min(3vw, 15px);
    padding: min(7vw, 40px) min(5vw, 40px) min(4vw, 20px);
  }
  .content--1_2, .content--1_3, .content--2_3 {
    width: 100%;
  }
  .content--1_2.content--full {
    flex-grow: 1;
    width: 49%;
  }
  .content--1_3.content--full {
    flex-grow: 1;
    width: 32%;
  }
  .content--2_3.content--full {
    flex-grow: 1;
    width: 66%;
  }
}
/* hx */
#mainContent :is(h1, h2, h3, h4, h5) {
  line-height: 1.5;
}
.pageTitle {
  text-align: center;
  width: 96%;
  margin: min(1.25vw, 15px) auto min(3.3vw, 40px);
  font-size: min(3.3vw, 4rem);
  line-height: 1.3;
  letter-spacing: 0.2rem;
}
.pageTitle span {
  display: block;
  font-family: var(--ff-en);
  color: var(--c-orange);
  font-weight: 600;
  font-size: min(1.5vw, 1.8rem);
  letter-spacing: normal;
}
.hA {
  font-size: min(1.83vw, 2.2rem);
  font-weight: 600;
  margin-bottom: min(1.66vw, 20px);
  position: relative;
  background: url("../../img/common/bg-title-01.png") left bottom repeat-x;
  padding: 0 0 min(1.66vw, 20px) min(3.3vw, 40px);
}
.hA::before {
  content: "";
  background: url("../../img/common/ic-title-01.svg") center center / cover no-repeat;
  aspect-ratio: 155/150;
  width: min(2.5vw, 30px);
  position: absolute;
  left: 0;
  top: 0.15em;
}
.hA:first-child {
  margin-top: max(-0.83vw, -10px);
}
.hB {
  font-size: min(1.6vw, 2rem);
  background: var(--bg-orange);
  font-weight: 600;
  padding: min(0.83vw, 10px) min(1.66vw, 20px);
  margin: min(2vw, 24px) 0 min(1.25vw, 15px)
}
.hC {
  font-size: min(1.6vw, 2rem);
  color: var(--c-orange);
  font-weight: 600;
  padding-left: 1em;
  position: relative;
  margin: min(2vw, 24px) 0 min(0.83vw, 10px);
}
.hC::before {
  content: "";
  width: 5px;
  height: 100%;
  background: var(--c-red);
  position: absolute;
  left: 0;
  top: 0;
}
.flexConent .hC:first-child, .flexConent .hD:first-child, .flexConent .hE:first-child, .floatBox .hD:first-of-type, .decBox .hE:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .pageTitle {
    margin: min(3vw, 15px) auto min(6vw, 40px);
    font-size: min(6vw, 4rem);
  }
  .pageTitle span {
    font-size: min(3.8vw, 1.8rem);
  }
  .hA {
    font-size: min(4.5vw, 2.2rem);
    margin-bottom: min(4vw, 24px);
    padding: 0 0 min(3vw, 20px) min(8vw, 40px);
  }
  .hA::before {
    width: min(6vw, 30px);
  }
  .hA:first-child {
    margin-top: max(-2vw, -10px);
  }
  .hB {
    font-size: min(4.2vw, 2rem);
    padding: min(2vw, 10px) min(4vw, 20px);
    margin: min(5vw, 24px) 0 min(3vw, 15px)
  }
  .hC {
    font-size: min(4vw, 2rem);
    margin: min(5vw, 24px) 0 min(2vw, 10px);
  }
}
/* link  / list */
.telLink {
  padding-left: 1.5em;
  font-size: min(2vw, 2.4rem);
}
.telLink::before {
  color: var(--c-orange);
  font-size: min(2vw, 2.4rem);
}
a.linkArrow {
  display: inline-block;
  padding: min(0.83vw, 10px) min(4.16vw, 50px);
  text-align: center;
  background: #ffa128;
  color: #fff;
  position: relative;
  border-radius: 30vw;
  font-weight: 600;
  border-bottom: 3px solid #d47700;
  line-height: 1.5;
}
a.linkArrow::after {
  content: "";
  position: absolute;
  right: min(1.25vw, 15px);
  top: 50%;
  width: min(0.66vw, 8px);
  aspect-ratio: 1/1;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
a.linkArrow.linkExternal::after {
  content: none;
}
a.linkExternal span::after {
  color: #fff;
  font-weight: 400;
}
ul.listDot li::before {
  background: var(--c-orange);
}
ul.listCheck li::before {
  color: var(--c-orange);
}
.listData dt {
  color: var(--c-orange);
  margin-top: min(0.4vw, 5px);
}
@media (max-width: 767px) {
  .telLink {
    font-size: 5vw;
  }
  .telLink::before {
    font-size: 1.3em;
  }
  a.linkArrow {
    padding: 3vw 5vw;
    min-width: 100%;
  }
  a.linkArrow::after {
    width: 2vw;
    height: 2vw;
    right: 3vw;
  }
  .listData dt {
    margin-top: 1vw;
  }
}
/* decBox */
.decBox {
  padding: min(2.5vw, 30px);
  margin-bottom: min(2.5vw, 30px);
}
.decBox .hC:first-of-type {
  margin-top: 0;
}
.decBox p:last-child, .decBox div:last-child, .decBox ul:last-child, .decBox ol:last-child, .decBox dl:last-child, .decBox table:last-child {
  margin-bottom: 0 !important;
}
.decBox01 {
  background: #f9edd7;
}
.decBox02 {
  background: #dff3f1;
}
.decBox03 {
  background: #fff;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  .decBox {
    padding: min(4vw, 30px);
    margin-bottom: min(4vw, 30px);
  }
}
/* p */
.strongA {
  background: linear-gradient(transparent 60%, #ffff66 60%);
}
.strongB {
  font-size: 120%;
}
/* table */
.tblA th, .tblA td, .tblB th, .tblB td, .tblC th, .tblC td, .tblD th, .tblD td, .tblE th, .tblE td {
  border: 1px solid #d4c5b3;
  padding: min(0.83vw, 10px);
}
.tblA th, .tblB th, .tblC th, .tblD th, .tblE th {
  background: #f9edd7;
}
.tblA td, .tblB td, .tblC td, .tblD td, .tblE td {
  background: #fff;
}
.tblB th {
  text-align: left;
}
.tblB td.inrTblB table tr {
  border-bottom: 1px solid #dadac6;
}
.tblB td.inrTblB table td {
  border-left: 1px solid #dadac6;
}
.tblC {
  border-top: 1px solid #dadac6;
}
.tblD td:first-child, .tblE tr:nth-child(even) th {
  background: #dcf0c9;
  color: var(--c-green);
}
.tblD td:first-child {
  font-weight: 600;
  text-align: center;
}
.tblE tr:nth-child(even) td {
  background: #eff7e7;
}
@media (max-width: 767px) {
  /* table */
  .tblA th, .tblA td {
    padding: 2.5vw;
  }
  .tblA.tblVertical {
    border-bottom: 1px solid #dadac6;
  }
  .tblB {
    border-bottom: 1px solid #dadac6;
  }
  .tblB td.inrTblB table th {
    background: #dcf0c9;
    color: var(--c-green);
    text-align: left;
    font-weight: 600;
  }
  .tblD th {
    padding: inherit;
  }
  .tblD td {
    padding: inherit;
  }
  .tblD {
    border-top: 1px solid #dadac6;
    border-bottom: 1px solid #dadac6;
  }
  .tblD td:before {
    padding: 3vw 1.5vw;
    background: #f9edd7;
    color: var(--c-orange);
  }
  .tblD td span {
    padding: 3vw;
  }
  .tblD td:first-child {
    padding: 3vw;
  }
  .tbl-scroll::-webkit-scrollbar-track {
    background: #f3f3f3;
  }
  .tbl-scroll::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
  .tbl-scroll .tblE th::before {
    background: #ccc;
  }
  .tbl-scroll .tblE th::after {
    background: #ccc;
  }
}
/* step */
.stpWrap {}
.stpCont {
  position: relative;
  padding: 1em 0 0 min(12.5vw, 150px);
  min-height: min(10vw, 120px);
}
.stpCont {
  padding-bottom: min(3.3vw, 40px);
}
.stpCont:not(:last-child)::before {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--c-orange);
  position: absolute;
  left: min(3.75vw, 45px);
  top: 0;
}
.stpCont .stp__num {
  position: absolute;
  left: 0;
  top: 0;
  aspect-ratio: 1/1;
  width: min(7.5vw, 90px);
  border-radius: 50%;
  border: 1px solid var(--c-orange);
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  color: var(--c-orange);
  font-family: var(--ff-en);
  background: var(--bg-orange-01);
}
.stpCont .stp__num p {
  margin: 0;
  text-align: center;
  color: var(--c-orange);
  font-size: min(1.66vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
}
.stpCont .stp__num p span {
  display: block;
  font-size: min(1.25vw, 1.5rem);
}
.stpCont__content {
  display: flex;
  display: -webkit-flex;
  column-gap: min(3.3vw, 40px);
}
.stpCont__content h3 {
  font-size: min(1.66vw, 2rem);
  color: var(--c-orange);
  margin-bottom: min(1.25vw, 15px);
  line-height: 1.5;
  font-weight: 500;
}
.stpCont__img {
  width: 35%;
}
.stpCont__txt {
  width: 60%;
}
.stpNoImg .stpCont__txt {
  width: 100%;
}
@media (max-width: 767px) {
  .stpCont {
    padding: 0 0 0 min(20vw, 200px);
    min-height: min(20vw, 120px);
  }
  .stpCont:not(:last-child) {
    padding-bottom: min(10vw, 60px);
  }
  .stpCont:not(:last-child)::before {
    left: min(7.5vw, 50px);
  }
  .stpCont .stp__num {
    width: min(15vw, 100px);
  }
  .stpCont .stp__num p {
    font-size: min(4vw, 2.4rem);
  }
  .stpCont .stp__num p span {
    font-size: min(3vw, 1rem);
  }
  .stpCont__content {
    display: block;
  }
  .stpCont__content h3 {
    font-size: min(4.2vw, 2.4rem);
    margin-bottom: min(3vw, 20px);
  }
  .stpCont__content .linkArrow {
    width: 100%;
  }
  .stpCont__img {
    width: 100%;
    margin-top: 5vw;
  }
  .stpCont__txt {
    width: 100%;
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
pcSetting
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (min-width:768px) {
  /* ----------------------------------------------------
common(pc)
---------------------------------------------------- */
  /* hover */
  a:hover {
    opacity: .8 !important;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
  }
  .clickable:hover {
    opacity: .8 !important;
    transition: all 0.2s ease-in-out;
  }
  .wm-rl {
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  /* ----------------------------------------------------
header(pc)
---------------------------------------------------- */
  .btn_FixedReserve {
    position: fixed;
    right: 0;
    top: 200px;
    z-index: 90;
  }
  .btn_FixedReserve a {
    color: #fff;
    background: var(--c-green);
    display: block;
    font-size: min(2vw, 2.4rem);
    font-weight: 700;
    padding: min(1.25vw, 15px) min(1.66vw, 20px) min(2.5vw, 30px);
    border-radius: min(0.6vw, 8px) 0 0 min(0.6vw, 8px);
    line-height: 1;
  }
  .btn_FixedReserve a span {
    padding-top: 1.8em;
  }
  .btn_FixedReserve a span::before {
    font-size: 1.4em;
    font-weight: 400 !important;
  }
  #header {
    position: sticky;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 10;
    transition: 0.3s all ease-in-out;
  }
  #header .inrHeader {
    width: 96%;
    max-width: 1320px;
    margin-inline: auto;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    height: min(8.75vw, 105px);
  }
  #header .inrHeader h1 {
    position: relative;
    transition: 0.3s all ease-in-out;
  }
  #header .inrHeader h1 a {
    color: var(--c-orange-01);
  }
  #header .inrHeader h1 span {
    display: block;
    font-size: min(1.16vw, 1.4rem);
    font-weight: 600;
  }
  #header .inrHeader h1 img {
    width: min(30.42vw, 365px);
  }
  #header .inrHeader h1 img.hd-lgMark {
    position: absolute;
    left: 0;
    top: 50%;
    width: min(5.83vw, 70px);
    aspect-ratio: 1/1;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: 0.3s all ease-in-out;
    z-index: 100;
  }
  #header.scroll {
    background: rgba(244, 243, 237, 0.9);
  }
  #header.scroll .inrHeader {
    height: min(7.5vw, 90px);
  }
  #header.scroll .inrHeader h1 {
    padding-left: min(6.6vw, 80px);
  }
  #header.scroll .inrHeader h1 img.hd-lgMark {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  #header .hd__info {
    display: flex;
    display: -webkit-flex;
    column-gap: min(1.6vw, 20px);
    align-items: center;
  }
  #header .hd__info .hd__sns {
    display: flex;
    display: -webkit-flex;
    column-gap: min(0.4vw, 5px);
  }
  #header .hd__info .hd__sns li a {
    width: min(4.16vw, 50px);
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid var(--c-orange);
  }
  #header .hd__info .hd__sns li a img {
    width: 55%;
  }
  #header .hd__tel {
    font-size: min(2.5vw, 3rem);
    font-weight: 600;
    text-align: right;
  }
  #header .hd__tel p {
    line-height: 1.2;
  }
  #header .hd__tel__small {
    font-size: min(1.16vw, 1.4rem);
    font-weight: normal;
  }
  .navWrapper {
    width: 96%;
    max-width: 1320px;
    margin-inline: auto;
    background: var(--bg-orange);
    border: 2px solid var(--c-orange-02);
    border-radius: min(1.6vw, 20px);
    padding: min(0.83vw, 10px);
    position: relative;
  }
  .navWrapper .lgMark {
    margin: 0;
    width: min(6vw, 100px);
    position: absolute;
    right: -5%;
    top: min(1.5vw, 60px);
    transform: translate(-50%, -50%);
  }
  #navGlobal {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: min(0.4vw, 5px) auto 0;
  }
  #navGlobal li {
    position: relative;
    width: calc(33.33333% - min(0.4vw, 5px));
    margin-top: min(0.4vw, 5px);
  }
  #navGlobal li a {
    display: block;
    background: #fff;
    border: 1px solid var(--c-orange);
    border-radius: min(0.6vw, 8px);
    text-align: center;
    font-size: min(1.83vw, 2.2rem);
    font-weight: 700;
    padding: min(1vw, 12px) min(3.3vw, 40px);
    position: relative;
  }
  #navGlobal li a::before {
    content: "";
    width: min(1vw, 12px);
    border-top: 2px solid var(--c-orange);
    border-right: 2px solid var(--c-orange);
    aspect-ratio: 1/1;
    position: absolute;
    right: min(2vw, 24px);
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  #navGlobal li a span {
    position: relative;
  }
  #navGlobal li a span::before {
    content: "";
    width: min(2.5vw, 30px);
    aspect-ratio: 1/1;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-175%, -50%);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  #navGlobal li a span.navMenu::before {
    background-image: url("../../img/common/ic-navMenu-01.svg");
  }
  #navGlobal li a span.navFirst::before {
    background-image: url("../../img/common/ic-navFirst-01.svg");
  }
  #navGlobal li a span.navAbout::before {
    background-image: url("../../img/common/ic-navAbout-01.svg");
  }
  #navGlobal li a span.navStaff::before {
    background-image: url("../../img/common/ic-navStaff-01.svg");
  }
  #navGlobal li a span.navAccess::before {
    background-image: url("../../img/common/ic-navAccess-01.svg");
  }
  #navGlobal li a span.navRecruit::before {
    background-image: url("../../img/common/ic-navRecruit-01.svg");
  }
  #navGlobal li a:hover, #navGlobal li a.current, #navGlobal li a.parentsLink {
    background: var(--c-orange);
    color: #fff;
  }
  #navGlobal li a:hover span.navMenu::before, #navGlobal li a.current span.navMenu::before, #navGlobal li a.parentsLink span.navMenu::before {
    background-image: url("../../img/common/ic-navMenu-02.svg");
  }
  #navGlobal li a:hover span.navFirst::before, #navGlobal li a.current:hover span.navFirst::before, #navGlobal li a.parentsLink span.navFirst::before {
    background-image: url("../../img/common/ic-navFirst-02.svg");
  }
  #navGlobal li a:hover span.navAbout::before, #navGlobal li a.current span.navAbout::before, #navGlobal li a.parentsLink span.navAbout::before {
    background-image: url("../../img/common/ic-navAbout-02.svg");
  }
  #navGlobal li a:hover span.navStaff::before, #navGlobal li a.current span.navStaff::before, #navGlobal li a.parentsLink span.navStaff::before {
    background-image: url("../../img/common/ic-navStaff-02.svg");
  }
  #navGlobal li a:hover span.navAccess::before, #navGlobal li a.current span.navAccess::before, #navGlobal li a.parentsLink span.navAccess::before {
    background-image: url("../../img/common/ic-navAccess-02.svg");
  }
  #navGlobal li a:hover span.navRecruit::before, #navGlobal li a.current span.navRecruit::before, #navGlobal li a.parentsLink span.navRecruit::before {
    background-image: url("../../img/common/ic-navRecruit-02.svg");
  }
  .navChild {
    display: none;
  }
  /* ----------------------------------------------------
home(pc)
---------------------------------------------------- */
  /*point*/
  table.schedule td br {
    display: none
  }
  table.schedule th br.sp_br {
    display: none !important;
  }
  /* ----------------------------------------------------
localnavi(pc)
---------------------------------------------------- */
  #navLocal {
    width: 90%;
    max-width: 1320px;
    margin: max(-1.25vw, -15px) auto min(3.3vw, 40px);
  }
  #navLocal ul {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: min(0.83vw, 10px);
    font-size: min(1.3vw, 1.6rem);
  }
  #navLocal ul li {
    margin: 0 0 min(0.4vw, 5px);
  }
  #navLocal ul li a {
    display: block;
    padding: min(1vw, 12px) min(2.5vw, 30px);
    background: var(--c-orange);
    color: #fff;
    min-width: min(15.8vw, 190px);
    font-weight: 600;
    border-radius: 30vw;
    text-align: center;
  }
  #navLocal ul li a.current, #navLocal ul.first li a.parentsLink, #navLocal ul li a:hover {
    background: var(--c-orange-01);
    position: relative;
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
tabletSetting
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 1200px) and (min-width: 768px) {}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
spSetting
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 767px) {
  body {
    width: 100%;
    position: relative;
    padding-top: 15vw;
  }
  /* ----------------------------------------------------
header(sp)
---------------------------------------------------- */
  #header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 200;
    width: 100%;
    height: 15vw;
    background: var(--bg-base);
    display: flex;
    display: -webkit-flex;
    align-items: center;
    padding: 0 2vw;
  }
  #header #hd-logo {
    display: block;
    position: relative;
    padding-left: 12vw;
  }
  #header #hd-logo span {
    font-size: min(2.6vw, 9px);
    line-height: 1;
    display: block;
  }
  #header #hd-logo img {
    height: 5.5vw;
    width: auto;
  }
  #header #hd-logo img.hd-lgMark {
    position: absolute;
    left: 0;
    top: 50%;
    height: 10vw;
    aspect-ratio: 1/1;
    transform: translateY(-50%);
  }
  #header .sp-btnTel {
    position: absolute;
    width: 15vw;
    aspect-ratio: 1/1;
    right: 15vw;
    top: 0;
    z-index: 120;
    background: var(--bg-orange);
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
  }
  #header .sp-btnTel span {
    color: var(--c-orange);
    font-size: 8vw;
    line-height: 1;
    margin: 0
  }
  #header .sp-btnTel span.fill {
    font-variation-settings: 'FILL'1;
  }
  #btnGlobal {
    position: absolute;
    width: 15vw;
    aspect-ratio: 1/1;
    right: 0;
    top: 0;
    z-index: 120;
    background: var(--c-orange);
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    align-items: center;
  }
  #btnGlobal .btnWrapGlobal {
    position: relative;
    width: 7vw;
    height: 5vw;
  }
  #btnGlobal .btnLine {
    height: 3px;
    background: #fff;
    position: absolute;
    right: 0;
    width: 100%;
  }
  #btnGlobal .btnLine.btnLineT {
    top: 0;
  }
  #btnGlobal .btnLine.btnLineM {
    top: 50%;
    transform: translateY(-50%);
  }
  #btnGlobal .btnLine.btnLineB {
    bottom: 0;
  }
  #btnGlobal.active .btnLine {
    background: #fff;
  }
  #btnGlobal.active .btnLine.btnLineT {
    display: none;
  }
  #btnGlobal.active .btnLine.btnLineM {
    transform: translateY(0) rotate(45deg);
  }
  #btnGlobal.active .btnLine.btnLineB {
    transform: rotate(-45deg);
    bottom: inherit;
    top: 50%;
  }
  #btnGlobal .btnLine.btnLineM, #btnGlobal .btnLine.btnLineB {
    -moz-transition: all, ease-in-out, 0.3s;
    -o-transition: all, ease-in-out, 0.3s;
    -webkit-transition: all, ease-in-out, 0.3s;
    transition: all, ease-in-out, 0.3s;
  }
  #grandMenu {
    background: var(--c-orange);
    width: 100%;
    position: fixed;
    z-index: 100;
    left: 0;
    top: 15vw;
    display: none;
    overflow: auto;
    padding: 5vw 5vw;
  }
  #grandMenu a {
    color: #fff;
  }
  #grandMenu #navGlobal li {
    font-size: min(4.2vw, 1.8rem);
    border-bottom: 2px dotted #fff;
    line-height: 1;
  }
  #grandMenu #navGlobal li a {
    display: block;
    padding: 4vw 0;
    position: relative;
  }
  #grandMenu #navGlobal li a::after {
    content: "";
    position: absolute;
    right: 2vw;
    top: 50%;
    width: 2vw;
    height: 2vw;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg) translateX(-50%);
  }
  #grandMenu #navGlobal li.btn-navChild a::after {
    transform: rotate(135deg);
  }
  #grandMenu #navGlobal li.btn-navChild .navChild {
    display: none;
  }
  #grandMenu #navGlobal li.btn-navChild .navChild li {
    border-bottom: none;
    font-size: min(4vw, 1.6rem);
    padding-left: 3.7vw;
  }
  #grandMenu #navGlobal li.btn-navChild .navChild a::after {
    transform: rotate(45deg);
  }
  #header .hd__sns {
    position: fixed;
    left: 45vw;
    bottom: 0;
    width: 55vw;
    height: 15vw;
    display: flex;
    display: -webkit-flex;
    justify-content: center;
    column-gap: 5vw;
    align-items: center;
    background: #fff;
    padding-right: 15vw;
  }
  #header .hd__sns li img {
    width: 8vw;
  }
  .navWrapper .lgMark {
    display: none;
  }
  .btn_FixedReserve {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 45vw;
    z-index: 100;
    margin: 0;
  }
  .btn_FixedReserve a {
    color: #fff;
    background: var(--c-green);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: min(5vw, 2.4rem);
    font-weight: 600;
    height: 15vw;
    line-height: 1;
  }
  .btn_FixedReserve a span {
    padding-top: 0;
    padding-left: 2em;
  }
  .btn_FixedReserve a span::before {
    font-size: 1.5em;
    font-weight: 400 !important;
    left: 0;
    top: 50%;
    transform: translateY(-50%) !important;
  }
  /* -----------------------------------------------------
 navLocal(sp)
------------------------------------------------------- */
  .col-reverse {
    display: flex;
    display: -webkit-flex;
    flex-direction: column-reverse;
  }
  #navLocal {
    width: 100%
  }
  #navLocal ul {
    margin: 0;
  }
  #navLocal ul li a {
    display: block;
    color: #fff;
    font-size: 4vw;
    padding: 3vw 4vw;
    border-bottom: 1px solid #fff;
    position: relative;
    background: var(--c-orange);
  }
  #navLocal ul li a::after {
    content: "";
    width: 2vw;
    height: 2vw;
    margin-top: -0.5vw;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    position: absolute;
    right: 4vw;
    top: 50%;
    transform: rotate(45deg);
  }
  #navLocal ul li a.current, #navLocal ul.first li a.parentsLink {
    background: var(--bg-orange);
    color: var(--c-orange);
    font-weight: 600;
  }
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

faq

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.listQ li a {
  display: block;
  padding: min(1vw, 12px) 0 min(1vw, 12px) 2.25em;
  border-bottom: 1px dashed #ccc;
  position: relative;
  line-height: 1.5;
}
.listQ li a:hover {
  background: var(--bg-base);
}
.listQ li a::before {
  content: "";
  width: 1.7em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--c-blueGreen);
  position: absolute;
  left: 0;
  top: 0.8em;
}
.listQ li a::after {
  content: "Q";
  font-family: var(--ff-en);
  color: #fff;
  position: absolute;
  left: 0.4em;
  top: 1.15em;
  line-height: 1;
  font-weight: 600;
}
.faq__category {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2%;
  justify-content: center;
  padding: min(3.3vw, 40px);
  background: var(--bg-orange-01);
  margin-top: min(3.3vw, 40px);
  border-radius: min(1.6vw, 20px);
  width: 100%;
}
.faqCat__title {
  width: 100%;
  text-align: center;
  font-family: var(--ff-en);
  font-size: min(2.5vw, 3rem);
  font-weight: 600;
  color: var(--c-orange);
  margin: 0 auto min(1.66vw, 20px);
}
.faq__category .faq__list .hA {
  font-size: min(1.5vw, 1.8rem);
  padding-bottom: min(1.25vw, 15px);
  margin-bottom: min(0.4vw, 5px);
}
.faq__category .faq__list .hA::before {
  top: 0;
}
.faq__a h2 {
  font-size: min(1.6vw, 2rem);
  background: var(--bg-orange);
  font-weight: 600;
  padding: min(0.83vw, 10px) min(1.66vw, 20px);
  margin: min(2vw, 24px) 0 min(1.25vw, 15px)
}
.faq__a h3 {
  font-size: min(1.6vw, 2rem);
  color: var(--c-orange);
  font-weight: 600;
  padding-left: 1em;
  position: relative;
  margin: min(2vw, 24px) 0 min(0.83vw, 10px);
}
.faq__a h3::before {
  content: "";
  width: 5px;
  height: 100%;
  background: var(--c-red);
  position: absolute;
  left: 0;
  top: 0;
}
.faq__a h4 {
  font-size: min(1.5vw, 1.8rem);
  font-weight: 600;
  margin: min(2vw, 24px) 0 min(0.83vw, 10px);
  color: var(--c-orange);
}
.faq__a h5 {
  font-size: min(1.5vw, 1.8rem);
  font-weight: 600;
  margin: 1em 0 min(0.83vw, 10px);
}
.faq__a figure {
  margin: min(2.5vw, 30px) auto;
}
.faq__a img {
  width: auto;
  max-width: 100%;
}
.faq__a ul {
  list-style: inherit;
  margin-left: 1.5em;
}
.faq__a ol {
  list-style: decimal;
  margin-left: 1.5em;
}
.faq__a blockquate {
  background: #f3f3f3;
  border: 1px solid #ccc;
  display: block;
  padding: min(1.66vw, 20px) min(2.5vw, 30px);
  border-radius: min(1.25vw, 15px);
}
@media (max-width: 767px) {
  .listQ {
    margin-bottom: 3vw;
  }
  .listQ li a {
    padding: min(2.4vw, 12px) 0 min(2.4vw, 12px) 2.25em;
    line-height: 1.5;
  }
  .listQ li a::before {
    left: 0;
    top: 0.55em;
  }
  .listQ li a::after {
    left: 0.4em;
    top: 0.85em;
  }
  .faq__list a.linkArrow {
    min-width: inherit;
    width: 60%;
  }
  .faq__category {
    display: block;
    padding: min(5vw, 40px) min(3vw, 40px) min(3vw, 40px);
    margin-top: min(6vw, 40px);
    border-radius: min(4vw, 20px);
  }
  .faqCat__title {
    font-size: min(5vw, 3rem);
    margin: 0 auto min(3vw, 20px);
  }
  .faq__category .listQ li {
    font-size: min(3.6vw, 1.4rem);
  }
  .faq__category .faq__list .hA {
    font-size: min(4vw, 1.8rem);
    padding-bottom: min(3vw, 15px);
    margin-bottom: min(2vw, 5px);
  }
  .faq__a h2 {
    font-size: min(4.2vw, 2rem);
    padding: min(2vw, 10px) min(4vw, 20px);
    margin: min(5vw, 24px) 0 min(3vw, 15px)
  }
  .faq__a h3 {
    font-size: min(4vw, 2rem);
    margin: min(5vw, 24px) 0 min(2vw, 10px);
  }
  .faq__a h4 {
    font-size: min(4vw, 2rem);
    margin: min(5vw, 24px) 0 min(2vw, 10px);
  }
  .faq__a h5 {
    font-size: min(4vw, 2rem);
    margin: 1em 0 min(2vw, 10px);
  }
  .faq__a figure {
    margin: min(5vw, 30px) auto;
  }
  .faq__a blockquate {
    padding: min(4vw, 20px) min(5vw, 30px);
    border-radius: min(3vw, 15px);
  }
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

column base

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#colFlex {
  align-items: flex-start;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#colMain {
  width: 72%;
}
#colSide {
  width: 25%;
}
#colSide .content {
  padding: min(2.5vw, 30px) min(1.66vw, 20px) min(1.66vw, 20px);
  margin-bottom: min(1.66vw, 20px);
}
#colSide .content .hA {
  margin-bottom: min(0.8vw, 10px);
}
#colSide .content ul {
  margin: 0;
}
#colSide .content ul li {
  border-bottom: 1px dashed var(--c-orange-02);
  line-height: 1.5;
}
#colSide .content ul li a {
  display: block;
  padding: min(0.83vw, 10px) 0;
}
#colSide .content ul li a:hover {
  background: #f3f3f3;
}
#colSide .content ul li ul {
  margin: 0 0 min(0.83vw, 10px) 1em;
}
#colSide .content ul li ul li {
  border-bottom: 0;
}
#colSide .content ul li ul li a {
  padding: min(0.4vw, 5px);
}
#colSide .content .navSide__inr {
  padding: min(0.83vw, 10px) 0;
}
#colSide .content .navSide__inr select {
  width: 100%;
  padding: min(0.4vw, 5px);
}
#colSide .content form {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#colSide .content input {
  margin: 0;
  height: min(3vw, 36px);
  outline: none;
  width: 80%;
}
#colSide .content button {
  margin: 0;
  height: min(3vw, 36px);
  outline: none;
  width: 19%;
  padding: 0;
  border: none;
  background: var(--c-orange);
  color: #fff;
  border-radius: min(0.4vw, 5px);
}
#colMain .colPostFlex {
  display: flex;
  display: -webkit-flex;
  column-gap: 3%;
  flex-wrap: wrap;
}
.postIndex {
  width: calc(calc(100% - 6%) / 3);
  margin: 1.5% 0;
}
.postIndex a {
  color: var(--c-brown);
}
.postIndex h2 {
  font-size: min(1.5vw, 1.8rem);
  font-weight: 600;
  margin-bottom: min(0.83vw, 10px);
  color: var(--c-orange);
}
.postIndex .postThum {
  overflow: hidden;
  aspect-ratio: 16/9;
  margin-bottom: min(0.83vw, 10px);
}
.postIndex .postThum img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: min(0.83vw, 10px);
}
.postIndex .postDate {
  font-size: min(1vw, 1.2rem);
  font-weight: 600;
  font-family: var(--ff-en);
}
.postIndex .postEx {
  font-size: min(1.16vw, 1.4rem);
  line-height: 1.5;
}
.newsList li {
  border-bottom: 1px dashed var(--c-orange);
  padding: min(1.25vw, 15px) 0;
}
.newsList li span {
  display: block;
  font-family: var(--ff-en);
  font-weight: 600;
  line-height: 1.4;
  font-size: min(1.16vw, 1.4rem);
}
.newsList li a {
  display: block;
}
.wp-pagenavi {
  margin-top: min(2.5vw, 30px);
  text-align: center;
}
/* parts */
.postDate {
  font-size: min(1.16vw, 1.4rem);
  margin: 0;
}
.postCat {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  column-gap: min(0.83vw, 10px);
  flex-wrap: wrap;
  font-size: min(1.16vw, 1.4rem);
}
/* single */
.postHead .postDate {
  padding-left: min(3.3vw, 40px)
}
.postBody h2 {
  font-size: min(1.6vw, 2rem);
  background: var(--bg-orange);
  font-weight: 600;
  padding: min(0.83vw, 10px) min(1.66vw, 20px);
  margin: min(2vw, 24px) 0 min(1.25vw, 15px)
}
.postBody h3 {
  font-size: min(1.6vw, 2rem);
  color: var(--c-orange);
  font-weight: 600;
  padding-left: 1em;
  position: relative;
  margin: min(2vw, 24px) 0 min(0.83vw, 10px);
}
.postBody h3::before {
  content: "";
  width: 5px;
  height: 100%;
  background: var(--c-red);
  position: absolute;
  left: 0;
  top: 0;
}
.postBody h4 {
  font-size: min(1.5vw, 1.8rem);
  font-weight: 600;
  margin: min(2vw, 24px) 0 min(0.83vw, 10px);
  color: var(--c-orange);
}
.postBody h5 {
  font-size: min(1.5vw, 1.8rem);
  font-weight: 600;
  margin: 1em 0 min(0.83vw, 10px);
}
.postBody figure {
  margin: min(2.5vw, 30px) auto;
}
.postBody img {
  width: revert-layer;
  max-width: 100%;
}
.postBody ul {
  list-style: disc;
  padding-left: 1.5em;
}
.postBody ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.postBody img.aligncenter {
  display: block;
  margin-inline: auto;
}
.postNav {
  margin-top: min(3.3vw, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: min(1.66vw, 20px);
  grid-row-gap: 0px;
}
.postNav p {
  margin: 0;
}
.prevPostNav {
  grid-area: 1 / 1 / 2 / 2;
}
.backPostNav {
  grid-area: 1 / 2 / 2 / 3;
}
.nextPostNav {
  grid-area: 1 / 3 / 2 / 4;
  text-align: right;
}
.prevPostNav a {
  padding-left: 1em;
  position: relative;
}
.nextPostNav a {
  padding-right: 1em;
  position: relative;
}
.prevPostNav a::before, .nextPostNav a::before {
  content: "";
  width: min(1vw, 12px);
  aspect-ratio: 1/1;
  border-top: 2px solid var(--c-orange);
  border-right: 2px solid var(--c-orange);
  position: absolute;
}
.prevPostNav a::before {
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}
.nextPostNav a::before {
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
/*
.postRelated {margin-top: min(5vw,60px); padding:min(2.5vw,30px) min(3.3vw,40px) min(3.3vw,40px); background: #f3f3f3;}
.postRelated h3 {font-weight: 600; font-size: min(2vw,2.4rem); text-align: center; margin-bottom: min(1.66vw, 20px);}
.postRelated ul {margin: 0;}
.postRelated ul li a {display: block; border-bottom: 1px dashed #aaa; padding: min(1.25vw, 15px);}
*/
@media (max-width: 767px) {
  #colFlex {
    display: block;
  }
  #colMain {
    width: 100%;
  }
  #colSide {
    width: 100%;
  }
  #colSide .content {
    padding: min(6vw, 30px) min(6vw, 20px) min(4vw, 20px);
    margin-bottom: min(3vw, 20px);
  }
  #colSide .content .hA {
    margin-bottom: min(2vw, 10px);
  }
  #colSide .content ul li a {
    padding: min(2vw, 10px) 0;
  }
  #colSide .content ul li ul {
    margin: 0 0 min(2vw, 10px) 1em;
  }
  #colSide .content ul li ul li a {
    padding: min(2vw, 10px);
  }
  #colSide .content .navSide__inr {
    padding: min(2vw, 10px) 0;
  }
  #colSide .content .navSide__inr select {
    padding: min(1vw, 5px);
  }
  #colSide .content input {
    height: min(10vw, 36px);
  }
  #colSide .content button {
    height: min(10vw, 36px);
    border-radius: min(1vw, 5px);
  }
  #colMain .colPostFlex {
    justify-content: space-between;
    column-gap: 0;
  }
  .postIndex {
    width: 48%;
    margin: 0 0 4%;
  }
  .postIndex h2 {
    font-size: min(3.8vw, 1.8rem);
    margin-bottom: min(2vw, 10px);
    line-height: 1.4;
  }
  .postIndex .postThum {
    margin-bottom: min(2vw, 10px);
  }
  .postIndex .postThum img {
    border-radius: min(2vw, 10px);
  }
  .postIndex .postDate {
    font-size: min(3vw, 1.2rem);
  }
  .postIndex .postEx {
    font-size: min(3.4vw, 1.4rem);
  }
  .wp-pagenavi {
    margin: min(3vw, 20px) 0 min(6vw, 60px);
  }
  .newsList li {
    padding: min(3vw, 15px) 0;
  }
  .newsList li span {
    font-size: min(3.6vw, 1.4rem);
  }
  /* parts */
  .postDate {
    font-size: min(3.2vw, 1.4rem);
  }
  /* single */
  .postHead .postDate {
    padding-left: min(8vw, 40px);
  }
  .postBody h2 {
    font-size: min(4.2vw, 2rem);
    padding: min(2vw, 10px) min(4vw, 20px);
    margin: min(5vw, 24px) 0 min(3vw, 15px)
  }
  .postBody h3 {
    font-size: min(4vw, 2rem);
    margin: min(5vw, 24px) 0 min(2vw, 10px);
  }
  .postBody h4 {
    font-size: min(4vw, 2rem);
    margin: min(5vw, 24px) 0 min(2vw, 10px);
  }
  .postBody h5 {
    font-size: min(4vw, 2rem);
    margin: 1em 0 min(2vw, 10px);
  }
  .postBody figure {
    margin: min(6vw, 30px) auto;
  }
  .postNav {
    margin: min(5vw, 40px) auto;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 4vw;
    grid-row-gap: 4vw;
  }
  .postNav p {
    margin: 0;
  }
  .prevPostNav {
    grid-area: 2 / 1 / 3 / 2;
  }
  .backPostNav {
    grid-area: 1 / 1 / 2 / 3;
  }
  .nextPostNav {
    grid-area: 2 / 2 / 3 / 3;
  }
  .prevPostNav a::before, .nextPostNav a::before {
    width: min(2vw, 10px);
  }
  .backPostNav a {
    min-width: 60%;
  }
  /* youtube */
  /* iframeがpやdivに直に入っている場合にも対応 */
  iframe[src*="youtube.com"] {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-width: 100%;
    display: block;
  }
}
/*━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

popup

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#popup {
  display: none;
  text-align: center;
  padding: min(5vw, 60px);
  width: 90%;
  max-width: 900px;
  border-radius: min(2.5vw, 30px);
}
#popup h2 {
  font-weight: 600;
  color: #ff6800;
  font-size: min(2.5vw, 30px);
  margin-bottom: min(1.66vw, 20px);
}
#popup h3 {
  font-weight: 600;
  font-size: min(1.66vw, 20px);
  background: #fff7e7;
  color: #604c3f;
  padding: min(1.25vw, 15px);
  margin-bottom: min(1.25vw, 15px);
}
#popup .popup_content ul {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
}
#popup .popup_content ul li {
  width: 48%;
  max-width: 280px;
  margin: 0 5px;
}
#popup .popup_content ul li a {
  display: block;
  padding: min(1.25vw, 15px);
  color: #fff;
  background: #ff6800;
  border-radius: 60px;
  outline: none;
}
#popup .popup_content ul li a:hover {
  text-decoration: none;
}
#popup .popup_content ul li:nth-child(even) a {
  background: #ff6800;
}
#popup .popup_yobou {
  margin-top: min(3.3vw, 40px);
}
#popup .popup_content div.columBoxA {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
}
#popup .popup_content div.columBox {
  width: 48%;
  max-width: 280px;
  margin: 0 5px;
}
#popup .popup_content div.columBox a {
  display: block;
  padding: min(1.25vw, 15px);
  color: #fff;
  background: #ff6800;
  border-radius: 60px;
  outline: none;
}
#popup .popup_content div.columBox a:hover {
  text-decoration: none;
}
#popup .popup_content div.columBox:nth-child(even) a {
  background: #ff6800;
}
@media (max-width: 767px) {
  #popup {
    padding: 4vw;
    max-width: inherit;
    border-radius: 5vw;
  }
  #popup h2 {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
  #popup h3 {
    font-size: 5vw;
    padding: 3vw;
    margin-bottom: 3vw;
  }
  #popup .popup_content div.columBoxA {
    flex-wrap: wrap;
  }
  #popup .popup_content div.columBox {
    width: 100%;
    max-width: inherit;
    margin: 1vw 0;
  }
  #popup .popup_content div.columBox a {
    padding: 3vw;
  }
  #popup .popup_yobou {
    margin-top: 8vw;
  }
}
@media (max-width: 767px) {
  #grandMenuAlways {
    background: var(--bg-orange);
    border: none;
    padding: 0;
    margin: 0;
  }
  #navGlobalAlways {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  #navGlobalAlways > li {
    width: calc(100% / 3);
    margin: 0;
  }
  #navGlobalAlways > li > a {
    display: flex;
    align-items: center;
    min-height: 10vw;
    background: #fff;
    color: var(--c-brown);
    line-height: 1.4;
    font-size: 3.7vw;
    font-weight: bold;
    padding-left: 2.4vw;
    position: relative;
    box-sizing: border-box;
    border-right: 1px solid var(--c-orange);
    border-bottom: 1px solid var(--c-orange);
    height: 5.5vh;
  }
  #navGlobalAlways > li:nth-child(3n) > a {
    border-right: none;
  }
  #navGlobalAlways > li:nth-last-child(-n + 3) > a {
    border-bottom: none;
  }
  #navGlobalAlways > li > a::before {
    content: "";
    width: 1.6vw;
    height: 1.6vw;
    border-top: 1px solid var(--c-orange);
    border-right: 1px solid var(--c-orange);
    position: absolute;
    right: 1.6vw;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  #navGlobalAlways .navChild {
    display: none;
  }
}