@charset "UTF-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
:root {
  --base-font: "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --outfit: "Outfit", sans-serif;
  --base-color: #222;
  --white: #FFF;
  --yellow: #DEC800;
  --deep-yellow: #EED600;
  --red: #E67070;
  --gray: #525252;
  --light-gray: #D9D9D9;
  --silver-gray: #E2E2E2;
  --light-white: #F8F6F0;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

@media all and (max-width: 389px) {
  html {
    font-size: 2.5641025641vw;
  }
}
@media all and (min-width: 897px) and (max-width: 1400px) {
  html {
    font-size: 0.7142857143vw;
  }
}
body, table, input, textarea, select, option {
  font-family: var(--base-font);
}

.outfit {
  font-family: var(--outfit);
}

.gothic {
  font-family: var(--base-font);
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

chrome_annotation {
  border: none !important;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

a {
  color: var(--base-color);
  text-decoration: none;
  transition: 0.3s;
}
a:link {
  color: var(--base-color);
}
a:visited {
  color: var(--base-color);
}
a:active {
  color: var(--base-color);
}
a:hover {
  color: var(--base-color);
}
@media all and (max-width: 896px) {
  a:hover {
    opacity: 1 !important;
  }
  a:hover img {
    opacity: 1 !important;
  }
}

/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
  color: var(--base-color);
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  background-color: var(--white);
}
body.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  overflow: scroll;
}
body.isPad.fixed {
  position: static;
  top: 0 !important;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  body {
    font-size: 1.4rem;
  }
  body.fixed {
    position: fixed;
    width: 100%;
  }
  body.fixed .comBtnList2 {
    box-shadow: none;
  }
}

p {
  line-height: 1.8;
}

#container {
  text-align: left;
  position: relative;
  word-break: break-word;
  overflow-x: clip;
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}

@media all and (min-width: 897px) {
  .sp {
    display: none !important;
  }
}
@media all and (max-width: 896px) {
  .pc {
    display: none !important;
  }
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}
/*------------------------------------------------------------
    ヘッダー
------------------------------------------------------------*/
#gHeader .comLinkList {
  position: fixed;
  top: 3.7rem;
  right: 11.5rem;
  z-index: 99;
}

.logo {
  position: absolute;
  top: 2.5rem;
  left: 3.8rem;
  z-index: 20;
  display: flex;
  align-items: center;
}
@media all and (max-width: 896px) {
  .logo {
    display: block;
    left: 1.9rem;
    top: 1.7rem;
  }
}
.logo .logoImg {
  width: 28.7rem;
  display: block;
}
@media all and (max-width: 896px) {
  .logo .logoImg {
    width: 18.9rem;
  }
}
.logo .txtSpan {
  margin: 2.6rem 0 0 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
  font-weight: 500;
}
@media all and (max-width: 896px) {
  .logo .txtSpan {
    opacity: 0;
    visibility: hidden;
  }
}

/*------------------------------------------------------------
    menuBtn
------------------------------------------------------------*/
.menuBtn {
  width: 8rem;
  aspect-ratio: 1;
  background-color: var(--base-color);
  cursor: pointer;
  transition: 0.3s;
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 999;
  border-radius: 5rem;
}
@media all and (max-width: 896px) {
  .menuBtn {
    top: 1rem;
    right: 1rem;
    width: 6rem;
  }
}
@media (hover: hover) {
  .menuBtn:hover {
    opacity: 0.5;
  }
}
.menuBtn.active .menu .top {
  transform: translateY(0.6rem) translateX(0) rotate(20deg);
  z-index: 10;
}
@media all and (min-width: 897px) {
  .menuBtn.active .menu .top {
    transform: translateY(0.8rem) translateX(0) rotate(20deg);
  }
}
.menuBtn.active .menu .middle {
  opacity: 0;
}
.menuBtn.active .menu .bottom {
  transform: translateY(-0.7rem) translateX(0) rotate(-20deg);
}
@media all and (min-width: 897px) {
  .menuBtn.active .menu .bottom {
    transform: translateY(-0.8rem) translateX(0) rotate(-20deg);
  }
}
.menuBtn .menu {
  position: absolute;
  top: 2.4rem;
  left: 50%;
  height: 1.6rem;
  width: 3.7rem;
  z-index: 100;
  transform: translateX(-50%);
  transition: 0.3s;
}
@media all and (max-width: 896px) {
  .menuBtn .menu {
    top: 1.7rem;
    width: 3rem;
  }
}
.menuBtn .menu::after {
  position: absolute;
  top: calc(100% + 0.3rem);
  left: 50%;
  transform: translateX(-50%);
  content: "MENU";
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0.108rem;
  font-family: var(--outfit);
}
@media all and (max-width: 896px) {
  .menuBtn .menu::after {
    top: calc(100% + 0rem);
    font-size: 1rem;
    letter-spacing: 0.05rem;
  }
}
.menuBtn .menu span {
  background: var(--white);
  border: none;
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.menuBtn .menu span:nth-of-type(2) {
  top: 0.8rem;
}
@media all and (max-width: 896px) {
  .menuBtn .menu span:nth-of-type(2) {
    top: 0.6rem;
  }
}
.menuBtn .menu span:nth-of-type(3) {
  top: 1.6rem;
}
@media all and (max-width: 896px) {
  .menuBtn .menu span:nth-of-type(3) {
    top: 1.3rem;
  }
}

.menuBox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 900;
  background-color: #fff;
}
@media all and (min-width: 897px) {
  .menuBox {
    width: 60rem;
    left: auto;
    right: 0;
  }
}
.menuBox .menuInner {
  padding: 10.7rem 0.3rem 5rem;
}
@media all and (min-width: 897px) {
  .menuBox .menuInner {
    padding-top: 15rem;
  }
}
.menuBox .naviList {
  margin: 0 1.2rem 3.8rem;
  border-top: 1px solid rgba(204, 204, 204, 0.5);
}
@media (hover: hover) {
  .menuBox .naviList a:hover {
    opacity: 0.5;
  }
}
.menuBox .naviList > li {
  border-bottom: 1px solid rgba(204, 204, 204, 0.5);
}
.menuBox .naviList > li:last-child {
  border: none;
}
.menuBox .naviList > li > a {
  display: block;
  padding: 1.2rem 3rem 1.2rem 1rem;
  font-size: 1.6rem;
  font-weight: 500;
  background: url(../img/common/icon01.webp) no-repeat right 1rem center;
  background-size: 2rem auto;
}
.menuBox .naviList > li.item a {
  background: none;
}
.menuBox .naviList > li.item {
  position: relative;
}
.menuBox .naviList > li.item .ico {
  width: 2rem;
  aspect-ratio: 1;
  position: absolute;
  z-index: 2;
  top: 0.4rem;
  right: 0;
  padding: 1rem;
  box-sizing: content-box;
  cursor: pointer;
}
.menuBox .naviList > li.item .ico:after, .menuBox .naviList > li.item .ico:before {
  position: absolute;
  right: 1rem;
  top: 50%;
  left: calc(50% - 0.6rem);
  width: 1.2rem;
  height: 1px;
  background-color: var(--deep-yellow);
  transition: all 0.3s ease;
  content: "";
}
.menuBox .naviList > li.item .ico:after {
  transform: rotate(90deg);
}
.menuBox .naviList > li.item .ico.on:after {
  transform: rotate(180deg);
  opacity: 0;
}
.menuBox .naviList > li .ulBox {
  display: none;
}
.menuBox .naviList > li .subList {
  padding: 0 0 0 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.menuBox .naviList > li .subList > li {
  width: calc((100% - 2rem) / 2);
}
.menuBox .naviList > li .subList > li ul li {
  margin-bottom: 0.7rem;
}
.menuBox .naviList > li .subList > li ul li:last-child {
  margin-bottom: 0;
}
.menuBox .naviList > li .subList > li ul a {
  padding-left: 1rem;
  color: rgba(34, 34, 34, 0.7);
  font-weight: 500;
  line-height: 180%;
  display: inline-block;
  position: relative;
}
.menuBox .naviList > li .subList > li ul a::before {
  width: 0.5rem;
  height: 2px;
  background: rgba(34, 34, 34, 0.7);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.3rem;
  content: "";
}
.menuBox .comTableBox {
  margin: 0 0 2rem;
}
.menuBox .comAccessDl {
  margin: 0 0 2rem;
}
@media all and (min-width: 897px) {
  .menuBox .comLinkList {
    justify-content: center;
  }
}

/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter .fInner {
  padding: 9.3rem 0 10rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media all and (max-width: 896px) {
  #gFooter .fInner {
    padding: 8.1rem 1.5rem 7.9rem;
    display: block;
  }
}
#gFooter .fInner .map {
  background-color: gray;
  margin-left: 7.4rem;
  width: calc(50% + 0.7rem);
  aspect-ratio: 807/600;
  position: relative;
  border-radius: 2rem 0 0 2rem;
  overflow: hidden;
}
@media all and (max-width: 896px) {
  #gFooter .fInner .map {
    margin: 2.2rem 0 0;
    width: auto;
    border-radius: 2rem;
  }
}
#gFooter .fInner .map iframe {
  width: 100%;
  height: 100%;
}
#gFooter .fInner .lBox {
  padding-top: 2.2rem;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media all and (max-width: 896px) {
  #gFooter .fInner .lBox {
    padding: 0;
    display: block;
  }
}
#gFooter .fInner .lBox .textBox {
  width: 100%;
  max-width: 51.9rem;
}
@media all and (max-width: 896px) {
  #gFooter .fInner .lBox .textBox {
    max-width: inherit;
  }
}
#gFooter .fInner .fLogo {
  margin-bottom: 2rem;
  width: 35.6rem;
}
@media all and (max-width: 896px) {
  #gFooter .fInner .fLogo {
    margin: 0 auto 2.1rem;
  }
}
#gFooter .fInner .comLinkList {
  margin-bottom: 2.2rem;
}
@media all and (max-width: 896px) {
  #gFooter .fInner .comLinkList {
    margin: 0 0.4rem 2rem;
  }
}
#gFooter .fBox {
  padding: 6.3rem 0;
  color: var(--white);
  background-color: var(--base-color);
}
@media all and (max-width: 896px) {
  #gFooter .fBox {
    padding: 8.4rem 0 8rem;
  }
}
#gFooter .fBox a {
  color: var(--white);
}
@media (hover: hover) {
  #gFooter .fBox a:hover {
    opacity: 0.5;
  }
}
#gFooter .fBox .content {
  max-width: 148rem;
}
#gFooter .fBox address {
  margin-top: -2.1rem;
  font-size: 1.2rem;
  line-height: 180%;
  text-align: right;
}
@media all and (max-width: 896px) {
  #gFooter .fBox address {
    text-align: left;
    margin: 8.2rem 1.5rem 0;
    font-size: 1rem;
  }
}
#gFooter .fBox .fNavi {
  padding: 0 4rem;
}
@media all and (max-width: 896px) {
  #gFooter .fBox .fNavi {
    padding: 0 1.5rem;
  }
}
#gFooter .fBox .fNavi > li {
  width: 100%;
}
#gFooter .fBox .fNavi .naviList {
  display: grid;
  grid-template-columns: 22rem 1fr 1fr 1fr;
  column-gap: 4rem;
  row-gap: 1.5rem;
  align-items: start;
}
@media all and (max-width: 896px) {
  #gFooter .fBox .fNavi .naviList {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
#gFooter .fBox .fNavi .naviList > li {
  grid-column: 1;
  margin-bottom: 0;
}
@media all and (max-width: 896px) {
  #gFooter .fBox .fNavi .naviList > li {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
    position: relative;
  }
  #gFooter .fBox .fNavi .naviList > li:last-child {
    margin-bottom: 0;
  }
}
@media all and (min-width: 897px) {
  #gFooter .fBox .fNavi .naviList > li.item {
    grid-row: 1 / span 8;
  }
  #gFooter .fBox .fNavi .naviList > li.item:nth-last-child(3) {
    grid-column: 2;
  }
  #gFooter .fBox .fNavi .naviList > li.item:nth-last-child(2) {
    grid-column: 3;
  }
  #gFooter .fBox .fNavi .naviList > li.item:last-child {
    grid-column: 4;
  }
}
@media all and (max-width: 896px) {
  #gFooter .fBox .fNavi .naviList > li.item {
    width: 100%;
    margin-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }
  #gFooter .fBox .fNavi .naviList > li.item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  #gFooter .fBox .fNavi .naviList > li.item > a {
    display: block;
    padding: 1.2rem 4rem 1.2rem 0;
  }
}
#gFooter .fBox .fNavi .naviList .ico {
  display: none;
}
@media all and (max-width: 896px) {
  #gFooter .fBox .fNavi .naviList .ico {
    display: block;
    width: 2rem;
    aspect-ratio: 1;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    padding: 1rem;
    box-sizing: content-box;
    cursor: pointer;
  }
  #gFooter .fBox .fNavi .naviList .ico:after, #gFooter .fBox .fNavi .naviList .ico:before {
    position: absolute;
    right: 1rem;
    top: 50%;
    left: calc(50% - 0.6rem);
    width: 1.2rem;
    height: 1px;
    background-color: var(--white);
    transition: all 0.3s ease;
    content: "";
  }
  #gFooter .fBox .fNavi .naviList .ico:after {
    transform: rotate(90deg);
  }
  #gFooter .fBox .fNavi .naviList .ico.on:after {
    transform: rotate(180deg);
    opacity: 0;
  }
}
#gFooter .fBox .fNavi .subUl {
  padding: 1.8rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
@media all and (max-width: 896px) {
  #gFooter .fBox .fNavi .subUl {
    display: none;
    padding: 0 0 1.6rem;
    flex-direction: column;
    gap: 0;
  }
}
#gFooter .fBox .fNavi .subUl > li {
  width: calc((100% - 2rem) / 2);
}
@media all and (max-width: 896px) {
  #gFooter .fBox .fNavi .subUl > li {
    width: 100%;
  }
}
#gFooter .fBox .fNavi .subUl > li ul li {
  margin-bottom: 0.6rem;
}
@media all and (min-width: 897px) {
  #gFooter .fBox .fNavi .subUl > li ul li:last-child {
    margin-bottom: 0;
  }
}
@media all and (max-width: 896px) {
  #gFooter .fBox .fNavi .subUl > li ul li {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
  }
  #gFooter .fBox .fNavi .subUl > li:last-child ul li:last-child {
    margin-bottom: 0;
  }
}
#gFooter .fBox .fNavi .subUl > li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}

.comTableBox {
  padding: 4rem 5rem 4.6rem 4rem;
  margin-bottom: 2rem;
  border-radius: 2rem;
  border: 1px solid var(--silver-gray);
  background: var(--white);
}
@media all and (max-width: 896px) {
  .comTableBox {
    padding: 1.2rem 1.5rem 1.6rem;
    margin: 0 0.4rem 2rem;
  }
}
.comTableBox table {
  margin-bottom: 1.4rem;
  width: 100%;
  border-collapse: collapse;
}
.comTableBox table th {
  width: 29%;
  padding: 1rem 1rem 0.8rem;
  font-size: 2rem;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--silver-gray);
}
@media all and (max-width: 896px) {
  .comTableBox table th {
    font-size: 1.6rem;
    padding-left: 0.7rem;
  }
}
.comTableBox table td {
  text-align: center;
  vertical-align: middle;
}
.comTableBox table thead td {
  width: 8.6875%;
  padding: 1rem 0 0.8rem;
  border-bottom: 1px solid var(--silver-gray);
}
.comTableBox table thead td:last-child {
  width: 11.5833333333%;
}
.comTableBox table tbody tr:first-child td {
  padding-top: 1.5rem;
}
@media all and (max-width: 896px) {
  .comTableBox table tbody tr:first-child td {
    padding-top: 1rem;
  }
}
.comTableBox table tbody td {
  padding: 0.6rem 0;
}
@media all and (max-width: 896px) {
  .comTableBox table tbody td {
    padding: 0.2rem 0;
  }
}
.comTableBox table tbody td:first-child {
  text-align: left;
  padding-left: 1rem;
}
@media all and (max-width: 896px) {
  .comTableBox table tbody td:first-child {
    padding-left: 0.5rem;
  }
}
.comTableBox table tbody td img {
  margin: 0 auto;
  width: 1rem;
  display: block;
}
@media all and (max-width: 896px) {
  .comTableBox table tbody td img {
    width: 0.7rem;
  }
}
.comTableBox p {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: right;
}

@media all and (max-width: 896px) {
  .comAccessDl {
    margin: 0 0.5rem;
  }
}
.comAccessDl dt {
  width: 2.4rem;
  flex-shrink: 0;
  margin: 0.2rem 0.8rem 0 0;
}
.comAccessDl dd {
  margin-bottom: 1.2rem;
  width: calc(100% - 2.4rem - 0.8rem);
  line-height: 1.8;
}
@media all and (max-width: 896px) {
  .comAccessDl dd {
    margin-bottom: 1.4rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.comAccessDl dd:last-of-type {
  margin-bottom: 0;
}/*# sourceMappingURL=style.css.map */