@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alexandria:wght@500..700&family=Noto+Sans+JP:wght@400..700&display=swap");
/*** The new CSS reset - version 1.11.3 (last updated 25.8.2024) ***/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

a, button {
  cursor: revert;
}

ol, ul, menu, summary {
  list-style: none;
}

ol {
  counter-reset: revert;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
  box-sizing: border-box;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

::-webkit-details-marker {
  display: none;
}

/*
 - ページを横断して使いまわせるスタイル
 - c-を接頭辞として指定
*/
.c-button {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 5px 40px 9px 20px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #1E323C;
  text-align: center;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}
.c-button:after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 10px;
  height: 10px;
  background: #59C6E3;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.c-button:hover {
  background: #59C6E3;
  color: #fff;
}

.c-button-back {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 13px 20px 17px 40px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #1E323C;
  text-align: center;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}
.c-button-back:after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  left: 20px;
  width: 10px;
  height: 10px;
  background: #59C6E3;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.c-button-back:hover {
  background: #59C6E3;
  color: #fff;
}

.c-title-h2 span {
  position: relative;
  display: inline-block;
  padding-left: 38px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #005A9E;
}
@media screen and (max-width: 767px) {
  .c-title-h2 span {
    font-size: 24px;
  }
}
.c-title-h2 span:before {
  content: "";
  position: absolute;
  left: 9px;
  top: calc(50% - 9px);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #59C6E3;
  box-shadow: 0 0 9px #59C6E3;
}

.c-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}
.c-pagination__num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #1E323C;
  font-size: 16px;
  font-weight: 500;
  color: #1E323C;
  cursor: pointer;
  transition: background-color 0.3s;
}
.c-pagination__num:hover {
  background: rgba(89, 198, 255, 0.2);
}
.c-pagination__num.is-current {
  background: rgba(89, 198, 255, 0.2);
}
.c-pagination__next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #1E323C;
  font-size: 16px;
  font-weight: 500;
  color: #1E323C;
  cursor: pointer;
  transition: background-color 0.3s;
}
.c-pagination__next:hover {
  background: rgba(89, 198, 255, 0.2);
}
.c-pagination__prev {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #1E323C;
  font-size: 16px;
  font-weight: 500;
  color: #1E323C;
  cursor: pointer;
  transition: background-color 0.3s;
}
.c-pagination__prev:hover {
  background: rgba(89, 198, 255, 0.2);
}

.c-table {
  margin-top: 32px;
}
.c-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .c-table table {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-table table tbody {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-table table tbody tr {
    display: block;
  }
}
.c-table table tbody th {
  width: 171px;
  padding: 12px;
  background: #59C6E3;
  border-radius: 4px;
  vertical-align: middle;
  color: #fff;
  font-weight: 500;
  box-shadow: 0 0 8px rgba(30, 50, 60, 0.08);
}
@media screen and (max-width: 767px) {
  .c-table table tbody th {
    display: block;
    width: 100%;
    padding: 16px 20px;
    margin-top: 4px;
  }
}
.c-table table tbody td {
  padding: 12px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(30, 50, 60, 0.08);
  vertical-align: middle;
  color: #1E323C;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-table table tbody td {
    display: block;
    width: 100%;
    padding: 16px 20px;
    margin-top: 4px;
  }
}

.c-anchor ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media screen and (max-width: 960px) {
  .c-anchor ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.c-anchor a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 11px;
  border-radius: 8px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  color: #1E323C;
  border: 1px solid;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-anchor a {
    line-height: 1.3;
  }
}
.c-anchor a::after {
  content: "";
  width: 10px;
  aspect-ratio: 8/4;
  background: url(../img/company/ico_arrow_down.svg) no-repeat center/contain;
}
.c-anchor a:hover {
  background: #E6F4FF;
}

.c-editable p {
  margin-top: 24px;
  line-height: 2;
}
.c-editable a {
  color: #005A9E;
  text-decoration: underline;
}

/*
 - header
 - glonav
 - footer
 - inner
*/
body {
  background: #EDF5F8;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
}

.l-header {
  position: fixed;
  width: 100%;
  z-index: 100;
}
.l-header__s {
  padding: 13px 16px;
  background: #59C6E3;
}
.l-header__s-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1352px;
  margin-inline: auto;
}
.l-header__s-tagline {
  font-size: 14px;
  color: #fff;
}
.l-header__s-links {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 960px) {
  .l-header__s-links {
    display: none;
  }
}
.l-header__s-link {
  display: inline-block;
  color: #fff;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.l-header__s-blank {
  position: relative;
  display: inline-block;
  padding-right: 15px;
  color: #fff;
  letter-spacing: 0.02em;
}
.l-header__s-blank:after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 0;
  width: 11px;
  height: 11px;
  background: url(../img/common/ico_blank.svg) no-repeat center center;
  background-size: contain;
}
.l-header__nav {
  padding: 0 16px;
  background: #fff;
}
.l-header__nav-in {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1352px;
  margin-inline: auto;
}
.l-header__nav-links {
  height: 46px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-header__nav-flyer {
  position: relative;
  display: inline-block;
  margin-left: 12px;
  padding: 4px 16px 6px;
  border-radius: 1000px;
  background: #005A9E;
  color: #fff;
  font-size: min(16px, 1.3541666667vw);
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-header__nav-flyer {
    display: none;
  }
}
.l-header__nav-flyer span {
  position: relative;
  display: inline-block;
  padding-left: 16px;
}
@media screen and (max-width: 960px) {
  .l-header__nav-flyer span {
    padding-left: 32px;
  }
}
.l-header__nav-flyer span:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
  width: 12px;
  height: 14px;
  background: url(../img/common/ico_flyer.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .l-header__nav-flyer span:before {
    top: calc(50% - 14px);
    width: 24px;
    height: 28px;
  }
}
.l-header__nav-application {
  position: relative;
  display: inline-block;
  padding: 4px 16px 6px;
  border-radius: 1000px;
  background: #1E323C;
  color: #fff;
  font-size: min(16px, 1.3541666667vw);
  text-align: center;
}
@media screen and (max-width: 960px) {
  .l-header__nav-application {
    display: none;
  }
}
.l-header__nav-application span {
  position: relative;
  display: inline-block;
  padding-left: 16px;
}
@media screen and (max-width: 960px) {
  .l-header__nav-application span {
    padding-left: 32px;
  }
}
.l-header__nav-application span:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 7px);
  width: 12px;
  height: 14px;
  background: url(../img/common/ico_application.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 960px) {
  .l-header__nav-application span:before {
    top: calc(50% - 14px);
    width: 24px;
    height: 28px;
  }
}
.l-header__nav-hamburger {
  display: none;
  position: absolute;
  right: 16px;
  top: 66px;
  width: 40px;
  height: 28px;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .l-header__nav-hamburger {
    display: block;
  }
}
.l-header__nav-hamburger:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: #59C6E3;
  transition: transform 0.3s;
}
.l-header__nav-hamburger:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: #59C6E3;
  transition: transform 0.3s;
}
.l-header__nav-hamburger span {
  position: absolute;
  left: 0;
  top: calc(50% - 2px);
  display: inline-block;
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: #59C6E3;
  transition: opacity 0.3s;
}
.l-header__nav-hamburger.is-open:before {
  transform: rotate(45deg);
  top: calc(50% - 2px);
}
.l-header__nav-hamburger.is-open:after {
  transform: rotate(-45deg);
  bottom: calc(50% - 2px);
}
.l-header__nav-hamburger.is-open span {
  opacity: 0;
}
.l-header__logo {
  width: 170px;
  padding: 12px 10px 12px 0;
}

.l-glonav {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 960px) {
  .l-glonav {
    display: none;
  }
}
.l-glonav > li {
  display: flex;
  align-items: center;
  height: 70px;
}
.l-glonav__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #1E323C;
  font-size: min(16px, 1.3541666667vw);
  cursor: pointer;
}
.l-glonav__link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #59C6E3;
  opacity: 0;
  transition: opacity 0.3s;
}
.l-glonav__link:hover:after, .l-glonav__link.is-open:after, .l-glonav__link.is-current:after {
  opacity: 1;
}

.l-megamenu {
  position: fixed;
  top: 120px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s, transform 0.8s;
}
.l-megamenu.is-open {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}
.l-megamenu__in {
  display: flex;
  justify-content: space-between;
  padding: 40px 48px;
  width: calc(100% - 40px);
  max-width: 1352px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 24px rgba(30, 50, 60, 0.08);
}
.l-megamenu__img {
  width: 25.4777070064%;
  border-radius: 20px;
  overflow: hidden;
}
.l-megamenu__text {
  width: 70.8598726115%;
}
.l-megamenu__category {
  font-size: 24px;
  font-weight: 700;
  color: #005A9E;
}
.l-megamenu__list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 24px;
  margin-top: 32px;
}
.l-megamenu__col1 {
  width: calc(25% - 12px);
}
.l-megamenu__col2 {
  width: calc(50% - 12px);
}
.l-megamenu__each {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 12px;
  padding-right: 28px;
  border-bottom: 1px solid #59C6E3;
}
.l-megamenu__each:before {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #59C6E3;
}
.l-megamenu__each:after {
  content: "";
  position: absolute;
  right: 8px;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.l-drawermenu {
  position: absolute;
  left: 0;
  top: 116px;
  width: 100%;
  height: calc(100vh - 116px);
  background: #fff;
  display: none;
}
@media screen and (max-width: 960px) {
  .l-drawermenu {
    display: block;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
  }
  .l-drawermenu.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
}
.l-drawermenu__main li {
  width: 100%;
  border-bottom: 1px solid #fff;
}
.l-drawermenu__main li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 5px 30px 5px 20px;
  background: #59C6E3;
  color: #fff;
}
.l-drawermenu__main li a:after {
  content: ">";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) scale(0.8, 1.5);
}
.l-drawermenu__sub {
  display: flex;
  flex-wrap: wrap;
}
.l-drawermenu__sub li {
  width: calc(50% - 1px);
  border-top: 1px solid #1E323C;
}
.l-drawermenu__sub li:nth-child(2n-1) {
  border-right: 1px solid #1E323C;
}
.l-drawermenu__sub li:nth-child(-n+2) {
  border-top: none;
}
.l-drawermenu__sub li a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 5px 30px 5px 20px;
  color: #1E323C;
  font-size: 13px;
}
.l-drawermenu__sub li a:after {
  content: ">";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) scale(0.8, 1.5);
}
.l-drawermenu__sub li a.l-drawermenu__flyer {
  border: none;
  background: #005A9E;
  color: #fff;
}
.l-drawermenu__sub li a.l-drawermenu__application {
  border: none;
  background: #1E323C;
  color: #fff;
}

.l-inner {
  max-width: 1200px;
  margin-inline: auto;
}

.l-sns {
  padding: 40px 20px 40px;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.l-sns a {
  display: inline-block;
  width: 50px;
}
.l-sns a img {
  transition: opacity 0.3s;
}
.l-sns a:hover img {
  opacity: 0.8;
}

.l-footer {
  position: relative;
  width: 100%;
}
.l-footer__nav {
  background: #59C6E3;
  padding: 48px 20px 84px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav {
    padding: 32px 16px;
  }
}
.l-footer__nav-in {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-in {
    display: block;
  }
}
.l-footer__logo {
  width: 232px;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    width: 183px;
  }
}
.l-footer__bottom {
  padding: 20px;
  background: #fff;
}
@media screen and (max-width: 960px) {
  .l-footer__bottom {
    padding-bottom: 76px;
  }
}
.l-footer__bottom-in {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__bottom-in {
    display: block;
  }
}
.l-footer__s {
  display: flex;
  gap: 0 2em;
}
@media screen and (max-width: 767px) {
  .l-footer__s {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.l-footer__s li {
  position: relative;
}
.l-footer__s li:not(:last-child):after {
  content: "";
  position: absolute;
  right: -1em;
  top: 0;
  width: 1px;
  height: 100%;
  background: #1E323C;
}
.l-footer__s li a {
  color: #1E323C;
}
.l-footer__copyright {
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer__copyright {
    margin-top: 24px;
    text-align: center;
  }
}
.l-footer__fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  justify-content: space-between;
  width: 100%;
  z-index: 10;
}
@media screen and (max-width: 960px) {
  .l-footer__fixed {
    display: flex;
  }
}
.l-footer__fixed-flyer {
  position: relative;
  display: inline-block;
  width: calc(50% - 1px);
  padding: 14px 5px 12px;
  border-radius: 20px 20px 0 0;
  background: #005A9E;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.l-footer__fixed-flyer span {
  position: relative;
  display: inline-block;
  padding-left: 32px;
}
.l-footer__fixed-flyer span:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 14px);
  width: 24px;
  height: 28px;
  background: url(../img/common/ico_flyer.svg) no-repeat center center;
  background-size: contain;
}
.l-footer__fixed-application {
  position: relative;
  display: inline-block;
  width: calc(50% - 1px);
  padding: 14px 5px 12px;
  border-radius: 20px 20px 0 0;
  background: #1E323C;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.l-footer__fixed-application span {
  position: relative;
  display: inline-block;
  padding-left: 32px;
}
.l-footer__fixed-application span:before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(50% - 14px);
  width: 24px;
  height: 28px;
  background: url(../img/common/ico_application.svg) no-repeat center center;
  background-size: contain;
}

.l-sitemap {
  display: flex;
  gap: 40px;
  width: calc(100% - 252px);
  max-width: 668px;
}
@media screen and (max-width: 767px) {
  .l-sitemap {
    display: block;
    width: 100%;
    margin-top: 28px;
  }
}
@media screen and (max-width: 767px) {
  .l-sitemap > ul {
    margin-top: 20px;
  }
}
.l-sitemap > ul > li + li {
  margin-top: 10px;
}
.l-sitemap > ul > li > a {
  line-height: 2.4;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.l-sitemap > ul > li .l-sitemap__genre {
  margin-bottom: 5px;
  line-height: 2.4;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.l-sitemap > ul > li > ul > li > a {
  line-height: 2;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.l-back-top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .l-back-top {
    bottom: 50px;
  }
}
.l-back-top:hover {
  background: rgba(0, 0, 0, 0.5);
}

.l-pageheader {
  position: relative;
  padding: 120px 16px 0;
  background: #EAF6F8;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-pageheader {
    padding: 116px 16px 0;
  }
}
.l-pageheader-in {
  max-width: 1352px;
  margin-inline: auto;
}

.l-breadcrumbs {
  position: relative;
  display: flex;
  padding: 16px 0;
  font-size: 14px;
}
.l-breadcrumbs li {
  position: relative;
}
.l-breadcrumbs li:nth-child(n+2) {
  padding-left: 28px;
}
.l-breadcrumbs li:nth-child(n+2):before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 12px;
  height: 1.5px;
  border-radius: 10px;
  background: #1E323C;
}
.l-breadcrumbs li a {
  text-decoration: underline;
  color: #005A9E;
}

.l-pagetitle {
  position: relative;
  padding: 20px 16px 60px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #005A9E;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .l-pagetitle {
    padding: 8px 16px 30px;
    font-size: 28px;
    line-height: 1.2;
  }
}

.l-wrapper {
  background: #fff;
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}
.grecaptcha-badge {
  bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .grecaptcha-badge {
    bottom: 110px !important;
  }
}

/*
 - header
 - glonav
 - footer
 - inner
*/
.p-top-bg {
  position: relative;
  overflow: clip;
}
.p-top-bg__circle01 {
  position: absolute;
  top: 53.345959596vw;
  left: 0;
  width: 242.4242424242vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, #fff 20%, #eaf6f8 100%);
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-bg__circle01 {
    top: 168.306010929vw;
    width: 524.5901639344vw;
  }
}
.p-top-bg__circle02 {
  position: absolute;
  top: 122.7272727273vw;
  right: 0;
  width: 181.8181818182vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #EDF5F8;
  transform: translateX(50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-bg__circle02 {
    top: 168.306010929vw;
    width: 524.5901639344vw;
  }
}
.p-top-bg__circle03 {
  position: absolute;
  top: 265.2777777778vw;
  left: 0;
  width: 238.6363636364vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, #fff 20%, #eaf6f8 100%);
  transform: translateX(-50%);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-bg__circle03 {
    top: 1160.1092896175vw;
    width: 1032.7868852459vw;
  }
}

.p-top {
  position: relative;
}
.p-top-fv {
  position: relative;
  padding-top: 136px;
  padding-bottom: 6.5656565657vw;
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-top-fv {
    padding-bottom: 27.3224043716vw;
  }
}
.p-top-fv:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  border-radius: 50%;
  width: 1920px;
  aspect-ratio: 1/1;
  background: #fff;
  transform: translateX(-50%);
  z-index: 0;
}
.p-top-fv__circle01 {
  position: absolute;
  top: 8.5858585859vw;
  left: 15.2777777778vw;
  width: 15.0252525253vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #59C6E3;
  z-index: 1;
}
.p-top-fv__circle02 {
  position: absolute;
  top: 13.6363636364vw;
  left: 60.6060606061vw;
  width: 9.595959596vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #9BDBEC;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-fv__circle02 {
    display: none;
  }
}
.p-top-fv__circle03 {
  position: absolute;
  top: 30.303030303vw;
  left: 69.1919191919vw;
  width: 18.9393939394vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #92CFA5;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-fv__circle03 {
    display: none;
  }
}
.p-top-fv__slider {
  position: relative;
  z-index: 2;
}
.p-top-fv__slider .splide__pagination {
  bottom: -25px;
  left: 50%;
  right: initial;
  justify-content: flex-end;
  width: 100%;
  max-width: 1200px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-fv__slider .splide__pagination {
    bottom: 0;
  }
}
.p-top-fv__slider .splide__slide {
  padding: 0 2.2580645161%;
}
.p-top-fv__slider .splide__pagination__page {
  background: #59C6E3;
  opacity: 0.4;
}
.p-top-fv__slider .splide__pagination__page.is-active {
  opacity: 1;
}
.p-top-fv__inner {
  position: absolute;
  bottom: 4.0404040404vw;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 16px;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .p-top-fv__inner {
    bottom: 0;
    width: 77.868852459vw;
  }
}
.p-top-fv__lead {
  width: 100%;
  max-width: 1200px;
}
.p-top-news {
  margin-top: 100px;
  width: 100%;
  overflow-x: hidden;
}
.p-top-news__hgroup {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-news__hgroup {
    padding: 0 16px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news__index {
    width: 142px;
  }
}
.p-top-news__slider {
  margin-top: 32px;
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-news__slider {
    width: 76.5027322404%;
    margin-inline: auto;
  }
}
.p-top-news__slider .splide {
  overflow: visible;
}
.p-top-news__slider .splide .splide__arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100vw - 32px);
  max-width: 1360px;
  transform: translateX(-50%);
  z-index: 5;
}
.p-top-news__slider .splide .splide__arrow {
  background: none;
  width: 76px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .p-top-news__slider .splide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news__slider .splide .splide__arrow--prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-news__slider .splide .splide__arrow--next {
    right: 0;
  }
}
.p-top-news__slider .splide .splide__track {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-top-news__slider .splide .splide__slide {
    width: 100%;
  }
}
.p-top-news__slider .splide .splide__pagination {
  bottom: -25px;
}
.p-top-news__slider .splide .splide__pagination__page {
  background: #59C6E3;
  opacity: 0.4;
}
.p-top-news__slider .splide .splide__pagination__page.is-active {
  opacity: 1;
}
.p-top-news__slider .splide:not(.is-loop) .splide__list {
  justify-content: center;
}
.p-top-news__each {
  display: block;
  width: 100%;
  max-width: 280px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(30, 50, 60, 0.08);
  overflow: clip;
}
@media screen and (max-width: 767px) {
  .p-top-news__each {
    max-width: initial;
  }
}
.p-top-news__each-img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-top-news__each-img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-news__each-text {
  padding: 12px 16px 20px;
}
.p-top-news__each-date {
  font-size: 12px;
  font-weight: 500;
}
.p-top-news__each-title {
  margin-top: 8px;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.p-top-features {
  margin-top: 72px;
}
.p-top-features__sectitle {
  text-align: center;
}
.p-top-features__index {
  width: 280px;
  margin-top: 28px;
  margin-inline: auto;
}
.p-top-features__slider {
  overflow-x: clip;
  padding-bottom: 30px;
}
.p-top-features__slider .splide {
  overflow: visible;
  max-width: 862px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-features__slider .splide {
    width: 100%;
  }
}
.p-top-features__slider .splide .splide__arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100vw - 32px);
  max-width: 1360px;
  transform: translateX(-50%);
  z-index: 5;
}
.p-top-features__slider .splide .splide__arrow {
  background: none;
  width: 76px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .p-top-features__slider .splide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-features__slider .splide .splide__arrow--prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-features__slider .splide .splide__arrow--next {
    right: 0;
  }
}
.p-top-features__slider .splide .splide__track {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-top-features__slider .splide .splide__slide {
    width: 100%;
  }
}
.p-top-features__slider .splide .splide__track {
  overflow: visible;
}
.p-top-features__slider .splide .splide__pagination {
  bottom: -25px;
}
.p-top-features__slider .splide .splide__pagination__page {
  background: #59C6E3;
  opacity: 0.4;
}
.p-top-features__slider .splide .splide__pagination__page.is-active {
  opacity: 1;
}
.p-top-features__each {
  position: relative;
  padding: 30px 16px 0 46px;
}
.p-top-features__each:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 124px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle, #B6EDFC 0%, rgba(182, 237, 252, 0.8) 40%, transparent 70%);
  z-index: 0;
}
.p-top-features__each-in {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 40px 40px 48px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 24px rgba(30, 50, 60, 0.08);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-top-features__each-in {
    display: block;
    padding: 40px 16px 54px;
  }
}
.p-top-features__each-num {
  position: absolute;
  top: -40px;
  left: 40px;
  font-size: 64px;
  color: #005A9E;
  font-family: "Alexandria", sans-serif;
  font-weight: 500;
}
.p-top-features__each-img {
  width: 46.6666666667%;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-features__each-img {
    width: 100%;
  }
}
.p-top-features__each-img img {
  width: 100%;
}
.p-top-features__each-text {
  width: 46.6666666667%;
}
@media screen and (max-width: 767px) {
  .p-top-features__each-text {
    width: 100%;
  }
}
.p-top-features__each-lead {
  font-size: 24px;
  color: #005A9E;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-features__each-lead {
    margin-top: 18px;
  }
}
.p-top-features__each-body {
  margin-top: 24px;
  line-height: 2;
  color: #1E323C;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top-features__each-body {
    margin-top: 12px;
  }
}
.p-top-point {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .p-top-point h2 {
    padding: 0 16px;
  }
}
.p-top-point__slider {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-point__slider {
    width: 84.6994535519%;
    margin-inline: auto;
  }
}
.p-top-point__slider .splide {
  margin-inline: auto;
}
.p-top-point__slider .splide__arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100vw - 32px);
  max-width: 1360px;
  transform: translateX(-50%);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-top-point__slider .splide__arrows {
    display: block;
  }
}
.p-top-point__slider .splide__arrow {
  background: none;
  width: 76px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .p-top-point__slider .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-point__slider .splide__arrow--prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-point__slider .splide__arrow--next {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-point__slider .splide__slide {
    width: 100%;
  }
}
.p-top-point__slider .splide.is-initialized:not(.is-active) .splide__list {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-point__each {
    width: 100%;
    max-width: initial;
  }
}
.p-top-point__thumbnail {
  display: block;
  position: relative;
  width: 100%;
}
.p-top-point__thumbnail:after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: url(../img/common/ico_expand.svg) no-repeat center center;
  background-size: contain;
  box-shadow: 0 0 10px rgba(30, 50, 60, 0.08);
}
.p-top-point__thumbnail img {
  width: 100%;
}
.p-top-point__index {
  width: 280px;
  margin-top: 28px;
  margin-inline: auto;
}
.p-top-service {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    margin-top: 40px;
    width: calc(100% - 32px);
    margin-inline: auto;
  }
}
.p-top-service__inner {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.p-top-service__heading {
  width: 100%;
  height: 80px;
  background: #005A9E;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-top-service__bnrs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 32px 4.6666666667%;
}
@media screen and (max-width: 767px) {
  .p-top-service__bnrs {
    gap: 20px;
  }
}
.p-top-service__bnr {
  width: 47.7941176471%;
}
@media screen and (max-width: 767px) {
  .p-top-service__bnr {
    width: 100%;
  }
}
.p-top-shop {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .p-top-shop {
    width: calc(100% - 32px);
    margin-inline: auto;
    margin-top: 48px;
  }
}
.p-top-shop__hgroup {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-shop__hgroup {
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .p-top-shop__index {
    width: 142px;
  }
}
.p-top-shop__tabs {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .p-top-shop__tabs {
    gap: 10px;
  }
}
.p-top-shop__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 60px) / 6);
  height: 40px;
  border-radius: 8px;
  border: 1px solid #1E323C;
  background: #fff;
  letter-spacing: 0.02em;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-shop__tab {
    width: calc(50% - 5px);
  }
}
.p-top-shop__tab {
  cursor: pointer;
}
.p-top-shop__tab:hover {
  background: #E6F4FF;
}
.p-top-shop__tab.is-current {
  background: #E6F4FF;
}
.p-top-shop .js-top-shop-panel {
  display: none;
}
.p-top-shop .js-top-shop-panel.is-active {
  display: block;
}
.p-top-shop__list {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-shop__list .splide {
    width: 75.4098360656vw;
  }
}
.p-top-shop__list .splide__arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100vw - 32px);
  max-width: 1360px;
  transform: translateX(-50%);
  z-index: 5;
}
.p-top-shop__list .splide__arrow {
  background: none;
  width: 76px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .p-top-shop__list .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-shop__list .splide__arrow--prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-top-shop__list .splide__arrow--next {
    right: 0;
  }
}
.p-top-shop__list .splide__track {
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .p-top-shop__list .splide__slide {
    width: 100%;
  }
}
.p-top-shop__list .splide.is-initialized:not(.is-active) .splide__list {
  display: flex;
  gap: 32px;
}
.p-top-shop__list .splide__slide {
  width: 23%;
}
.p-top-shop__each {
  display: block;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(30, 50, 60, 0.08);
  background: #fff;
  overflow: hidden;
  transition: background-color 0.3s, box-shadow 0.3s;
}
.p-top-shop__each:hover {
  background: #E6F4FF;
  box-shadow: 0 0 0 rgba(30, 50, 60, 0.08);
}
.p-top-shop__each-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}
.p-top-shop__each-img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-shop__each-name {
  position: relative;
  padding: 12px 24px 20px;
}
.p-top-shop__each-name:before {
  content: "";
  position: absolute;
  right: 24px;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #59C6E3;
}
.p-top-shop__each-name:after {
  content: "";
  position: absolute;
  right: 32px;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.p-top-information {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .p-top-information {
    margin-top: 48px;
    width: calc(100% - 32px);
    margin-inline: auto;
  }
}
.p-top-information__inner {
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 24px rgba(30, 50, 60, 0.08);
  padding: 48px 56px;
}
@media screen and (max-width: 767px) {
  .p-top-information__inner {
    padding: 32px 16px 40px;
  }
}
.p-top-information__hgroup {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.p-top-information__hgroup h2 {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-top-information__index {
    width: 142px;
  }
}
.p-top-information__list {
  margin-top: 3px;
}
.p-top-information__list-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid #1E323C;
}
.p-top-information__list-row dt {
  position: relative;
  width: 225px;
  padding-left: 16px;
  padding-right: 117px;
  color: #1E323C;
}
@media screen and (max-width: 767px) {
  .p-top-information__list-row dt {
    width: 209px;
    padding-left: 0;
  }
}
.p-top-information__list-row dt:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 117px;
  height: 26px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
}
.p-top-information__list-row dd {
  position: relative;
  width: calc(100% - 241px);
}
@media screen and (max-width: 767px) {
  .p-top-information__list-row dd {
    width: 100%;
  }
}
.p-top-information__list-row.is-shop dt:after {
  content: "店舗情報";
  background: #59C6E3;
}
.p-top-information__list-row.is-campaign dt:after {
  content: "キャンペーン";
  background: #7FCA97;
}
.p-top-company {
  position: relative;
  min-height: 488px;
  margin-top: 72px;
}
.p-top-company__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 52.5252525253vw;
  height: 488px;
  border-radius: 0 20px 20px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-company__img {
    position: relative;
    width: 100%;
    height: 58.7431693989vw;
    border-radius: 0;
  }
}
.p-top-company__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-company__content {
  margin-left: auto;
  width: 41.6666666667%;
}
@media screen and (max-width: 767px) {
  .p-top-company__content {
    margin-top: 28px;
    width: 100%;
    padding: 0 16px;
  }
}
.p-top-company__desc {
  margin-top: 32px;
  line-height: 2;
  letter-spacing: 0.02em;
}
.p-top-company__list {
  margin-top: 20px;
}
.p-top-company__list-each {
  position: relative;
  display: block;
  margin-top: 12px;
  padding: 16px 40px 20px 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(30, 50, 60, 0.08);
}
.p-top-company__list-each:before {
  content: "";
  position: absolute;
  right: 24px;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #59C6E3;
}
.p-top-company__list-each:after {
  content: "";
  position: absolute;
  right: 32px;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.p-top-recruit {
  margin-top: 72px;
}
.p-top-recruit__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__inner {
    display: block;
  }
}
.p-top-recruit__img {
  width: 53.3333333333%;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__img {
    margin-top: 28px;
    width: 100%;
    padding: 0 16px;
  }
}
.p-top-recruit__content {
  width: 41.6666666667%;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__content {
    margin-top: 28px;
    width: 100%;
    padding: 0 16px;
  }
}
.p-top-recruit__desc {
  margin-top: 32px;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__desc {
    margin-top: 20px;
  }
}
.p-top-recruit__list {
  margin-top: 20px;
}
.p-top-recruit__list-each {
  position: relative;
  display: block;
  margin-top: 12px;
  padding: 16px 40px 20px 16px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 10px rgba(30, 50, 60, 0.08);
}
.p-top-recruit__list-each:before {
  content: "";
  position: absolute;
  right: 24px;
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #59C6E3;
}
.p-top-recruit__list-each:after {
  content: "";
  position: absolute;
  right: 32px;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.p-top-movie {
  width: calc(100% - 40px);
  margin: 72px auto 60px;
  padding: 40px 20px 56px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 0 24px rgba(30, 50, 60, 0.08);
}
@media screen and (max-width: 767px) {
  .p-top-movie {
    padding: 32px 8px;
  }
}
.p-top-movie__heading {
  display: flex;
  justify-content: center;
}
.p-top-movie__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-movie__list {
    display: block;
    padding: 0 16px;
  }
}
.p-top-movie__list .splide {
  overflow: visible;
}
.p-top-movie__list .splide .splide__arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100vw - 32px);
  max-width: 1360px;
  transform: translateX(-50%);
  z-index: 5;
}
.p-top-movie__list .splide .splide__arrow {
  background: none;
  width: 76px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .p-top-movie__list .splide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
.p-top-movie__list .splide .splide__arrow--prev:disabled {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-movie__list .splide .splide__arrow--prev {
    left: 10px;
  }
}
.p-top-movie__list .splide .splide__arrow--next:disabled {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-movie__list .splide .splide__arrow--next {
    right: 10px;
  }
}
.p-top-movie__list .splide .splide__track {
  overflow: hidden;
  padding-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .p-top-movie__list .splide .splide__slide {
    width: 100%;
  }
}
.p-top-movie__list .splide .splide__pagination {
  bottom: -25px;
}
.p-top-movie__list .splide .splide__pagination__page {
  background: #59C6E3;
  opacity: 0.4;
}
.p-top-movie__list .splide .splide__pagination__page.is-active {
  opacity: 1;
}
.p-top-movie__each {
  display: block;
  width: 100%;
  border-radius: 20px;
  max-width: 384px;
  box-shadow: 0 0 10px rgba(30, 50, 60, 0.08);
  overflow: hidden;
}
.p-top-movie__each-iframe {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.p-top-movie__each-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/*
 - for information page
*/
.p-information-index {
  padding: 40px 16px 56px;
}
@media screen and (max-width: 767px) {
  .p-information-index {
    padding-bottom: 72px;
  }
}
.p-information-index__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.p-information-index__each {
  width: calc(25% - 18px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(30, 50, 60, 0.08);
  background: #fff;
  transition: background-color 0.3s, box-shadow 0.3s;
}
@media screen and (max-width: 767px) {
  .p-information-index__each {
    width: 100%;
  }
}
.p-information-index__each:hover {
  background: rgba(89, 198, 255, 0.2);
  box-shadow: 0 0 0 rgba(30, 50, 60, 0.08);
}
.p-information-index__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.p-information-index__img img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-information-index__text {
  padding: 12px 16px 20px;
}
.p-information-index__date {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.p-information-index__title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.p-information-detail {
  padding: 40px 16px 56px;
}
@media screen and (max-width: 767px) {
  .p-information-detail {
    padding-bottom: 72px;
  }
}
.p-information-detail__editable {
  margin-bottom: 64px;
}
.p-information-detail__back {
  max-width: 280px;
  margin-inline: auto;
}

/*
 - for flyer page
*/
.p-flyer {
  padding: 40px 16px 104px;
}
@media screen and (max-width: 767px) {
  .p-flyer {
    padding-bottom: 72px;
  }
}
.p-flyer__term {
  font-size: 24px;
  text-align: center;
}
.p-flyer__term br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-flyer__term br {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-flyer__term {
    font-size: 16px;
  }
}
.p-flyer__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-flyer__content {
    display: block;
  }
}
.p-flyer__each {
  width: 48%;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-flyer__each {
    width: 100%;
    margin-top: 32px;
  }
}
.p-flyer__img a img {
  transition: opacity 0.3s;
}
.p-flyer__img a:hover img {
  opacity: 0.7;
}
.p-flyer__aspect {
  margin-bottom: 24px;
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #005A9E;
}
@media screen and (max-width: 767px) {
  .p-flyer__aspect {
    font-size: 22px;
  }
}
.p-flyer__bnrs {
  margin-top: 64px;
}
.p-flyer__bnrs .splide {
  overflow: visible;
}
.p-flyer__bnrs .splide .splide__arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 5;
}
.p-flyer__bnrs .splide .splide__arrow {
  background: none;
  width: 76px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .p-flyer__bnrs .splide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-flyer__bnrs .splide .splide__arrow--prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-flyer__bnrs .splide .splide__arrow--next {
    right: 0;
  }
}
.p-flyer__bnrs .splide .splide__pagination {
  bottom: -25px;
}
.p-flyer__bnrs .splide .splide__pagination__page {
  background: #59C6E3;
  opacity: 0.4;
}
.p-flyer__bnrs .splide .splide__pagination__page.is-active {
  opacity: 1;
}
.p-flyer__bnrs .splide.is-static {
  visibility: visible;
}
.p-flyer__bnrs .splide.is-static .splide__list {
  justify-content: center;
  gap: 32px;
}
.p-flyer__bnrs .splide.is-static .splide__arrows, .p-flyer__bnrs .splide.is-static .splide__pagination {
  display: none;
}

/*
 - for calender page
*/
.p-calender {
  padding: 40px 16px 104px;
}
@media screen and (max-width: 767px) {
  .p-calender {
    padding-bottom: 72px;
  }
}
.p-calender__main {
  max-width: 773px;
  margin-inline: auto;
}
.p-calender__main .splide {
  overflow: visible;
  padding-inline: 14.2302716688%;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-calender__main .splide {
    padding-inline: 0;
  }
}
.p-calender__main .splide .splide__arrows {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .p-calender__main .splide .splide__arrows {
    bottom: 0;
  }
}
.p-calender__main .splide .splide__arrow {
  background: none;
  width: 76px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .p-calender__main .splide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-calender__main .splide .splide__arrow--prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-calender__main .splide .splide__arrow--next {
    right: 0;
  }
}
.p-calender__main .splide .splide__pagination {
  bottom: -25px;
}
@media screen and (max-width: 767px) {
  .p-calender__main .splide .splide__pagination {
    bottom: -10px;
  }
}
.p-calender__main .splide .splide__pagination__page {
  background: #59C6E3;
  opacity: 0.4;
}
.p-calender__main .splide .splide__pagination__page.is-active {
  opacity: 1;
}
.p-calender__main a img {
  transition: opacity 0.3s;
}
.p-calender__main a:hover img {
  opacity: 0.7;
}
.p-calender__thumbnail {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .p-calender__thumbnail {
    display: none;
  }
}
.p-calender__thumbnail .splide {
  overflow: visible;
}
.p-calender__thumbnail .splide .splide__list {
  justify-content: center;
  padding-left: 32px !important;
}
.p-calender__thumbnail .splide .splide__arrows {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 5;
}
.p-calender__thumbnail .splide .splide__arrow {
  background: none;
  width: 76px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .p-calender__thumbnail .splide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-calender__thumbnail .splide .splide__arrow--prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-calender__thumbnail .splide .splide__arrow--next {
    right: 0;
  }
}
.p-calender__thumbnail .splide .splide__pagination {
  bottom: -25px;
}
.p-calender__thumbnail .splide .splide__pagination__page {
  background: #59C6E3;
  opacity: 0.4;
}
.p-calender__thumbnail .splide .splide__pagination__page.is-active {
  opacity: 1;
}

/*
 - for news page
*/
.p-news-index {
  padding: 40px 16px 104px;
}
@media screen and (max-width: 767px) {
  .p-news-index {
    padding-bottom: 72px;
  }
}
.p-news-index__list {
  margin-inline: auto;
}
.p-news-index__list-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid #1E323C;
}
.p-news-index__list-row dt {
  position: relative;
  width: 225px;
  padding-left: 16px;
  padding-right: 117px;
  color: #1E323C;
}
@media screen and (max-width: 767px) {
  .p-news-index__list-row dt {
    width: 209px;
    padding-left: 0;
  }
}
.p-news-index__list-row dt:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 117px;
  height: 26px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
}
.p-news-index__list-row dd {
  position: relative;
  width: calc(100% - 241px);
}
@media screen and (max-width: 767px) {
  .p-news-index__list-row dd {
    width: 100%;
  }
}
.p-news-index__list-row.is-guide dt:after {
  content: "ご案内";
  background: #7FCA97;
}
.p-news-index__list-row.is-shop dt:after {
  content: "店舗情報";
  background: #59C6E3;
}
.p-news-index__list-row.is-campaign dt:after {
  content: "キャンペーン";
  background: #7F8CCA;
}

/*
 - for news page
*/
.p-shop-index {
  padding: 40px 16px 104px;
}
@media screen and (max-width: 767px) {
  .p-shop-index {
    padding-bottom: 72px;
  }
}
.p-shop-index__tabs {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .p-shop-index__tabs {
    gap: 10px;
  }
}
.p-shop-index__tab {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 60px) / 6);
  height: 40px;
  border-radius: 8px;
  border: 1px solid #1E323C;
  background: #fff;
  letter-spacing: 0.02em;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-shop-index__tab {
    width: calc(50% - 5px);
  }
}
.p-shop-index__tab {
  cursor: pointer;
}
.p-shop-index__tab:hover {
  background: #E6F4FF;
}
.p-shop-index__tab.is-current {
  background: #E6F4FF;
}
.p-shop-index__section {
  margin-top: 48px;
}
.p-shop-index__table {
  margin-top: 32px;
}
.p-shop-index__table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .p-shop-index__table table {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-shop-index__table table thead {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-shop-index__table table thead tr {
    display: block;
  }
}
.p-shop-index__table table thead th {
  width: 14.2857142857%;
  padding: 12px;
  background: #59C6E3;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-shop-index__table table thead th {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-shop-index__table table tbody {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-shop-index__table table tbody tr {
    display: block;
    margin-top: 16px;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 0 8px rgba(30, 50, 60, 0.08);
  }
}
.p-shop-index__table table tbody td {
  padding: 12px;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(30, 50, 60, 0.08);
  vertical-align: middle;
  text-align: center;
  color: #1E323C;
  font-weight: 500;
}
.p-shop-index__table table tbody td.p-shop-index__address {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-shop-index__table table tbody td {
    display: block;
    padding: 8px 0;
    box-shadow: none;
    background: none;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-shop-index__table table tbody td dl {
    display: flex;
  }
}
.p-shop-index__table table tbody td dl dt {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-shop-index__table table tbody td dl dt {
    display: block;
    width: 64px;
  }
}
@media screen and (max-width: 767px) {
  .p-shop-index__table table tbody td dl dd {
    position: relative;
    padding-left: 1em;
  }
  .p-shop-index__table table tbody td dl dd:before {
    content: "：";
    position: absolute;
    left: 0;
    top: 0;
  }
}
.p-shop-index__link {
  text-decoration: underline;
  color: #005A9E;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-shop-index__link {
    font-size: 20px;
  }
}
.p-shop-index__btn {
  display: inline-block;
  width: 100%;
  padding: 12px 5px;
  border-radius: 8px;
  background: #63D085;
  text-align: center;
  color: #fff;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .p-shop-index__btn {
    padding: 16px 5px;
  }
}
.p-shop-index__btn:hover {
  background: #86e6a4;
}

.p-shop-detail {
  padding: 24px 16px 104px;
}
@media screen and (max-width: 767px) {
  .p-shop-detail {
    padding-bottom: 72px;
  }
}
.p-shop-detail__imgs {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-shop-detail__imgs {
    display: block;
  }
}
.p-shop-detail__mainimage {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-shop-detail__mainimage {
    width: 100%;
  }
}
.p-shop-detail__imglist {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-shop-detail__imglist {
    width: 100%;
    margin-top: 32px;
  }
}
.p-shop-detail__imglist .splide .splide__arrow {
  background: none;
  width: 76px;
  height: 76px;
}
@media screen and (max-width: 767px) {
  .p-shop-detail__imglist .splide .splide__arrow {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-shop-detail__imglist .splide .splide__arrow--prev {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-shop-detail__imglist .splide .splide__arrow--next {
    right: 0;
  }
}
.p-shop-detail__imglist .splide .splide__pagination {
  bottom: -25px;
}
.p-shop-detail__imglist .splide .splide__pagination__page {
  background: #59C6E3;
  opacity: 0.4;
}
.p-shop-detail__imglist .splide .splide__pagination__page.is-active {
  opacity: 1;
}
.p-shop-detail__imglist .p-shop-detail__img {
  position: relative;
}
.p-shop-detail__imglist .p-shop-detail__img iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-shop-detail__btns {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-shop-detail__btns {
    display: block;
    margin-top: 64px;
  }
}
.p-shop-detail__btn {
  width: calc(50% - 24px);
  max-width: 280px;
}
@media screen and (max-width: 767px) {
  .p-shop-detail__btn {
    width: 100%;
    margin-top: 24px;
    margin-inline: auto;
  }
}
.p-shop-detail__btn a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px 40px 16px 20px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid #1E323C;
  text-align: center;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}
.p-shop-detail__btn a:after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 10px;
  height: 10px;
  background: #59C6E3;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.p-shop-detail__btn a:hover {
  background: #59C6E3;
  color: #fff;
}
.p-shop-detail__btn a span {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.p-shop-detail__btn a i img {
  height: 24px;
  width: auto;
}
.p-shop-detail__section {
  margin-top: 64px;
}
.p-shop-detail__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-shop-detail__icons span {
  display: inline-block;
  height: 50px;
  width: auto;
}
.p-shop-detail__back {
  max-width: 280px;
  margin-inline: auto;
  margin-top: 48px;
}

/*
 - for company page
*/
.p-company {
  overflow-x: hidden;
  padding: 40px 16px 0;
}
.p-company__overview {
  scroll-margin-top: 120px;
  margin: 44px 0 168px;
}
@media screen and (max-width: 767px) {
  .p-company__overview {
    margin: 32px 0 48px;
  }
}
.p-company__message {
  scroll-margin-top: 120px;
  margin: 168px calc(50% - 50vw) 96px;
  padding: 72px calc(50vw - 50%) 96px;
  background: #EAF6F8;
  border-top-left-radius: 104px;
}
@media screen and (max-width: 767px) {
  .p-company__message {
    margin: 48px calc(50% - 50vw);
    padding: 48px calc(50vw - 50%) 51px;
    border-top-left-radius: 40px;
  }
}
.p-company__message-inner {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6%;
}
@media screen and (max-width: 767px) {
  .p-company__message-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
}
.p-company__message-content {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .p-company__message-content {
    width: auto;
  }
}
.p-company__message-text, .p-company__policy-text {
  margin-top: 32px;
  font-size: 40px;
  font-weight: 700;
  color: #005A9E;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-company__message-text, .p-company__policy-text {
    font-size: 28px;
  }
}
.p-company__message-img {
  margin-top: -144px;
  margin-right: -192px;
}
@media screen and (max-width: 767px) {
  .p-company__message-img {
    margin: 0;
  }
}
.p-company__message-signature {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #1E323C;
}
.p-company__message-ceo {
  font-size: 18px;
}
.p-company__message-name {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .p-company__message-name {
    font-size: 24px;
  }
}
.p-company__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 64px 48px;
  width: 100%;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-company__columns {
    gap: 50px;
  }
}
.p-company__column {
  position: relative;
  width: calc(50% - 24px);
}
@media screen and (max-width: 767px) {
  .p-company__column {
    width: 100%;
    padding: 40px 16px 54px;
  }
}
.p-company__column:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 124px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: radial-gradient(circle, #B6EDFC 0%, rgba(182, 237, 252, 0.8) 40%, transparent 70%);
  z-index: 0;
  transform: translate(-36px, -36px);
}
.p-company__column-in {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 0 24px rgba(30, 50, 60, 0.08);
  background: #fff;
  padding: 40px 32px 40px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-company__column-in {
    width: 100%;
  }
}
.p-company__column-lead {
  line-height: 1.5;
  font-size: 24px;
  font-weight: 700;
  color: #005A9E;
  letter-spacing: 0.02em;
}
.p-company__column-body {
  margin-top: 20px;
  line-height: 2;
  font-size: 16px;
  font-weight: 500;
  color: #1E323C;
  letter-spacing: 0.02em;
}
.p-company__history {
  scroll-margin-top: 120px;
  margin: 96px 0 64px;
}
@media screen and (max-width: 767px) {
  .p-company__history {
    margin: 48px 0;
  }
}
.p-company__history-data {
  margin-top: 32px;
  border-bottom: 1px solid #1E323C;
}
.p-company__history-data dt, .p-company__history-data dd {
  padding-top: 24px;
  border-top: 1px solid #1E323C;
  line-height: 1;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-company__history-data dt, .p-company__history-data dd {
    line-height: 1.6;
  }
}
.p-company__history-data dt:first-of-type, .p-company__history-data dd:first-of-type {
  padding-top: 0;
  border-top: none;
}
.p-company__history-data dt {
  padding-left: 1em;
  width: 9.375em;
  float: left;
  font-weight: bold;
  color: #005A9E;
}
@media screen and (max-width: 767px) {
  .p-company__history-data dt {
    padding-right: 1em;
    width: auto;
    float: none;
  }
}
.p-company__history-data dd {
  margin-left: 9.375em;
  padding-right: 1em;
  padding-bottom: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-company__history-data dd {
    margin-top: 1em;
    margin-left: 0;
    padding-top: 0;
    padding-left: 1em;
    border-top: none;
  }
}
.p-company__history-data dd::after {
  content: "";
  display: block;
  clear: both;
}
.p-company__policy {
  scroll-margin-top: 120px;
  margin: 64px calc(50% - 50vw) 0;
  padding: 75px calc(50vw - 50%) 104px;
  border-top-left-radius: 104px;
  border-top-right-radius: 104px;
  background: #EAF6F8;
}
@media screen and (max-width: 767px) {
  .p-company__policy {
    margin: 48px calc(50% - 50vw) 0;
    padding: 48px calc(50vw - 50%) 72px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
  }
}
/*
 - for company page
*/
.p-concept {
  overflow-x: hidden;
  padding: 90px 16px 100px;
}
.p-concept__lead {
  position: relative;
  padding: 4.3333333333% 22% 0;
}
@media screen and (max-width: 960px) {
  .p-concept__lead {
    padding: 0;
  }
}
.p-concept__lead-main {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  color: #005A9E;
}
@media screen and (max-width: 767px) {
  .p-concept__lead-main {
    font-size: 32px;
  }
}
.p-concept__lead-main br {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-concept__lead-main br {
    display: block;
  }
}
.p-concept__lead-body {
  margin-top: 32px;
  font-weight: 500;
  line-height: 2.4;
  text-align: center;
  letter-spacing: 0.02em;
}
.p-concept__lead-deco01 {
  position: absolute;
  left: 8.9166666667%;
  top: 0;
  width: 11.3333333333%;
}
@media screen and (max-width: 960px) {
  .p-concept__lead-deco01 {
    display: none;
  }
}
.p-concept__lead-deco02 {
  position: absolute;
  left: 0;
  top: min(168px, 14vw);
  width: 22%;
}
@media screen and (max-width: 960px) {
  .p-concept__lead-deco02 {
    display: none;
  }
}
.p-concept__lead-deco03 {
  position: absolute;
  left: 22%;
  top: min(400px, 33.3333333333vw);
  width: 5.3333333333%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #92CFA5;
}
@media screen and (max-width: 960px) {
  .p-concept__lead-deco03 {
    display: none;
  }
}
.p-concept__lead-deco04 {
  position: absolute;
  right: 0.4166666667%;
  top: min(24px, 2vw);
  width: 18.6666666667%;
}
@media screen and (max-width: 960px) {
  .p-concept__lead-deco04 {
    display: none;
  }
}
.p-concept__lead-deco05 {
  position: absolute;
  right: 1.1666666667%;
  top: min(264px, 22vw);
  width: 3.6666666667%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #9BDBEC;
}
@media screen and (max-width: 960px) {
  .p-concept__lead-deco05 {
    display: none;
  }
}
.p-concept__lead-deco06 {
  position: absolute;
  right: 9.6666666667%;
  top: min(285px, 23.75vw);
  width: 12.6666666667%;
}
@media screen and (max-width: 960px) {
  .p-concept__lead-deco06 {
    display: none;
  }
}
.p-concept__thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: min(48px, 4vw);
  margin-top: 96px;
}
@media screen and (max-width: 960px) {
  .p-concept__thumbnails {
    display: block;
  }
}
.p-concept__thumbnails-title {
  display: flex;
  justify-content: center;
  align-items: center;
  order: 2;
  width: 30.6666666667%;
  aspect-ratio: 368/200;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
}
.p-concept__thumbnails-title span {
  font-size: 64px;
  color: #005A9E;
}
@media screen and (max-width: 960px) {
  .p-concept__thumbnails-title {
    width: 100%;
    aspect-ratio: auto;
    font-size: 32px;
  }
  .p-concept__thumbnails-title span {
    font-size: 32px;
  }
}
.p-concept__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30.6666666667%;
  aspect-ratio: 368/200;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .p-concept__btn {
    width: 100%;
    aspect-ratio: 320/174;
    margin-top: 40px;
  }
}
.p-concept__btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 33.6956521739%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #B6EDFC;
  filter: blur(7px);
  transform: translate(-12.9032258065%, -19.3548387097%);
}
.p-concept__btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  z-index: 0;
}
.p-concept__btn-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  transition: background-color 0.5s;
}
.p-concept__btn-bg img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-concept__btn:nth-of-type(n-4) {
  order: 1;
}
.p-concept__btn:nth-of-type(n+5) {
  order: 3;
}
.p-concept__btn-txt {
  position: relative;
  text-align: center;
}
.p-concept__btn-num {
  font-family: "Alexandria", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #005A9E;
}
.p-concept__btn-title {
  text-align: center;
  font-size: 32px;
  font-weight: 500;
  color: #1E323C;
}
.p-concept__btn-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 36px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #59C6E3;
}
.p-concept__btn-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38.8888888889%;
  height: 2px;
  border-radius: 100px;
  background: #59C6E3;
  transform: translate(-50%, -50%);
}
.p-concept__btn-icon:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 38.8888888889%;
  border-radius: 100px;
  background: #59C6E3;
  transform: translate(-50%, -50%);
}
.p-concept__btn:hover .p-concept__btn-bg:after {
  background: rgba(255, 255, 255, 0.6);
}
.p-concept__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 50, 60, 0.6);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s;
}
.p-concept__overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-concept__modal {
  position: fixed;
  top: 10%;
  left: 50%;
  width: calc(100% - 32px);
  max-width: 1200px;
  max-height: 80%;
  background: #fff;
  border-radius: 32px;
  transform: translateX(-50%);
  z-index: 1001;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-concept__modal::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 960px) {
  .p-concept__modal {
    border-radius: 16px;
  }
}
.p-concept__modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.p-concept__modal-close {
  position: sticky;
  top: 32px;
  margin-left: calc(100% - 88px);
  width: 56px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid #59C6E3;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  .p-concept__modal-close {
    width: 48px;
    top: 16px;
    margin-left: calc(100% - 64px);
  }
}
.p-concept__modal-close:before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 30.5555555556%;
  width: 38.8888888889%;
  height: 2px;
  border-radius: 100px;
  background: #59C6E3;
  transform: rotate(45deg);
}
.p-concept__modal-close:after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 30.5555555556%;
  width: 38.8888888889%;
  height: 2px;
  border-radius: 100px;
  background: #59C6E3;
  transform: rotate(-45deg);
}
.p-concept__modal-content {
  padding: 6.6666666667% 8%;
}
@media screen and (max-width: 960px) {
  .p-concept__modal-content {
    padding: 46px 16px 80px;
  }
}
.p-concept__modal-title {
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .p-concept__modal-title {
    font-size: 32px;
  }
}
.p-concept__modal-title span {
  font-family: "Alexandria", sans-serif;
  font-weight: 700;
  font-size: 56px;
  color: #005A9E;
}
@media screen and (max-width: 960px) {
  .p-concept__modal-title span {
    font-size: 40px;
  }
}
.p-concept__modal-lead {
  margin-top: 48px;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .p-concept__modal-lead {
    margin-top: 32px;
  }
}
.p-concept__modal-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 48px;
}
.p-concept__modal-block.-reverse {
  flex-direction: row-reverse;
}
.p-concept__modal-img {
  width: 48.4126984127%;
}
@media screen and (max-width: 960px) {
  .p-concept__modal-img {
    width: 100%;
  }
}
.p-concept__modal-img img {
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  .p-concept__modal-img img {
    border-radius: 10px;
  }
}
.p-concept__modal-txt {
  width: 48.4126984127%;
}
@media screen and (max-width: 960px) {
  .p-concept__modal-txt {
    width: 100%;
    margin-top: 32px;
  }
}
.p-concept__modal-copy {
  line-height: 1.5;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #59C6E3;
}
.p-concept__modal-body {
  margin-top: 32px;
  line-height: 2;
  font-weight: 500;
  color: #1E323C;
  letter-spacing: 0.02em;
}
.p-concept__modal-note {
  margin-top: 10px;
  line-height: 1.7;
  color: #1E323C;
  letter-spacing: 0.02em;
  font-size: 12px;
}

/*
 - for company page
*/
.p-faq {
  padding: 40px 16px 104px;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-bottom: 72px;
  }
}
.p-faq__section {
  scroll-margin-top: 120px;
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .p-faq__section {
    margin-top: 32px;
  }
}
.p-faq__acc {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-faq__acc-title {
  margin-top: 40px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #005A9E;
}
@media screen and (max-width: 767px) {
  .p-faq__acc-title {
    margin-top: 32px;
    font-size: 20px;
  }
  .p-faq__acc-title + .p-faq__acc {
    margin-top: 16px;
  }
}
.p-faq__acc-item {
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 0 8px rgba(30, 50, 60, 0.08);
}
.p-faq__acc-question {
  padding: 24px 32px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-faq__acc-question {
    padding: 24px;
  }
}
.p-faq__acc-question-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  min-height: 36px;
  padding-right: 60px;
}
.p-faq__acc-question span {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #005A9E;
}
.p-faq__acc-question dt {
  padding: calc((36px - 1.5em) / 2) 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #1E323C;
}
.p-faq__acc-answer {
  overflow: hidden;
  padding: 0 32px;
}
@media screen and (max-width: 767px) {
  .p-faq__acc-answer {
    padding: 0 24px;
  }
}
.p-faq__acc-answer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 16px;
  padding: 24px 0;
  background-image: repeating-linear-gradient(90deg, #c8c8c8, #c8c8c8 6px, transparent 6px, transparent 12px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 100% 1px;
  opacity: 0;
  transition: opacity 0.3s;
}
.p-faq__acc-item.is-open .p-faq__acc-answer-inner {
  opacity: 1;
}
.p-faq__acc-answer span {
  font-size: 18px;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #59C6E3;
}
.p-faq__acc-answer dd {
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #1E323C;
}
.p-faq__acc-action {
  position: absolute;
  top: 0;
  right: 0;
  width: 36px;
  height: 36px;
  background: url(../img/faq/ico_acc_open.svg) no-repeat center/contain;
}
.p-faq__acc-item.is-open .p-faq__acc-action {
  background-image: url(../img/faq/ico_acc_close.svg);
}

/*
 - for company page
*/
.p-point section {
  margin-inline: auto;
}
.p-point .page_wrap.point {
  padding: 30px 0 100px 0;
  background: url(../img/page/point_bg.jpg) repeat-x;
}
.p-point .point_main {
  text-align: center;
  margin: 80px 0 0 0;
}
.p-point .point_list {
  margin: 0 auto 0px auto;
  width: 80%;
  position: relative;
  top: -80px;
}
.p-point .point_list ul {
  margin: 0;
  padding: 0;
}
.p-point .point_list dl {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
}
.p-point .point_list dl dt {
  margin: 0;
  padding: 0;
  width: 10%;
  float: left;
  margin-bottom: 20px;
}
.p-point .point_list dl dd {
  margin: 0;
  padding: 2% 0 0 0;
  width: 88%;
  float: right;
  min-height: 82px;
  margin-bottom: 20px;
  font-size: 160%;
  font-weight: bold;
  line-height: 160%;
}
.p-point .point_list dl dd div {
  border-bottom: 1px solid #9E9998;
  padding-bottom: 10px;
}
.p-point .point_list dl dd span.red {
  color: #D71618;
}
.p-point .point_list dl dd span.large {
  font-size: 150%;
}
.p-point .point_howto {
  text-align: center;
}
.p-point .point_howto a {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-point section {
    width: 94%;
  }
  .p-point .point_main {
    margin: 20px 0 0 0;
  }
  .p-point .point_list {
    width: 100%;
    top: -50px;
  }
  .p-point .point_list dl dt {
    width: 20%;
  }
  .p-point .point_list dl dd {
    width: 78%;
    font-size: 120%;
  }
}

/*
 - for company page
*/
.p-developer {
  padding: 40px 16px 104px;
}
.p-developer .prelead {
  margin-bottom: 40px;
}
.p-developer .text-box {
  width: 94%;
  margin: 40px auto 60px auto;
}
@media screen and (max-width: 767px) {
  .p-developer .text-box {
    margin-top: 20px;
  }
}
.p-developer .text-box dl.tenpo-dl {
  width: 100%;
  overflow: hidden;
}
.p-developer .text-box dl.tenpo-dl dt {
  width: 15%;
  float: left;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
.p-developer .text-box dl.tenpo-dl dd {
  width: 85%;
  float: left;
  margin: 0;
  padding: 0;
}
.p-developer .text-box dl.tenpo-dl dd ul {
  list-style-type: disc;
}
.p-developer .text-box dl.tenpo-dl dd ul.tenpo-li {
  margin: 0 0 20px 20px;
  padding: 0;
}
.p-developer .text-box dl.tenpo-dl dd ul.tenpo-li li {
  margin: 0 0 5px 0;
}
.p-developer .text-box dl.tenpo-dl dd ul.tenpo-li.decimal li {
  list-style: decimal;
}
@media screen and (max-width: 767px) {
  .p-developer .text-box dl.tenpo-dl dt {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }
  .p-developer .text-box dl.tenpo-dl dd {
    width: 100%;
    float: none;
  }
}

/*
 - for company page
*/
.p-app .app_wrap01 {
  background: #1E4984;
  z-index: 1;
  position: relative;
  text-align: center;
  padding-bottom: 60px;
}
.p-app .app_wrap02 {
  z-index: 2;
  position: relative;
  text-align: center;
  top: -40px;
  margin-bottom: -80px;
}
.p-app .app_wrap02 section {
  width: 1024px;
  max-width: 94%;
  margin-inline: auto;
}
.p-app .app_wrap02 img {
  vertical-align: bottom;
}
.p-app .app_wrap03 {
  background: #E83436;
  z-index: 1;
  position: relative;
  padding-top: 60px;
  padding-bottom: 30px;
}
.p-app .app_wrap03 section {
  width: 1024px;
  max-width: 94%;
  margin-inline: auto;
}
.p-app .app_wrap03 .text p {
  margin-bottom: 30px;
}
.p-app .app_wrap04 {
  padding: 30px 0;
}
.p-app .app_point_box {
  margin-bottom: 30px;
  position: relative;
}
.p-app .app_point_box .icon {
  position: relative;
  z-index: 2;
}
.p-app .app_point_box .title {
  position: relative;
  background: #1E4984;
  color: #fff;
  font-weight: bold;
  padding: 20px 30px 20px 100px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  z-index: 1;
  top: -50px;
  margin-bottom: -50px;
}
.p-app .app_point_box .title span.font20 {
  font-size: 20px;
}
.p-app .app_point_box .title span.yellow {
  color: #FFEC00;
  font-size: 28px;
}
.p-app .app_point_box .text {
  background: #fff;
  padding: 20px 50px;
}
.p-app .app_point_box .text p.label {
  text-align: right;
  margin-bottom: 0;
}
.p-app .app_point_box .text span.red {
  color: #DF1F28;
}
.p-app .app_point_box.box02 p.img {
  width: 30%;
  float: left;
  margin-right: 30px;
}
.p-app .app_point_box.box03 p.img {
  text-align: center;
}
.p-app .app_wrap03 .app_attention {
  color: #fff;
}
.p-app .app_attention {
  margin: 0 0 0 15px;
  padding: 0;
  list-style: none;
  text-indent: -15px;
}
.p-app .app_attention li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.p-app .app_attention li:before {
  content: "※";
}
.p-app .app_wrap04 .qr_wrap .left {
  width: 30%;
  float: left;
}
.p-app .app_wrap04 .qr_wrap .left h3 {
  margin-bottom: 10px;
}
.p-app .app_wrap04 .qr_wrap .left h3:after {
  content: "▶";
}
.p-app .app_wrap04 .qr_wrap .right {
  width: 65%;
  float: right;
}
.p-app .app_wrap04 .qr_wrap .right .img {
  margin-bottom: 10px;
}
.p-app .app_wrap04 .qr_wrap .right .img a {
  width: 43%;
  margin-right: 4%;
  display: inline-block;
}
.p-app .app_wrap04 .qr_wrap .right .img a:last-child {
  margin-right: 0%;
}
.p-app .app_wrap04 .qr_wrap .right .app_attention {
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .p-app .app_wrap01 {
    padding-bottom: 80px;
  }
  .p-app .app_wrap02 {
    top: -60px;
    margin-bottom: -80px;
  }
  .p-app .app_wrap03 {
    padding-top: 40px;
  }
  .p-app .app_point_box .icon img {
    width: 60px;
  }
  .p-app .app_point_box .title {
    padding: 20px 30px 20px 70px;
    top: -35px;
    margin-bottom: -35px;
  }
  .p-app .app_point_box .text {
    padding: 20px;
  }
  .p-app .app_point_box .title span.font20 {
    font-size: 16px;
  }
  .p-app .app_point_box .title span.yellow {
    font-size: 20px;
  }
  .p-app .app_point_box.box02 p.img {
    width: 100%;
    float: none;
    margin-right: 0px;
  }
  .p-app .app_wrap04 .qr_wrap .left {
    width: 100%;
    float: none;
    margin-bottom: 15px;
  }
  .p-app .app_wrap04 .qr_wrap .right {
    width: 100%;
    float: none;
  }
  .p-app .app_wrap04 .qr_wrap .left h3 {
    margin-bottom: 10px;
    font-size: 20px;
    text-align: center;
  }
  .p-app .app_wrap04 .qr_wrap .left h3:after {
    content: unset;
  }
  .p-app .app_wrap04 .qr_wrap .left p.img {
    display: none;
  }
  .p-app .app_wrap04 .qr_wrap .right .img a {
    width: 47%;
  }
}

/*
 - for company page
*/
.p-women {
  padding: 40px 16px 104px;
}
.p-women .l-inner {
  max-width: 1024px;
}
.p-women .josei-main {
  margin-bottom: 40px;
}
.p-women .josei-prelead {
  margin-bottom: 50px;
}
.p-women .josei-span {
  background: #F9D0DF;
  padding: 20px 0;
  margin-bottom: 40px;
  font-weight: bold;
  font-size: 120%;
  text-align: center;
}
.p-women .josei-kadai {
  width: 94%;
  margin: 0 auto 100px auto;
}
.p-women .josei-kadai .block {
  width: 65%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
}
.p-women .josei-kadai .block .photo {
  float: left;
  width: 17%;
  padding-right: 3%;
}
.p-women .josei-kadai .block .text {
  float: right;
  width: 80%;
  font-size: 110%;
}
.p-women .josei-mokuhyo {
  text-align: center;
  margin-bottom: 60px;
}
.p-women .josei-torikumi {
  margin-bottom: 100px;
  overflow: hidden;
}
.p-women .josei-torikumi.column3 .box {
  width: 30% !important;
  float: left;
  margin-right: 5%;
}
.p-women .josei-torikumi.column3 div.box:nth-child(3n) {
  margin-right: 0 !important;
}
.p-women .josei-torikumi .box {
  margin-bottom: 30px;
  width: 48.5%;
  float: left;
  margin-right: 3%;
}
.p-women .josei-torikumi.column2 div.box:nth-child(2n) {
  margin-right: 0;
}
.p-women .josei-torikumi h3 {
  font-size: 130%;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.p-women .josei-torikumi .line_center {
  margin-bottom: 30px;
  text-align: center;
}
.p-women .josei-torikumi .photo {
  margin-bottom: 20px;
}
.p-women .josei-torikumi h4 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 120%;
  color: #E4007F;
  border-bottom: 1px solid #E4007F;
  font-weight: bold;
}
.p-women .josei-torikumi ul {
  margin: 0 0 0 20px;
  padding: 0;
  list-style-type: disc;
}
.p-women .josei-torikumi ul li {
  margin: 0 0 5px 0;
  padding: 0;
}
.p-women .josei-now {
  font-size: 130%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-women .josei-kadai .block {
    width: 100%;
    float: none;
    margin-bottom: 15px;
  }
  .p-women .josei-kadai {
    width: 100%;
  }
  .p-women .josei-kadai .block .photo {
    width: 22%;
  }
  .p-women .josei-kadai .block .text {
    width: 78%;
  }
  .p-women .josei-torikumi.column3 .box {
    width: 100% !important;
    float: none;
    margin-right: 0%;
    margin-bottom: 50px;
  }
  .p-women .josei-torikumi .box {
    width: 100%;
    float: none;
    margin-right: 0%;
  }
  .p-women .josei-torikumi {
    margin-bottom: 20px;
  }
  .p-women .josei-now {
    text-align: left;
  }
}

/*
 - for company page
*/
.p-terms {
  padding: 40px 16px 104px;
}
.p-terms .prelead {
  margin-bottom: 60px;
}
.p-terms .text-box {
  width: 94%;
  margin: 40px auto 60px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-terms .text-box {
    margin-top: 20px;
  }
}
.p-terms ol {
  list-style-type: decimal;
  padding-inline-start: 40px;
}
.p-terms ul {
  list-style-type: disc;
  padding-inline-start: 40px;
}
.p-terms ul.privacy-list {
  margin: 0 0 20px 20px;
  padding: 0;
}

/*
 - for company page
*/
.p-contact {
  overflow-x: hidden;
  padding: 90px 16px 100px;
}
.p-contact p {
  margin: 0 0 30px 0;
}
.p-contact .contact_wrap p {
  margin: 0;
}
.p-contact .font_red {
  color: #FF0000 !important;
}
.p-contact .font_darkred {
  color: #990000 !important;
}
.p-contact .font_bold {
  font-weight: bold;
}
.p-contact .inquiry_attention {
  border: 1px solid #59C6E3;
  padding: 20px 40px;
  border-radius: 5px;
  margin-bottom: 30px;
}
.p-contact .inquiry_attention h3 {
  border-bottom: 1px solid #ccc;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 150%;
  font-weight: bold;
}
.p-contact .inquiry_attention ul li {
  margin-bottom: 15px;
  font-size: 90%;
  list-style: decimal;
  padding: 0 0 0 10px;
}
.p-contact .inquiry_attention ul li:last-child {
  margin-bottom: 0;
}
.p-contact .inquiry_attention p {
  padding-left: 20px;
}
.p-contact .contact_wrap {
  background: #EEF9FB;
  padding: 5% 10%;
}
.p-contact .contact_wrap dl {
  margin: 0 0 60px 0;
  padding: 0;
}
.p-contact .contact_wrap dl dt {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 110%;
  font-weight: bold;
}
.p-contact .contact_wrap dl dt span.hissu {
  margin-left: 10px;
  color: #F00;
  font-size: 90%;
}
.p-contact .contact_wrap dl dd {
  margin: 0 0 35px 0;
  padding: 0;
}
.p-contact .contact_wrap dl dd.text input {
  width: 80%;
  padding: 1.5%;
  border: 1px solid #efefef;
  margin-bottom: 5px;
  background: #fff;
}
.p-contact .contact_wrap dl dd.text input::-moz-placeholder {
  color: #aaaaaa;
  font-size: 13px;
}
.p-contact .contact_wrap dl dd.text input::placeholder {
  color: #aaaaaa;
  font-size: 13px;
}
.p-contact input {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  margin: 3px 3px 0 5px;
}
.p-contact .contact_wrap dl dd.kubun label {
  width: 33%;
  float: left;
  cursor: pointer;
}
.p-contact .contact_wrap dl dd.textarea textarea {
  width: 100% !important;
  height: 250px !important;
  padding: 1.5%;
  border: 1px solid #efefef;
  background: #fff;
}
.p-contact .contact_wrap dl dd.tenpo .area_wrap {
  margin-bottom: 15px;
}
.p-contact .contact_wrap dl dd.tenpo .area_wrap .area {
  width: 15%;
  float: left;
}
.p-contact .contact_wrap dl dd.tenpo .area_wrap .shop {
  width: 85%;
  float: right;
}
.p-contact .contact_wrap dl dd.tenpo .area_wrap .shop label {
  width: 25%;
  float: left;
  cursor: pointer;
}
.p-contact .step-btns > p {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.p-contact .step-btns > p > input.wpcf7-previous {
  display: inline-block;
  padding: 0 20px;
  text-align: center;
  text-decoration: underline;
  cursor: pointer;
}
.p-contact .step-btns > p > input.wpcf7-submit {
  display: inline-block;
  width: calc(50% - 10px);
  max-width: 350px;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
  color: #0968A2;
  font-size: 130%;
  font-weight: bold;
  padding: 20px 0;
  background: #fff url(../img/page/contact_btn-point.png) no-repeat 95% center;
  -webkit-transition-property: background;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-contact .step-btns > p > input.wpcf7-submit {
    width: 100%;
  }
}
.p-contact .step-btns > p > input.wpcf7-submit:hover {
  background: #ededed url(../img/page/contact_btn-point.png) no-repeat 95% center;
}

.p-thanks {
  overflow-x: hidden;
  padding: 90px 16px 100px;
}
.p-thanks .lead {
  color: #005A9E;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.p-thanks .body {
  line-height: 2;
  font-size: 16px;
  color: #1E323C;
}

/*
 - for news page
*/
.p-sitemap {
  padding: 80px 16px 64px;
}
@media screen and (max-width: 767px) {
  .p-sitemap {
    padding-bottom: 40px;
  }
}
.p-sitemap-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-sitemap-index section {
  width: calc(50% - 20px);
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-sitemap-index section {
    width: 100%;
  }
}
.p-sitemap-list {
  margin-top: 40px;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .p-sitemap-list {
    margin-top: 20px;
  }
}
.p-sitemap-list li {
  list-style: disc;
  margin-top: 5px;
}
.p-sitemap-list li a {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-sitemap-list li a {
    font-size: 16px;
  }
}
.p-sitemap-list li a:hover {
  text-decoration: underline;
}

/*
 - for 404 page
*/
.p-notfound {
  padding: 80px 16px 80px;
}/*# sourceMappingURL=style.css.map */