@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap");
.visible, .invisible {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.visible {
  opacity: 1;
}
.visible.translateY {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(100px);
}

.invisible.translateY {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateY(100px);
}

.visible.translateY {
  transform: translateY(0);
}
.visible.translateToLeft {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(100px);
}

.invisible.translateToLeft {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(100px);
}

.visible.translateToLeft {
  transform: translateX(0);
}
.visible.translateToRight {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-100px);
}

.invisible.translateToRight {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: translateX(-100px);
}

.visible.translateToRight {
  transform: translateX(0);
}
.visible.translateScaleUp {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(0.5);
}

.invisible.translateScaleUp {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(0.5);
}

.visible.translateScaleUp {
  transform: scale(1);
}
.visible.translateScaleDown {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(1.4);
}

.invisible.translateScaleDown {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(1.4);
}

.visible.translateScaleDown {
  transform: scale(1);
}
.visible.translateRotate {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: rotate(360deg);
}

.invisible.translateRotate {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: rotate(360deg);
}

.visible.translateRotate {
  transform: rotate(0deg);
}

[data-target] {
  cursor: pointer;
}

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

html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  font-weight: 400;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
}

article, aside, footer, header, nav, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, a, p, span, em, small, strong, sub, sup, mark, del, ins, strike, abbr, dfn, blockquote, q, cite, code, pre, ol, ul, li, dl, dt, dd, div, section, article, main, aside, nav, header, hgroup, footer, img, figure, figcaption, address, time, audio, video, canvas, iframe, details, summary, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

a {
  outline: none;
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: top;
  image-rendering: -webkit-optimize-contrast;
}

video {
  max-width: 100%;
  height: auto;
}

code, kbd, pre, samp {
  font-size: inherit;
  font-family: monospace, sans-serif;
}

ul, ol {
  list-style: none;
}

table {
  width: 100%;
  border: 1px solid #eee;
  border-spacing: 0;
  border-collapse: collapse;
  table-layout: fixed;
}

th, td {
  padding: 4px 6px;
  border: 1px solid #eee;
  vertical-align: top;
  text-align: left;
}

blockquote, q {
  quotes: none;
}

blockquote::after, blockquote::before {
  content: "";
  content: none;
}

q::after, q::before {
  content: "";
  content: none;
}

address {
  font-style: normal;
}

form {
  margin: 0;
  padding: 0;
}
form button {
  display: inline-block;
  margin: 0;
  padding: 0.6em 2em;
  width: auto;
  border: none;
  border-radius: 0;
  background-color: #efa336;
  background-image: none;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
}
form button:hover, form button:focus {
  outline: none;
}
form button:hover {
  opacity: 0.7;
}
form button ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input {
  padding: 8px;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  font-size: 1.6rem;
  font-family: inherit;
  -webkit-appearance: none;
}

textarea {
  padding: 8px;
  width: 100%;
  border: 1px solid #707070;
  border-radius: 0;
  background-image: none;
  font-size: 1.6rem;
  font-family: inherit;
  -webkit-appearance: none;
}
textarea:hover {
  outline: none;
}
textarea:focus {
  outline: none;
  outline: none;
  border-color: #707070;
  box-shadow: none;
}
textarea ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input:focus {
  outline: none;
  border-color: #707070;
  box-shadow: none;
}
input[type=submit], input[type=button] {
  display: inline-block;
  margin: 0;
  padding: 0.6em 2em;
  width: auto;
  border: none;
  border-radius: 0;
  background-color: #efa336;
  background-image: none;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  cursor: pointer;
  transition: all 0.3s ease 0s;
  -webkit-appearance: none;
}
input[type=submit]:hover, input[type=submit]:focus {
  outline: none;
}
input[type=button]:hover, input[type=button]:focus {
  outline: none;
}
input[type=submit]:hover, input[type=button]:hover {
  opacity: 0.7;
}
input[type=submit] ::-moz-focus-inner, input[type=button] ::-moz-focus-inner {
  padding: 0;
  border: none;
}
input[type=radio] {
  display: none;
}
input[type=radio] + span {
  position: relative;
  display: inline-block;
  margin: 0 16px 0 0;
  padding: 0 0 0 30px;
  cursor: pointer;
}
input[type=radio] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  content: "";
  transform: translateY(-50%);
}
input[type=radio] + span::after {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
input[type=radio]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 16px, 2;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #707070;
  content: "";
  opacity: 1;
  transform: translateY(-50%);
}
input[type=checkbox] {
  display: none;
}
input[type=checkbox] + span {
  position: relative;
  display: inline-block;
  margin: 0 16px 0 0;
  padding: 0 0 0 30px;
  cursor: pointer;
  transition: all 1s ease 0s;
}
input[type=checkbox] + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 26px;
  height: 26px;
  border: 1px solid #707070;
  border-radius: 2px;
  background: #fff;
  content: "";
  transform: translateY(-50%);
}
input[type=checkbox] + span::after {
  opacity: 0;
  transition: opacity 0.3s ease 0s;
}
input[type=checkbox]:checked + span::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  margin-top: -0.2em;
  width: 26px;
  height: 15.6px;
  border-bottom: 4px solid #efa336;
  border-left: 4px solid #efa336;
  content: "";
  opacity: 1;
  transform: translateY(-50%) rotate(-45deg);
}

select {
  padding: 0.4em 2.4em 0.4em 0.8em;
  border: 1px solid #707070;
  border-radius: 0;
  color: inherit;
  font-size: 1.6rem;
  font-family: inherit;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
}
select::-ms-expand {
  display: none;
}
select:focus {
  outline: none;
  border-color: #707070;
  box-shadow: none;
}

html {
  min-width: 1200px;
}

body {
  position: relative;
  overflow-x: auto;
  min-width: 1200px;
}
body.is-locked {
  position: fixed;
  left: 0;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  html, body {
    min-width: auto;
  }
}
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}
a.hover {
  transition: opacity 0.3s;
}
a.hover:hover {
  opacity: 0.7;
}

.wrap {
  margin: 0 auto;
  width: 1200px;
}

@media (max-width: 767px) {
  .wrap {
    width: 100%;
  }
}
#site_loader_overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100%;
  background-color: #fff;
}

#site_loader_spinner {
  position: fixed;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background-color: #000;
  transform: translateX(-50%) translateY(-50%);
  animation: sk-scaleout 1s infinite ease-in-out;
}
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
p {
  font-size: 1.7rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  p {
    font-size: 1.5rem;
  }
}
.text__blue {
  color: #008cb4;
}

.index__title {
  padding: 40px 0;
  width: 100%;
  background-color: #008cb4;
  text-align: center;
  line-height: 1;
}

@media (max-width: 767px) {
  .index__title {
    padding: 30px 0;
  }
}
.title__img {
  display: block;
  margin: 0 auto 20px;
}
.title__img img {
  display: block;
}

@media (max-width: 767px) {
  .title__img {
    margin: 0 auto 15px;
  }
}
.title__text {
  display: block;
  color: #fff;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .title__text {
    font-size: 1.5rem;
  }
}
.index__title_1 {
  position: relative;
  margin: 0 auto 76px;
  color: #008cb4;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1.8;
}
.index__title_1::before, .index__title_1::after {
  position: absolute;
  bottom: -22px;
  left: 50%;
  display: block;
  width: 53px;
  height: 7px;
  content: "";
}
.index__title_1::before {
  background-color: #008cb4;
  transform: translateX(-102%);
}
.index__title_1::after {
  background-color: #637a85;
  transform: translateX(2%);
}

@media (max-width: 767px) {
  .index__title_1 {
    margin-bottom: 40px;
    font-size: 1.8rem;
  }
  .index__title_1::before, .index__title_1::after {
    bottom: -13px;
    width: 30px;
    height: 2.5px;
  }
}
.index__title_2 {
  color: #008cb4;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1.38;
}

@media (max-width: 767px) {
  .index__title_2 {
    font-size: 2.2rem;
  }
  .index__title_2.small {
    font-size: 2rem;
    line-height: 1.6;
  }
}
.index__title_3 {
  margin-bottom: 40px;
  padding: 9px 33px 9px;
  background-color: rgba(99, 122, 133, 0.15);
  text-align: left;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .index__title_3 {
    margin-bottom: 15px;
    padding: 0 5px;
    font-size: 1.1rem;
  }
}
.content__link {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.content__link a {
  display: inline-flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .content__link {
    padding-right: 4%;
  }
}
.content_link__text {
  display: inline-block;
  margin-right: 10px;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .content_link__text {
    margin-right: 7px;
    font-size: 1.3rem;
  }
}
.content_link__pic {
  width: 30px;
}
.content_link__pic img {
  display: block;
}

@media (max-width: 767px) {
  .content_link__pic {
    width: 20px;
  }
}
a[href^="tel:"] {
  cursor: pointer;
}

@media (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
.btn-more a {
  display: block;
  margin: 0 auto;
  padding: 15px;
  max-width: 250px;
  border-radius: 50px;
  background-color: #158CB4;
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
}
.btn-more a:hover {
  opacity: 0.7;
}

.target__header {
  margin-top: -73px;
  padding-top: 73px;
}

@media (max-width: 767px) {
  .target__header {
    margin-top: -40px;
    padding-top: 40px;
  }
}
article {
  padding-top: 73px;
}

@media (max-width: 767px) {
  article {
    padding-top: 65px;
  }
}
.article_main__heading {
  padding: 60px 0;
  text-align: left;
  line-height: 1;
}
.article_main__heading .title__img {
  display: block;
  margin: 0 0 10px;
}
.article_main__heading .title__img img {
  display: block;
}
.article_main__heading .title__text {
  display: block;
  display: block;
  color: #000;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 2.4rem;
}

@media (max-width: 767px) {
  .article_main__heading {
    padding: 20px 10px 30px;
  }
}
@media (max-width: 767px) {
  .article_main__heading .title__text {
    font-size: 1.8rem;
  }
}
.article_container {
  padding: 20px 0;
  width: 100%;
  background-color: #008cb4;
}
.article_container.is-bg-smoky-blue {
  background-color: rgba(99, 122, 133, 0.3);
}
.article_container.is-bg-white {
  background-color: #fff;
}

@media (max-width: 767px) {
  .article_container {
    padding: 15px 10px;
  }
}
.article_sub__heading {
  color: #fff;
  letter-spacing: 0.02em;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .article_sub__heading {
    font-size: 2rem;
  }
}
.u-ls__10 {
  letter-spacing: -0.01em;
}

.u-ls__50 {
  letter-spacing: -0.05em;
}

.mt-50 {
  margin-top: 50px;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
footer {
  padding-bottom: 76px;
  width: 100%;
}

@media (max-width: 767px) {
  footer {
    padding-bottom: 86px;
  }
}
.footer_inner {
  position: relative;
  padding: 0 0 55px;
}

@media (max-width: 767px) {
  .footer_inner {
    padding: 0 0 30px;
  }
}
.footer_nav_box {
  margin: 0 auto 60px;
  padding: 42px 0 50px;
  background-color: #3e3a39;
}

@media (max-width: 767px) {
  .footer_nav_box {
    margin-bottom: 30px;
    padding: 30px 0 35px;
  }
}
.footer__nav {
  padding: 0 10px;
  width: 1000px;
}

@media (max-width: 767px) {
  .footer__nav {
    width: 100%;
  }
}
.footer_nav_main_list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 10px;
  width: 100%;
  border-bottom: 1px solid #fff;
}

.footer_nav_main_list__item {
  margin-bottom: 32px;
  width: 20%;
}
.footer_nav_main_list__item a {
  display: inline-block;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .footer_nav_main_list__item {
    margin-bottom: 0.6em;
    width: 33.33%;
  }
  .footer_nav_main_list__item.sp_size_half {
    width: 50%;
  }
  .footer_nav_main_list__item.sp_text_left {
    text-align: left;
  }
  .footer_nav_main_list__item.sp_text_center {
    text-align: center;
  }
  .footer_nav_main_list__item.sp_text_right {
    text-align: right;
  }
  .footer_nav_main_list__item a {
    font-size: 1.5rem;
  }
}
.footer_nav_sub_list {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  padding-top: 50px;
  width: 100%;
}

@media (max-width: 767px) {
  .footer_nav_sub_list {
    display: block;
    padding-top: 20px;
    text-align: center;
  }
}
.list_partner {
  justify-content: flex-start;
}
.list_partner .nav__title {
  margin-right: 85px;
}

@media (max-width: 767px) {
  .list_partner .nav__title {
    margin-right: 0;
  }
}
.footer_nav_sub_list__item {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
}
.footer_nav_sub_list__item.nav__title {
  font-weight: 700;
}

@media (max-width: 767px) {
  .footer_nav_sub_list__item {
    margin-bottom: 0.8em;
    font-size: 1.5rem;
  }
  .footer_nav_sub_list__item:last-child {
    margin-bottom: 0;
  }
}
.logo_tomo {
  width: 181px;
}

.footer__logo {
  margin: 0 auto;
  width: 180px;
}
.footer__logo a {
  display: block;
}
.footer__logo a img {
  display: block;
}

@media (max-width: 767px) {
  .footer__logo {
    width: 105px;
  }
}
.footer__copy {
  padding: 35px 0;
  width: 100%;
  background-color: #3e3a39;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 1rem;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .footer__copy {
    padding: 30px 10px 25px;
    font-size: 0.8rem;
  }
}
.footer_fixed_box {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: none;
  padding: 10px;
  border-radius: 0 0 0 5px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .footer_fixed_box {
    display: none !important;
  }
}
.footer_fixed__title {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 9px 5px 10px;
  width: 100%;
  border-radius: 5px;
  background-color: #008cb4;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
}

.footer_fixed__btn {
  margin: 0 auto 6px;
  width: 325px;
}
.footer_fixed__btn a, .footer_fixed__btn img {
  display: block;
}

.footer_rev__btn .footer_fixed__btn {
  margin-bottom: 0;
  width: 430px;
}

.footer_fixed__tel {
  margin: 0 auto 5px;
  width: 255px;
}
.footer_fixed__tel a, .footer_fixed__tel img {
  display: block;
}

.footer_rev__tel .footer_fixed__tel {
  width: 330px;
}

.footer_fixed__note {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  letter-spacing: 0.025em;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1;
}

.footer_rev__tel .footer_fixed__note {
  justify-content: flex-start;
  font-size: 1.2rem;
}

.footer_rev {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767px) {
  .footer_rev {
    display: none !important;
  }
}
.footer_rev__inner {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  min-width: 1200px;
  width: 100%;
}

.footer_rev__title {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  color: #637a85;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}

.footer_rev__tel {
  margin-left: 2.3rem;
  padding-left: 3rem;
  border-left: 1px solid #637a85;
}

.footer_rev__btn {
  margin-left: 5.5rem;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background-color: #fff;
}

@media (max-width: 767px) {
  header {
    background: none;
  }
}
.header_inner {
  width: 100%;
}

@media (max-width: 767px) {
  .header_inner.is-border {
    padding-right: 0;
    padding-left: 0;
    border-bottom: none;
  }
}
.header_box.is-border {
  padding-right: 10px;
  padding-left: 10px;
  border-color: rgba(99, 122, 133, 0.3);
  border-bottom: 1px solid;
}

@media (max-width: 767px) {
  .header_box.is-border {
    padding-right: 0;
    padding-left: 0;
    border-bottom: none;
  }
}
.header_top_box {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  padding: 13px 0 14px;
  width: 100%;
  background-color: #fff;
}

@media (max-width: 767px) {
  .header_top_box {
    padding: 0;
  }
}
.header__logo {
  width: 129px;
}
.header__logo a {
  display: block;
}
.header__logo a img {
  display: block;
}

@media (max-width: 767px) {
  .header__logo {
    padding: 5px 0 5px 15px;
    width: 26.6%;
  }
}
.header_utl_box {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  align-self: stretch;
  flex: 1;
  justify-content: flex-end;
}

.header__tel {
  margin-right: 24px;
  width: 147px;
}
.header__tel img {
  display: block;
}

@media (max-width: 767px) {
  .header__tel {
    display: none;
  }
}
.header__note {
  margin-right: 24px;
  text-align: center;
  font-size: 1rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .header__note {
    display: none;
  }
}
.header_contact {
  position: relative;
  width: 209px;
}
.header_contact::before, .header_contact::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 1px;
  height: 49px;
  background-color: #637a85;
  content: "";
  transform: translateY(-50%);
}
.header_contact::before {
  left: -2px;
}
.header_contact::after {
  right: -2px;
}
.header_contact a {
  display: block;
  padding: 12px 20px;
  width: 100%;
  height: 100%;
}
.header_contact a img {
  display: block;
}

@media (max-width: 767px) {
  .header_contact {
    display: none;
  }
}
.header_sns__list {
  display: none;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  padding-left: 20px;
}

@media (max-width: 767px) {
  .header_sns__list {
    display: flex;
  }
}
.header_sns_list__item {
  width: 24px;
}
.header_sns_list__item a {
  display: block;
}
.header_sns_list__item a img {
  display: block;
}
.header_sns_list__item + .header_sns_list__item {
  margin-left: 18px;
}

@media (max-width: 767px) {
  .header_sns_list__item {
    width: 20px;
  }
  .header_sns_list__item + .header_sns_list__item {
    margin-left: 15px;
  }
}
.header_middle_box {
  width: 100%;
}

@media (max-width: 767px) {
  .header_middle_box {
    display: none;
  }
}
.header_bottom_box {
  display: none;
  width: 100%;
}

@media (max-width: 767px) {
  .header_bottom_box {
    display: none;
    background-color: #fff;
  }
}
.nav__list {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 767px) {
  .nav__list {
    display: block;
    border-color: rgba(99, 122, 133, 0.3);
    border-top: 1px solid;
  }
}
.nav_list__item {
  position: relative;
  align-self: stretch;
}
.nav_list__item.sp__link {
  display: none;
}
.nav_list__item a {
  position: relative;
  display: block;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  padding: 0 19px;
  width: 100%;
  height: 100%;
}
.nav_list__item a img {
  display: block;
  flex-shrink: 0;
  width: auto;
}
.nav_list__item a img.nav_01, .nav_list__item a img.nav_02, .nav_list__item a img.nav_03 {
  height: 10px;
}
.nav_list__item a img.nav_04 {
  height: 27px;
}
.nav_list__item a img.nav_05, .nav_list__item a img.nav_06, .nav_list__item a img.nav_07 {
  height: 10px;
}
.nav_list__item a img.nav_08, .nav_list__item a img.nav_09 {
  height: 27px;
}
.nav_list__item a .sp__text {
  display: none;
}
.nav_list__item a::after {
  position: absolute;
  bottom: -22px;
  left: 50%;
  display: block;
  width: 100%;
  height: 6px;
  background-color: #008cb4;
  content: "";
  opacity: 0;
  transition: opacity 0.3s;
  transform: translateX(-50%);
}
.nav_list__item a.active::after, .nav_list__item a:hover::after {
  opacity: 1;
}
.nav_list__item::before, .nav_list__item:nth-last-of-type(2)::after {
  position: absolute;
  top: 50%;
  display: block;
  width: 1px;
  height: 30px;
  background-color: #637a85;
  content: "";
  transform: translateY(-50%);
}
.nav_list__item::before {
  left: 0;
}

@media (max-width: 767px) {
  .nav_list__item {
    width: 100%;
    border-color: rgba(99, 122, 133, 0.3);
    border-bottom: 1px solid;
  }
  .nav_list__item.sp__link {
    display: block;
  }
}
@media (max-width: 767px) {
  .nav_list__item a {
    justify-content: flex-start;
    padding: 13px 10px 12px;
  }
}
@media (max-width: 767px) {
  .nav_list__item a img {
    display: none;
  }
}
@media (max-width: 767px) {
  .nav_list__item a .sp__text {
    display: block;
  }
}
@media (max-width: 767px) {
  .nav_list__item a::after {
    content: none;
  }
}
@media (max-width: 767px) {
  .nav_list__item::before, .nav_list__item:nth-last-of-type(2)::after {
    content: none;
  }
}
.header_utl__sp {
  display: none;
  margin-left: 11px;
  background-color: #3e3a39;
}

@media (max-width: 767px) {
  .header_utl__sp {
    display: flex;
    align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    width: 46px;
    height: 100%;
  }
}
.header_side_box {
  position: fixed;
  top: 120px;
  right: 0;
  z-index: 10;
}

@media (max-width: 767px) {
  .header_side_box {
    display: none;
  }
}
.header_side__item {
  width: 48px;
}
.header_side__item a, .header_side__item img {
  display: block;
}
.header_side__item.icon_sns {
  margin: 0 4px 5px 3px;
  width: 41px;
}
.header_side__item.icon_sns + .icon_sns {
  margin-top: 5px;
  margin-bottom: 10px;
}

.btn {
  display: inline-block;
  margin: 0;
  width: 280px;
  height: 68px;
  vertical-align: middle;
}
.btn a {
  position: relative;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-image: url(/assets/img/common/bg_btn_02.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 2rem;
  transition: all 0.3s ease;
  -webkit-appearance: none;
}
.btn a span {
  padding-right: 10px;
}

@media (max-width: 767px) {
  .btn a {
    border-radius: 25px;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .btn a span {
    padding-right: 5px;
  }
}
.js-modal__link {
  cursor: pointer;
}

.p-modal__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.p-modal__layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-modal__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 800px;
  width: 90%;
  transform: translate(-50%, -50%);
}

.p-modal__inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background-color: #000;
}

.p-modal__wrapper.is-active .p-modal__inner::after {
  opacity: 0;
  pointer-events: none;
}

.p-modal__close {
  position: absolute;
  top: -51px;
  right: 0;
  z-index: 100;
  width: 40px;
  height: 40px;
  background-color: #2c8db4;
  font-size: 0;
  cursor: pointer;
}
.p-modal__close::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  content: "";
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 30px;
  height: 3px;
  background: #fff;
  content: "";
  transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

@media screen and (max-width: 767px) {
  .p-modal__close {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-modal__close::before, .p-modal__close::after {
    width: 25px;
    height: 2px;
  }
}
.p-modal video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.site__pagetop {
  position: absolute;
  right: 20px;
  bottom: 115px;
  z-index: 9;
  display: none;
  width: 50px;
  height: 50px;
}
.site__pagetop a {
  display: block;
}
.site__pagetop a img {
  display: block;
}

@media (max-width: 767px) {
  .site__pagetop {
    right: 10px;
    z-index: 1;
    width: 30px;
    height: 30px;
  }
}
.menu_trigger {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 17px;
  height: 12px;
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.4s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.menu_trigger span {
  position: absolute;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background-color: #fff;
  transition: all 0.4s;
}
.menu_trigger span:nth-of-type(1) {
  top: 0;
}
.menu_trigger span:nth-of-type(2) {
  top: 5px;
}
.menu_trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu_trigger.active span:nth-of-type(1) {
  transform: translateY(5px) rotate(-45deg);
}
.menu_trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu_trigger.active span:nth-of-type(3) {
  transform: translateY(-5px) rotate(45deg);
}

#aboutUs .about_container {
  margin: 0 auto;
  max-width: 960px;
}
#aboutUs .about_container > *:first-child {
  margin-top: 0;
}
#aboutUs .article_container {
  padding: 24px 0;
}
#aboutUs .article_container.is-about {
  padding: 60px 0;
}
#aboutUs .article_container__text {
  display: flex;
  align-content: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 30px;
  gap: 30px;
}
#aboutUs .article_container__notice p {
  font-size: 1.4rem;
}
#aboutUs .title__img {
  width: 280px;
}
#aboutUs .article_sub__heading {
  font-size: 0;
}
#aboutUs .article_sub__heading img.is-story {
  width: 142px;
}
#aboutUs .article_sub__heading img.is-message {
  width: 211.5px;
}
#aboutUs .article_sub__heading img.is-about {
  width: 150.5px;
}
#aboutUs .outline {
  padding: 60px 0;
}
#aboutUs .outline p {
  color: #008cb4;
  font-size: 3rem;
}
#aboutUs .about-heading {
  margin-bottom: 60px;
  color: #008cb4;
  font-weight: 500;
  font-size: 3rem;
}
#aboutUs .about_outline_main {
  padding-top: 18px;
  padding-right: 20px;
  padding-bottom: 18px;
  padding-left: 20px;
  background-color: rgba(0, 140, 180, 0.3);
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.8;
}
#aboutUs .about_outline_main + .about_hero_img {
  margin-top: 0;
  margin-bottom: 0;
}
#aboutUs .about_hero_img {
  margin: 60px 0;
}
#aboutUs .about_media_unit .about_media {
  margin-bottom: 60px;
  padding-bottom: 60px;
}
#aboutUs .about_media_unit .about_media:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
#aboutUs .about_media_unit .about_media:last-child:after, #aboutUs .about_media_unit .about_media:last-child:before {
  display: none;
}
#aboutUs .about_media {
  position: relative;
  display: flex;
  align-items: stretch;
  -ms-flex-align: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#aboutUs .about_media:after, #aboutUs .about_media:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 50px;
  height: 5px;
  content: "";
}
#aboutUs .about_media:after {
  margin-left: 3px;
  background-color: #008cb4;
}
#aboutUs .about_media:before {
  margin-left: -53px;
  background-color: #637a85;
}
#aboutUs .about_media__img {
  display: flex;
  align-content: stretch;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 348px;
}
#aboutUs .about_media__img.is-alignTop {
  align-items: flex-start;
  -ms-flex-align: start;
}
#aboutUs .about_media__img img.is-sigmax {
  width: 281px;
}
#aboutUs .about_media__img img.is-sgt {
  width: 210px;
}
#aboutUs .about_media__detail {
  flex: 1;
}
#aboutUs .about_media__header {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 16px;
}
#aboutUs .about_media__header-url {
  color: #00a0e9;
  text-decoration: underline;
}
#aboutUs .about_media__header-url:hover {
  text-decoration: none;
}
#aboutUs .about_media__header-tag {
  display: block;
  color: #008cb4;
  font-size: 1.4rem;
}
#aboutUs .about_media__header strong {
  font-size: 2.4rem;
}
#aboutUs .about_media__header-heading {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f39800;
}
#aboutUs .about_media__header .content__link {
  padding-right: 0;
  width: auto;
}
#aboutUs .about_media__body p + p {
  margin-top: 1em;
}
#aboutUs .sp-only {
  display: none;
}
#aboutUs .pc-only {
  display: block;
}

@media (max-width: 767px) {
  #aboutUs .article_container {
    padding: 20px 10px;
  }
}
@media (max-width: 767px) {
  #aboutUs .article_container.is-about {
    padding: 20px 10px;
  }
}
@media (max-width: 767px) {
  #aboutUs .article_container__text {
    margin-bottom: 15px;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  #aboutUs .title__img {
    width: 199.2px;
  }
}
@media (max-width: 767px) {
  #aboutUs .article_sub__heading img.is-story {
    width: 100px;
    vertical-align: baseline;
  }
}
@media (max-width: 767px) {
  #aboutUs .article_sub__heading img.is-message {
    width: 130px;
    vertical-align: baseline;
  }
}
@media (max-width: 767px) {
  #aboutUs .article_sub__heading img.is-about {
    width: 90px;
    vertical-align: baseline;
  }
}
@media (max-width: 767px) {
  #aboutUs .outline {
    padding: 40px 10px;
  }
}
@media (max-width: 767px) {
  #aboutUs .outline p {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  #aboutUs .about-heading {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  #aboutUs .about_outline_main {
    text-align: left;
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  #aboutUs .about_hero_img {
    margin: 20px 0;
  }
}
@media (max-width: 767px) {
  #aboutUs .about_media_unit {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  #aboutUs .about_media_unit .about_media {
    margin-bottom: 45px;
    padding-bottom: 45px;
  }
}
@media (max-width: 767px) {
  #aboutUs .about_media {
    align-items: center;
    -ms-flex-align: center;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  #aboutUs .about_media__img img.is-sigmax {
    width: 200px;
  }
}
@media (max-width: 767px) {
  #aboutUs .about_media__img img.is-sgt {
    width: 180px;
  }
}
@media (max-width: 767px) {
  #aboutUs .about_media__header {
    align-items: center;
    -ms-flex-align: center;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  #aboutUs .about_media__header-text {
    margin-bottom: 6px;
  }
}
@media (max-width: 767px) {
  #aboutUs .about_media__header-tag {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  #aboutUs .about_media__header strong {
    display: block;
    text-align: center;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  #aboutUs .about_media__header-heading {
    margin-bottom: 18px;
    padding-bottom: 8px;
  }
}
@media (max-width: 767px) {
  #aboutUs .sp-only {
    display: block;
  }
}
@media (max-width: 767px) {
  #aboutUs .pc-only {
    display: none;
  }
}
.article_main__heading.title__contact .title__img {
  width: 308px;
}

@media (max-width: 767px) {
  .article_main__heading.title__contact .title__img {
    width: 204px;
  }
}
.contact_form {
  position: relative;
  width: 100%;
}

.contact_blue_wrap {
  padding: 80px 0;
  background-color: rgba(0, 140, 180, 0.3);
}

@media (max-width: 767px) {
  .contact_blue_wrap {
    padding: 40px 10px;
  }
}
.contact_white_wrap {
  padding: 70px 0 110px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .contact_white_wrap {
    padding: 35px 10px 55px;
  }
}
.contact_gray_wrap {
  padding: 60px 0 100px;
  background-color: rgba(99, 122, 133, 0.15);
}
.contact_gray_wrap h3 {
  margin-bottom: 26px;
  letter-spacing: 0.02em;
  font-size: 2.2rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .contact_gray_wrap {
    padding: 30px 10px 50px;
  }
}
@media (max-width: 767px) {
  .contact_gray_wrap h3 {
    margin-bottom: 13px;
    font-size: 1.8rem;
  }
}
.contact_form_box {
  width: 100%;
}

.contact_form__item {
  display: flex;
}
.contact_form__item + .contact_form__item {
  margin-top: 33px;
}

@media (max-width: 767px) {
  .contact_form__item {
    display: block;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact_form__item + .contact_form__item {
    margin-top: 20px;
  }
}
.contact_form__title {
  flex: 1;
  padding-top: 9px;
  color: #000;
  letter-spacing: 0.02em;
  font-size: 2.2rem;
  line-height: 1;
}
.contact_form__title .red {
  color: #e60012;
}
.contact_form__title .small {
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .contact_form__title {
    margin-bottom: 10px;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  .contact_form__title .small {
    font-size: 1.6rem;
  }
}
.contact_form__content {
  width: 750px;
}
.contact_form__content input, .contact_form__content textarea {
  padding: 6px 12px 5px;
  width: 100%;
  border: none;
  background-color: #fff;
  letter-spacing: 0.02em;
  font-size: 2.1rem;
  line-height: 1.6;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact_form__content input::-webkit-input-placeholder, .contact_form__content textarea::-webkit-input-placeholder, .contact_form__content input::-moz-placeholder, .contact_form__content textarea::-moz-placeholder, .contact_form__content input:-ms-input-placeholder, .contact_form__content textarea:-ms-input-placeholder, .contact_form__content input::-ms-input-placeholder, .contact_form__content textarea::-ms-input-placeholder, .contact_form__content input::placeholder {
  color: #b5b5b6;
}
.contact_form__content textarea {
  height: 435px;
}
.contact_form__content textarea::-moz-placeholder {
  color: #b5b5b6;
}
.contact_form__content textarea::placeholder {
  color: #b5b5b6;
}

@media (max-width: 767px) {
  .contact_form__content {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact_form__content input, .contact_form__content textarea {
    padding: 4px 8px 3px;
    font-size: 1.7rem;
  }
}
@media (max-width: 767px) {
  .contact_form__content textarea {
    height: 300px;
  }
}
.contact_policy_box {
  margin-bottom: 50px;
  width: 100%;
  border: 3px solid #008cb4;
}

@media (max-width: 767px) {
  .contact_policy_box {
    margin-bottom: 25px;
    border-width: 2px;
  }
}
.contact_policy__title {
  padding: 14px 0 12px;
  border-bottom: 3px solid #008cb4;
  color: #008cb4;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.56;
}

@media (max-width: 767px) {
  .contact_policy__title {
    padding: 7px 0 6px;
    border-width: 2px;
    font-size: 1.3rem;
    line-height: 1.4;
  }
}
.contact_policy__content {
  overflow: auto;
  padding: 20px;
  width: 100%;
  height: 293px;
}
.contact_policy__content p {
  letter-spacing: 0.02em;
  font-size: 1.9rem;
  line-height: 1.4;
}
.contact_policy__content p + p {
  margin-top: 1em;
}

@media (max-width: 767px) {
  .contact_policy__content {
    padding: 15px;
    height: 220px;
  }
}
@media (max-width: 767px) {
  .contact_policy__content p {
    font-size: 1.5rem;
  }
}
.contact_agree_box {
  margin-bottom: 80px;
}
.contact_agree_box label {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  cursor: pointer;
}
.contact_agree_box span {
  padding-bottom: 2px;
  letter-spacing: 0.02em;
  font-size: 2.4rem;
  line-height: 1;
}
.contact_agree_box input {
  display: block;
  margin: 0;
  margin-left: 30px;
  width: 24px;
  height: 24px;
  border: 1px solid #000;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
}

@media (max-width: 767px) {
  .contact_agree_box {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .contact_agree_box span {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .contact_agree_box input {
    margin-left: 15px;
    width: 18px;
    height: 18px;
  }
}
.contact_btn_box {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  width: 100%;
}
.contact_btn_box button {
  margin: 0 20px;
  padding: 30px 50px 28px;
  border-radius: 48px;
  background-color: rgba(99, 122, 133, 0.3);
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  font-size: 2.6rem;
  line-height: 1;
  cursor: no-drop;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact_btn_box button:not(.on):hover {
  opacity: 1;
}
.contact_btn_box button.on {
  background-color: #008cb4;
  cursor: pointer;
}
.contact_btn_box button[name=submitBack] {
  background-color: #637a85;
}
.contact_btn_box a {
  margin: 30px auto 0;
  padding: 18px 40px 20px;
  border-radius: 30px;
  background-color: #008cb4;
  color: #fff;
  text-align: center;
  letter-spacing: 0.02em;
  font-size: 2.2rem;
  line-height: 1;
  transition: opacity 0.3s;
}
.contact_btn_box a:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .contact_btn_box button {
    margin: 0 15px;
    padding: 15px 25px 14px;
    border-radius: 24px;
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .contact_btn_box a {
    margin: 0 15px;
    padding: 15px 25px 14px;
    border-radius: 28px;
    font-size: 2rem;
  }
}
.accordion_box {
  width: 100%;
}
.accordion_box + h3 {
  margin-top: 80px;
}

@media (max-width: 767px) {
  .accordion_box + h3 {
    margin-top: 40px;
  }
}
.accordion__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.4em;
}
.accordion__head p {
  flex: 1;
  letter-spacing: 0.02em;
  font-size: 1.9rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .accordion__head p {
    font-size: 1.5rem;
  }
}
.accordion__btn {
  position: relative;
  margin: 0 12px 0 50px;
  width: 53px;
  height: 53px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.accordion__btn:hover {
  opacity: 0.7;
}
.accordion__btn.active span:nth-of-type(1) {
  transform: rotate(0);
}
.accordion__btn span:nth-of-type(1) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #008cb4;
  transition: 0.2s;
  transform: rotate(90deg);
}
.accordion__btn span:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #008cb4;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .accordion__btn {
    margin: 0 0 0 20px;
    width: 40px;
    height: 40px;
  }
}
.accordion__body {
  width: 100%;
}
.accordion__body h4 {
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 1.9rem;
  line-height: 1.4;
}
.accordion__body p {
  letter-spacing: 0.02em;
  font-size: 1.9rem;
  line-height: 1.4;
}
.accordion__body p + * {
  margin-top: 1.4em;
}
.accordion__body table {
  margin: 40px auto;
  table-layout: auto;
}
.accordion__body table th, .accordion__body table td {
  padding: 5px 10px 6px;
  border-color: #000;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .accordion__body h4 {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .accordion__body p {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .accordion__body table th, .accordion__body table td {
    padding: 3px 6px 2px;
    font-size: 1.4rem;
  }
}
.msie .contact_form__content input, .msie .contact_form__content textarea {
  padding: 4px 12px 8px;
}

.complete__content h2, .complete__content h3, .complete__content h4, .complete__content h5, .complete__content h6 {
  margin-bottom: 30px;
}
.complete__content p {
  margin-bottom: 20px;
  line-height: 1.4;
}
.complete__content p a {
  color: #008cb4;
  text-decoration: underline;
}
.complete__content p a:hover {
  text-decoration: none;
}

.faq_wrap {
  padding-bottom: 125px;
}

@media (max-width: 767px) {
  .faq_wrap {
    padding-bottom: 60px;
  }
}
.article_main__heading .title__img {
  width: 110px;
}

@media (max-width: 767px) {
  .article_main__heading .title__img {
    width: 80px;
  }
}
.faq_cat__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
  padding: 26px 0 30px;
  width: 100%;
  border-bottom: 1px solid #000;
}

@media (max-width: 767px) {
  .faq_cat__list {
    margin-bottom: 40px;
    padding: 18px 14px 20px;
  }
}
.faq_cat_list__item {
  align-self: stretch;
  margin-bottom: 40px;
  width: 565px;
  border: 1px solid #008cb4;
}
.faq_cat_list__item a {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  padding: 24px 10px;
  width: 100%;
  height: 100%;
  color: #008cb4;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.4;
  transition: all 0.3s;
}
.faq_cat_list__item a:hover {
  background-color: #008cb4;
  color: #fff;
}

@media (max-width: 767px) {
  .faq_cat_list__item {
    margin-bottom: 4%;
    width: 48%;
  }
}
@media (max-width: 767px) {
  .faq_cat_list__item a {
    padding: 8px 5px;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.faq_block__detail > a {
  color: #008cb4;
}

.faq__block + .target__header {
  margin-top: -20px;
}

@media (max-width: 767px) {
  .faq__block + .target__header {
    margin-top: 10px;
  }
}
.lead_wrap h2 {
  margin-bottom: 25px;
  text-align: center;
  font-size: 3.4rem;
}
.lead_wrap p {
  margin-bottom: 50px;
  text-align: center;
}
.lead_wrap .voice-video {
  position: relative;
  display: block;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  max-width: 670px;
  width: 100%;
}

@media (max-width: 767px) {
  .lead_wrap h2 {
    font-size: 2.4rem;
  }
}
.diff-block .index__title_2 {
  padding: 50px 0 30px;
}
.diff-block .diff-card {
  display: flex;
  justify-content: space-between;
}
.diff-block .diff-card .diff-item {
  width: 32%;
}
.diff-block .diff-card .diff-item .diff-img {
  position: relative;
  overflow: hidden;
}
.diff-block .diff-card .diff-item .diff-img::after {
  position: absolute;
  top: -47px;
  left: -47px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background-color: #2c8db4;
  content: "";
}
.diff-block .diff-card .diff-item h4 {
  padding: 10px 0;
  color: #008cb4;
  text-align: center;
  font-size: 2rem;
}
.diff-block .diff-card .diff-item p {
  text-align: left;
}
.diff-block .diff-card .diff-card__point {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

@media (max-width: 767px) {
  .diff-block .diff-card {
    flex-wrap: wrap;
  }
  .diff-block .diff-card .diff-item {
    width: 100%;
  }
}
.premium_schedule {
  background-color: #008cb4;
}
.premium_schedule ul {
  display: flex;
  justify-content: space-between;
}
.premium_schedule ul li {
  width: 50%;
  text-align: center;
}
.premium_schedule ul li:last-child {
  background-color: #637a85;
}
.premium_schedule ul li:hover {
  opacity: 0.7;
}
.premium_schedule ul li a {
  display: block;
  padding: 10px;
  color: white;
  font-size: 1.4rem;
}

.important_info {
  margin-top: 20px;
}
.important_info ul {
  text-align: center;
}
.important_info ul li {
  display: inline-block;
  font-size: 1.4rem;
}
.important_info ul li:first-child::after {
  content: " ／ ";
}
.important_info ul li a {
  color: #D85241;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .important_info ul li::after {
    display: none;
  }
}
.about_wrap {
  width: 100%;
}
.about_wrap .title__img {
  width: 289px;
}

@media (max-width: 767px) {
  .about_wrap .title__img {
    width: 46.4%;
  }
}
.about__content {
  position: relative;
  padding: 55px 0 50px;
}

@media (max-width: 767px) {
  .about__content {
    padding: 30px 4% 40px;
  }
}
.about_info_box {
  margin: 52px auto 0;
  width: 60%;
}

@media (max-width: 767px) {
  .about_info_box {
    margin: 25px auto 0;
    width: 92%;
  }
}
.about_info__title {
  position: relative;
  z-index: 2;
  padding: 23px 10px;
  background-color: rgba(99, 122, 133, 0.7);
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.6;
}
.about_info__title::after {
  position: absolute;
  bottom: -50px;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  border-top: 25px solid rgba(99, 122, 133, 0.7);
  border-right: 15px solid rgba(0, 0, 0, 0);
  border-bottom: 25px solid rgba(0, 0, 0, 0);
  border-left: 15px solid rgba(0, 0, 0, 0);
  content: "";
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .about_info__title {
    padding: 10px;
    font-size: 1.8rem;
  }
  .about_info__title::after {
    bottom: -20px;
    border-top: 10px solid rgba(99, 122, 133, 0.7);
    border-right: 6px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid rgba(0, 0, 0, 0);
    border-left: 6px solid rgba(0, 0, 0, 0);
  }
}
.about_info__detail {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  padding: 60px 80px 41px;
  background-color: rgba(99, 122, 133, 0.15);
}

@media (max-width: 767px) {
  .about_info__detail {
    margin-bottom: 20px;
    padding: 20px 10px;
  }
}
.about_info__check {
  width: 100%;
  border: 1px solid #008cb4;
  border-radius: 13px;
  background-color: #fff;
}
.about_info__check label {
  position: relative;
  display: flex;
  padding: 14px 20px;
  color: #008cb4;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1.4;
  cursor: pointer;
}
.about_info__check label::before {
  display: inline-block;
  margin-top: 4px;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  background-color: #fff;
  content: "";
  transition: all 0.3s ease-in-out;
}
.about_info__check + .about_info__check {
  margin-top: 33px;
}
.about_info__check input {
  display: none;
}
.about_info__check input:checked + label::before {
  height: 10px;
  border-color: #008cb4;
  border-top-style: none;
  border-right-style: none;
  transform: rotate(-45deg);
}

@media (max-width: 767px) {
  .about_info__check {
    border-radius: 5px;
  }
  .about_info__check label {
    align-items: center;
    -ms-flex-align: center;
    padding: 7px;
    letter-spacing: 0;
    font-size: 1.5rem;
  }
  .about_info__check label::before {
    margin-top: 0;
    width: 11px;
    height: 11px;
  }
  .about_info__check + .about_info__check {
    margin-top: 12px;
  }
  .about_info__check input:checked + label::before {
    height: 7px;
  }
}
.about_info__text {
  margin-top: 41px;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.58;
}

@media (max-width: 767px) {
  .about_info__text {
    margin-top: 11px;
    letter-spacing: 0;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.about_intro_flex {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 55px auto 60px;
  width: 60%;
}

@media (max-width: 767px) {
  .about_intro_flex {
    margin: 40px auto;
    width: 100%;
  }
}
.about_intro_flex_item:nth-of-type(1) {
  margin-right: 10%;
  width: 30%;
}
.about_intro_flex_item:nth-of-type(2) {
  margin-right: 1.6%;
  width: 26%;
}
.about_intro_flex_item:nth-of-type(3) {
  width: 26%;
}
.about_intro_flex_item img {
  display: block;
}

.about_intro__photo {
  margin-bottom: 10px;
  width: 100%;
}

.about_intro__name {
  display: flex;
  align-items: baseline;
  -ms-flex-align: baseline;
  flex-wrap: wrap;
  line-height: 1.3;
}
.about_intro__name span.mini {
  font-size: 1.4rem;
}
.about_intro__name span.main {
  font-size: 2.2rem;
}
.about_intro__name span.md {
  font-size: 1.6rem;
}
.about_intro__name span.block {
  width: 100%;
}

@media (max-width: 767px) {
  .about_intro__name span.mini {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .about_intro__name span.main {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .about_intro__name span.md {
    font-size: 1.2rem;
  }
}
.about_lead {
  display: flex;
  margin-bottom: 50px;
}
.about_lead .figure {
  max-width: 580px;
}
.about_lead .index__title_2 {
  margin-bottom: 25px;
  color: black;
  text-align: left;
  font-weight: bold;
}
.about_lead ._text {
  box-sizing: border-box;
  padding-right: 25px;
  width: 100%;
  text-align: left;
}

@media (max-width: 767px) {
  .about_lead {
    flex-direction: column-reverse;
    flex-wrap: wrap;
  }
}
.p-intro__ttl {
  margin-bottom: 40px;
  color: #2c8db4;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: normal;
  font-size: 3.4rem;
  line-height: 1.4705882353;
}

.p-intro__ttl.ttl01 {
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .p-intro__ttl {
    margin-right: -2px;
    margin-bottom: 15px;
    margin-left: -2px;
    letter-spacing: 0.02em;
    font-size: 5.8666666667vw;
    line-height: 1.5681818182;
  }
  .p-intro__ttl .small {
    letter-spacing: 0;
    font-size: 90%;
  }
}
.p-intro__lead {
  margin-bottom: 30px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.125;
}

@media screen and (max-width: 767px) {
  .p-intro__lead {
    margin-bottom: 13px;
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
  }
}
.p-intro-list__item {
  position: relative;
  padding-left: 33.7%;
  background-color: #d5ecf3;
}

@media screen and (max-width: 767px) {
  .p-intro-list__item {
    padding-left: 0;
  }
}
.p-intro-list__item + .p-intro-list__item {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-intro-list__item + .p-intro-list__item {
    margin-top: 20px;
  }
}
.p-intro-list__position {
  color: #2c8db4;
}

@media screen and (max-width: 767px) {
  .p-intro-list__position {
    padding-left: 41.3333333333vw;
    font-size: 2.6666666667vw;
  }
}
.p-intro-list__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 33.7%;
}
.p-intro-list__img img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-intro-list__img {
    width: 36vw;
    height: 30.8vw;
  }
}
.p-intro-list__ttl {
  margin-top: -6px;
  color: #2c8db4;
  font-size: 2.6rem;
}

.p-intro-list__ttl span {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .p-intro-list__ttl {
    margin-top: 0;
    padding-left: 41.3333333333vw;
    font-size: 4.8vw;
  }
}
.p-intro-list__job {
  margin-top: 3px;
  padding-bottom: 4px;
  border-bottom: 1px solid #f29800;
}

@media screen and (max-width: 767px) {
  .p-intro-list__job {
    margin-top: 5px;
    margin-left: 41.3333333333vw;
    padding-bottom: 0;
    height: 20.8vw;
    border-bottom: none;
    font-size: 2.6666666667vw;
  }
}
.p-intro-list__txt {
  overflow: hidden;
  margin-top: 10px;
  max-height: 145px;
  line-height: 1.7142857143;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.p-intro-list__txt p + p {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .p-intro-list__txt {
    margin-top: 3.7333333333vw;
    padding-left: 20px;
    max-height: 38.6666666667vw;
    font-size: 2.6666666667vw;
    line-height: 1.8;
  }
}
@media screen and (max-width: 767px) {
  .p-intro-list__btn {
    font-size: 2.6666666667vw;
  }
}
.p-intro-list__btn a {
  position: absolute;
  top: 30px;
  right: 45px;
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid #333;
}

@media print, screen and (min-width: 768px) {
  .is-view-pc .p-intro-list__btn a:hover {
    border-color: transparent;
  }
}
@media print, screen and (min-width: 768px) {
  .p-intro-list__btn a {
    cursor: pointer;
  }
}
.p-intro-list__btn a i {
  margin-left: 5px;
}

@media screen and (max-width: 767px) {
  .p-intro-list__btn a {
    top: 30.4vw;
    right: auto;
    left: 41.3333333333vw;
    display: inline-flex;
    align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    padding: 4px;
    width: 42.2666666667vw;
    height: 8vw;
  }
  .p-intro-list__btn a i {
    position: relative;
    top: 2px;
    width: 11px;
    height: 10px;
  }
}
.p-intro-list__show {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-intro-list__show {
    margin-top: 5px;
    font-size: 3.2vw !important;
  }
  .p-intro-list__show a {
    margin-left: 20px;
  }
}
.p-intro-list__group {
  padding: 27px 43px 30px 43px;
}

.p-intro-list__group .p-intro-list__txt p {
  display: none;
}

.p-intro-list__group .p-intro-list__txt p:first-child {
  display: block;
}

.p-intro-list__group.active .p-intro-list__txt {
  max-height: none;
}

.p-intro-list__group.active .p-intro-list__txt p {
  display: block;
}

@media screen and (max-width: 767px) {
  .p-intro-list__group {
    padding: 20px 20px 22px 0;
  }
  .p-intro-list__group--cus .p-intro-list__txt {
    margin-top: 11px;
    max-height: 48vw;
  }
}
.p-intro-list__group--cus .p-intro-list__txt {
  margin-top: 11px;
}

.p-intro-list__note {
  margin-top: 25px;
  color: #333;
  text-align: center;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .p-intro-list__note {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 2;
  }
}
.p-intro-list__note span, .p-intro-list__note a {
  position: relative;
  padding-left: 10px;
  border-bottom: 1px solid #438eff;
  color: #438eff;
}

.p-intro-list__note span:before, .p-intro-list__note a:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 11px;
  height: 14px;
  background: url(../lp_2212/images/phone_ico.png) no-repeat;
  background-size: contain;
  content: "";
  transform: translateY(-40%);
}

@media screen and (max-width: 767px) {
  .p-intro-list__note span:before, .p-intro-list__note a:before {
    transform: translateY(-52%);
  }
}
.p-intro-btns {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .p-intro-btns {
    margin-top: 25px;
  }
}
.p-intro-btns.intro1 {
  display: flex;
  align-items: flex-end;
  -ms-flex-align: end;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .p-intro-btns.intro1 {
    flex-direction: column;
  }
}
.p-intro-btns__group {
  flex: 1;
  width: 100%;
  text-align: center;
  font-size: 1.6rem;
}

.p-intro-btns__group.group01 {
  margin-right: 40px;
  color: #2c8db4;
}

@media screen and (max-width: 767px) {
  .p-intro-btns__group.group01 {
    margin-right: 0;
  }
}
.p-intro-btns__group.group01 .btn {
  background-color: #2c8db4;
}

.p-intro-btns__group.group02 {
  margin-left: 40px;
  color: #dc8a00;
}

@media screen and (max-width: 767px) {
  .p-intro-btns__group.group02 {
    margin-top: 30px;
    margin-left: 0;
  }
}
.p-intro-btns__group.group02 .btn {
  max-width: 440px;
  background-color: #f29800;
}

.p-intro-btns__group .txt {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .p-intro-btns__group .txt {
    font-size: 1.4rem;
  }
}
.p-intro-btns__group .btn {
  position: relative;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  padding: 20px 40px 20px 30px;
  border: 1px solid transparent;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.2s linear;
}

.p-intro-btns__group .btn:hover {
  opacity: 0.6;
}

.p-intro-btns__group .btn span {
  flex: 1;
  letter-spacing: 0.05em;
  font-weight: 300;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .p-intro-btns__group .btn span {
    font-size: 1.4rem;
  }
}
.p-intro-btns__group .btn .ico {
  position: absolute;
  top: calc(50% - 10px);
  right: 40px;
  width: 45px;
  transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
  .p-intro-btns__group .btn .ico {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-intro-btns__group .btn .ico {
    right: 20px;
    width: 35px;
  }
}
.p-intro-btns a {
  margin-right: auto;
  margin-left: auto;
  padding-right: 90px;
}

@media screen and (max-width: 767px) {
  .p-intro-btns a {
    padding-right: 65px;
  }
}
.p-intro-btns a.c-btn-01 {
  padding-right: 40px;
}

.p-intro-btns a.c-btn-01 .ico {
  position: absolute;
  top: calc(50% - 10px);
  right: 40px;
  width: 45px;
  transform: translateY(-50%);
}

@media screen and (max-width: 1024px) {
  .p-intro-btns a.c-btn-01 .ico {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-intro-btns a.c-btn-01 .ico {
    right: 20px;
    width: 35px;
  }
}
.p-intro-bnr {
  margin-bottom: 50px;
  text-align: center;
}

.p-intro-bnr a {
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media print, screen and (min-width: 768px) {
  .is-view-pc .p-intro-bnr a:hover {
    opacity: 0.7;
  }
}
@media print, screen and (min-width: 768px) {
  .p-intro-bnr img {
    max-width: 721px;
  }
}
.ico-down {
  display: inline-block;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16.5px' height='8.5px'%3E%3Cpath fill-rule='evenodd' stroke='rgb(0, 142, 177)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M1.162,0.992 L8.3,6.466 L14.844,0.992 '/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.ico-top {
  display: inline-block;
  width: 8px;
  height: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='16.5px' height='8.5px'%3E%3Cpath fill-rule='evenodd' stroke='rgb(0, 142, 177)' stroke-width='1px' stroke-linecap='butt' stroke-linejoin='miter' fill='none' d='M14.837,6.694 L7.996,1.220 L1.155,6.694 '/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.c-ico-blank-01 {
  display: inline-block;
  width: 13px;
  height: 11px;
  background-image: url("/lp_2212/assets/images/modal_ico.png");
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .c-ico-blank-01 {
    width: 12px;
    height: 10px;
  }
}
.js-acc-btn {
  display: table;
  margin-right: auto;
  margin-left: auto;
  color: #49a0c0;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .js-acc-btn {
    font-size: 3.7333333333vw;
  }
}
.js-acc-btn i {
  margin-left: 7px;
}

.js-acc-btn a {
  display: none;
  padding-bottom: 3px;
  border-bottom: 1px solid #49a0c0;
}

@media print, screen and (min-width: 768px) {
  .js-acc-btn a {
    cursor: pointer;
  }
}
@media print, screen and (min-width: 768px) {
  .is-view-pc .js-acc-btn a:hover {
    border-color: transparent;
  }
}
.js-acc-btn a.active {
  display: inline-block;
}

.course_wrap {
  width: 100%;
}
.course_wrap .title__img {
  width: 280px;
}

@media (max-width: 767px) {
  .course_wrap .title__img {
    width: 45%;
  }
}
.course__photo {
  width: 100%;
}
.course__photo img {
  display: block;
}

.course__content {
  position: relative;
  padding: 46px 0 50px;
  text-align: center;
}

@media (max-width: 767px) {
  .course__content {
    padding: 30px 4% 40px;
  }
  .course__content p {
    padding-right: 3%;
    padding-left: 3%;
  }
}
.course_mini__photo {
  margin: 0 auto;
  padding: 40px 0;
  width: 62%;
}
.course_mini__photo img {
  display: block;
}

@media (max-width: 767px) {
  .course_mini__photo {
    margin: 0 auto;
    width: 100%;
  }
}
.course_flex__info {
  display: inline-flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  margin: 0 auto 70px;
  padding: 10px;
  width: 45%;
  border-radius: 13px;
  background-color: rgba(99, 122, 133, 0.15);
}

@media (max-width: 767px) {
  .course_flex__info {
    margin-bottom: 30px;
    padding: 7px 0;
    width: calc(100% - 20px);
    border-radius: 5px;
  }
}
.course_flex_info__title {
  display: inline-block;
  margin-right: 1em;
  letter-spacing: 0.02em;
  font-size: 1.65rem;
}

@media (max-width: 767px) {
  .course_flex_info__title {
    font-size: 1.2rem;
  }
}
.course_flex_info__price {
  display: inline-block;
  color: #008cb4;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 2.75rem;
}

@media (max-width: 767px) {
  .course_flex_info__price {
    font-size: 1.8rem;
  }
}
.course_flex_info__tax {
  display: inline-block;
  color: #008cb4;
  letter-spacing: 0.02em;
  font-size: 1.65rem;
}

@media (max-width: 767px) {
  .course_flex_info__tax {
    font-size: 1.2rem;
  }
}
.course__note {
  margin: 0 auto 50px;
  width: 50%;
  text-align: left;
}
.course__note p {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  .course__note {
    width: calc(100% - 20px);
  }
}
@media (max-width: 767px) {
  .course__note p {
    text-align: justify;
  }
}
@media (max-width: 767px) {
  #program .course_flex__info, #program .course__note {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
  }
}
.course_info_flex {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  margin: 30px auto;
  width: 65%;
  text-align: center;
}

.course_info_flex__item {
  overflow: hidden;
  align-self: stretch;
  width: 31.4%;
  border-radius: 10px;
}
.course_info_flex__item.type__a {
  border: 5px solid #637a85;
}
.course_info_flex__item.type__a .course_info__title, .course_info_flex__item.type__a .course_info__num {
  background-color: #637a85;
}
.course_info_flex__item.type__a .course_infor_body_mini__title {
  color: #637a85;
}
.course_info_flex__item.type__b {
  border: 5px solid #ec6d88;
}
.course_info_flex__item.type__b .course_info__title, .course_info_flex__item.type__b .course_info__num {
  background-color: #ec6d88;
}
.course_info_flex__item.type__b .course_infor_body_mini__title {
  color: #ec6d88;
}
.course_info_flex__item.type__c {
  border: 5px solid #008cb4;
}
.course_info_flex__item.type__c .course_info__title, .course_info_flex__item.type__c .course_info__num {
  background-color: #008cb4;
}
.course_info_flex__item.type__c .course_infor_body_mini__title {
  color: #008cb4;
}

.course_info__title {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  padding: 5px 5px 12px;
  min-height: 101px;
  width: 100%;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.4;
}
.course_info__title .font__lg {
  font-size: 2.2rem;
}

.course_info__body {
  position: relative;
  width: 100%;
}

.course_infor_body_mini__title {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  padding: 16px 0;
  min-height: 97px;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
}
.course_infor_body_mini__title .font__lg {
  font-size: 2.4rem;
}

.course_info__num {
  display: flex;
  overflow: hidden;
  align-items: baseline;
  -ms-flex-align: baseline;
  justify-content: center;
  margin: 0 auto 6px;
  padding: 2px 5px 7px;
  width: 76%;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1;
}
.course_info__num .font__lg {
  position: relative;
  top: 1px;
  letter-spacing: 1px;
  font-size: 2.2rem;
}

.price-list {
  padding-top: 50px;
}
.price-list p {
  margin-bottom: 20px;
}
.price-list table {
  margin-bottom: 50px;
  table-layout: auto;
}
.price-list table th {
  padding: 10px 20px;
  background-color: #158CB4;
  color: white;
}
.price-list table td {
  padding: 10px 20px;
  font-size: 1.4rem;
}
.price-list ._bnr {
  margin: 0 auto;
  width: 80%;
}
.price-list ._bnr.home-bnr:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .price-list table {
    table-layout: inherit;
  }
  .price-list table th {
    padding: 5px;
    font-size: 1rem;
  }
  .price-list table td {
    padding: 5px;
    font-size: 1rem;
  }
  .price-list table ._ox {
    width: 10%;
  }
  .price-list ._bnr {
    width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .top-flow {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .top-flow {
    padding-bottom: 40px;
  }
}
.top-flow.top-sect {
  padding-top: 50px;
}

.top-flow__ttl {
  margin-bottom: 48px;
}

.top-flow__ttl .small-ttl {
  color: #76929f;
}

@media screen and (max-width: 767px) {
  .top-flow__ttl {
    margin-bottom: 25px;
  }
  .top-flow__ttl img {
    width: auto;
    height: 14.4vw;
  }
}
.top-flow__lead {
  margin-bottom: 60px;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2.125;
}

@media screen and (max-width: 767px) {
  .top-flow__lead {
    margin-bottom: 55px;
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
  }
}
@media print, screen and (min-width: 768px) {
  .top-flow .step-list {
    padding-right: 8.3333%;
    padding-left: 8.3333%;
  }
}
.top-flow .step-list__item {
  position: relative;
  background-color: #d5ecf3;
}

@media print, screen and (min-width: 768px) {
  .top-flow .step-list__item {
    display: flex;
    align-items: center;
    -ms-flex-align: center;
    flex-wrap: wrap;
    padding: 30px 3% 30px 5%;
  }
}
@media screen and (max-width: 767px) {
  .top-flow .step-list__item:last-child {
    padding-bottom: 10px;
  }
}
.top-flow .step-list__item + .step-list__item {
  position: relative;
  margin-top: 110px;
}

.top-flow .step-list__item + .step-list__item:before {
  position: absolute;
  bottom: calc(100% + 40px);
  left: 50%;
  margin-left: -55px;
  width: 111px;
  height: 32px;
  background-image: url(/lp_2212/assets/images/top/symbol02.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

@media screen and (max-width: 767px) {
  .top-flow .step-list__item + .step-list__item {
    margin-top: 80px;
  }
  .top-flow .step-list__item + .step-list__item:before {
    bottom: calc(100% + 20px);
    margin-left: -39px;
    width: 79px;
    background-image: url(/lp_2212/assets/images/top/symbol02_sp.png);
  }
}
.top-flow .step-list__tag {
  position: absolute;
  top: -36px;
  left: -23px;
}

@media screen and (max-width: 767px) {
  .top-flow .step-list__tag {
    top: -41px;
    left: 0px;
    width: 86px;
    height: 86px;
  }
}
@media print, screen and (min-width: 768px) {
  .top-flow .step-list__img {
    width: 41.6%;
  }
  .top-flow .step-list__img img {
    width: 100%;
  }
}
.top-flow .step-list__img.dummy::before {
  top: 10px;
  right: 10px;
  left: auto;
  margin-top: 0;
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .top-flow .step-list__img.dummy::before {
    width: 37px;
    height: 19px;
  }
}
@media print, screen and (min-width: 768px) {
  .top-flow .step-list__group {
    padding-left: 6%;
    width: 57.8%;
  }
}
@media screen and (max-width: 767px) {
  .top-flow .step-list__group {
    padding: 10px 20px 25px;
  }
}
.top-flow .step-list__ttl {
  margin-bottom: 15px;
  color: #2c8db4;
  text-align: left;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .top-flow .step-list__ttl {
    margin-bottom: 7px;
    font-size: 6.1333333333vw;
  }
}
.top-flow .step-list__txt {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.875;
}

@media screen and (max-width: 767px) {
  .top-flow .step-list__txt {
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
  }
}
.top-flow .step-list__memo {
  margin-top: 30px;
  margin-right: 2%;
  padding: 15px 45px;
  width: 100%;
  background-color: #f3f8fa;
}

@media screen and (max-width: 767px) {
  .top-flow .step-list__memo {
    margin: 20px;
    padding: 8px 20px 20px;
    width: auto;
  }
}
.top-flow .step-list__memo-ttl {
  margin-bottom: 20px;
  color: #2c8db4;
  text-align: center;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .top-flow .step-list__memo-ttl {
    font-size: 4vw;
  }
}
.top-flow .step-list__memo-ttl span {
  position: relative;
  line-height: 1.1;
}

.top-flow .step-list__memo-ttl span:before {
  position: absolute;
  bottom: 10px;
  left: calc(100% + 8px);
  width: 19px;
  height: 1px;
  background-color: #2c8db4;
  content: "";
}

@media screen and (max-width: 767px) {
  .top-flow .step-list__memo-ttl span:before {
    bottom: 1.8666666667vw;
    width: 2.5333333333vw;
  }
}
.top-flow .step-list__memo-ttl span:after {
  position: absolute;
  right: calc(100% + 8px);
  bottom: 10px;
  width: 19px;
  height: 1px;
  background-color: #2c8db4;
  content: "";
}

@media screen and (max-width: 767px) {
  .top-flow .step-list__memo-ttl span:after {
    bottom: 1.8666666667vw;
    width: 2.5333333333vw;
  }
}
@media print, screen and (min-width: 768px) {
  .top-flow .step-list__memo-ttl img {
    width: auto;
    height: 11px;
  }
}
@media screen and (max-width: 767px) {
  .top-flow .step-list__memo-ttl {
    margin-bottom: 13px;
  }
  .top-flow .step-list__memo-ttl img {
    width: auto;
    height: 2.1333333333vw;
  }
}
.top-flow .step-list__memo-lead {
  margin-bottom: 5px;
  text-align: center;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .top-flow .step-list__memo-lead {
    margin-bottom: 11px;
    text-align: left;
    font-size: 5.3333333333vw;
    line-height: 1.225;
  }
}
.top-flow .step-list__memo-txt {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .top-flow .step-list__memo-txt {
    font-size: 3.4666666667vw;
    line-height: 1.6923076923;
  }
}
.course_info__price {
  margin-bottom: 10px;
  color: #637a85;
  font-weight: 500;
  line-height: 1.4;
}
.course_info__price .font__lg {
  font-size: 2rem;
}
.course_info__price .font__md {
  font-size: 1.8rem;
}
.course_info__price .font__sm {
  font-size: 1.6rem;
}

.course_info__attention {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  padding: 5px;
  width: 100%;
  background-color: #f39800;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
}

.faq_wrap {
  position: relative;
  width: 100%;
}
.faq_wrap .title__img {
  width: 109px;
}

@media (max-width: 767px) {
  .faq_wrap .title__img {
    width: 17.4%;
  }
}
.faq__content {
  position: relative;
  padding: 46px 0 40px;
  text-align: center;
}
.faq__content .index__title_1 {
  margin-bottom: 73px;
}

@media (max-width: 767px) {
  .faq__content {
    padding: 35px 0 15px;
  }
  .faq__content .index__title_1 {
    margin-bottom: 30px;
  }
}
.faq__block {
  width: 100%;
}
.faq__block + .faq__block {
  margin-top: 70px;
}
.faq__block + .content__link {
  margin-top: 30px;
}
.faq__block + .content__link + .index__title_1 {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .faq__block {
    margin-right: auto;
    margin-left: auto;
    width: 92%;
  }
  .faq__block + .faq__block {
    margin-top: 40px;
  }
  .faq__block + .content__link {
    margin-top: 15px;
  }
  .faq__block + .content__link + .index__title_1 {
    margin-top: 30px;
  }
}
.faq_block__item {
  padding: 20px 40px 27px;
  width: 100%;
}
.faq_block__item + .faq_block__item {
  margin-top: 30px;
}
.faq_block__item.type__q {
  background-color: rgba(0, 140, 180, 0.3);
}
.faq_block__item.type__a {
  background-color: rgba(99, 122, 133, 0.3);
}

@media (max-width: 767px) {
  .faq_block__item {
    padding: 15px 15px 10px;
  }
  .faq_block__item + .faq_block__item {
    margin-top: 20px;
  }
}
.faq__icon {
  margin: 0 auto 18px;
  width: 40px;
}
.faq__icon img {
  display: block;
}

@media (max-width: 767px) {
  .faq__icon {
    margin-bottom: 15px;
    width: 25px;
  }
}
.faq_block__detail {
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .faq_block__detail {
    font-size: 1.6rem;
  }
}
.faq_sub_content {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: none;
  visibility: hidden;
  padding: 20px 0;
  width: 100%;
  width: 100%;
  background-color: rgba(99, 122, 133, 0.15);
  background-color: #e7ebed;
  opacity: 0;
}
.faq_sub_content.absl {
  position: absolute;
  background-color: rgba(99, 122, 133, 0.15);
}

@media (max-width: 767px) {
  .faq_sub_content {
    visibility: visible;
    padding: 10px;
    opacity: 1;
  }
}
.faq_sub__title {
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .faq_sub__title {
    display: none;
  }
}
.faq_sub__flex {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

@media (max-width: 767px) {
  .faq_sub__flex {
    justify-content: space-between;
  }
}
.faq_sub_flex__item {
  display: none;
  width: 300px;
}
.faq_sub_flex__item.btn__lg {
  display: block;
  margin: 0 auto !important;
  width: 100%;
}
.faq_sub_flex__item.btn__lg a {
  margin: 0 auto;
  width: 345px;
}
.faq_sub_flex__item.btn__makuake {
  display: block;
  margin-right: 20px;
  width: 570px;
}
.faq_sub_flex__item a {
  display: block;
}
.faq_sub_flex__item a img {
  display: block;
}
.faq_sub_flex__item:last-child {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .faq_sub_flex__item {
    display: block;
    width: 48%;
  }
  .faq_sub_flex__item.btn__lg {
    display: none;
  }
  .faq_sub_flex__item.btn__lg a {
    width: 48%;
  }
  .faq_sub_flex__item.btn__makuake {
    display: block;
    margin: 0 auto !important;
    width: 86.2%;
  }
  .faq_sub_flex__item:last-child {
    margin-left: 0;
  }
}
.faq_sub__note {
  display: none;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.75;
}
.faq_sub__note strong {
  font-weight: 500;
}

@media (max-width: 767px) {
  .faq_sub__note {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.4;
  }
  .faq_sub__note strong {
    display: inline-block;
    font-weight: 400;
    font-size: 1rem;
  }
}
.makuake_mini_box {
  margin: 0 auto 70px;
  padding: 10px;
  width: 720px;
  background-color: #f39800;
}

@media (max-width: 767px) {
  .makuake_mini_box {
    margin-bottom: 30px;
    padding: 7px;
    width: calc(100% - 20px);
  }
}
@media (max-width: 767px) {
  #program .makuake_mini_box {
    width: 100%;
  }
}
.makuake_mini_title_box {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  padding: 5px 15px 15px;
  background-color: #f39800;
}

@media (max-width: 767px) {
  .makuake_mini_title_box {
    padding: 3px 10px 10px;
  }
}
.makuake_mini__title {
  font-weight: bold;
  font-size: 4.3rem;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  line-height: 1;
}

@media (max-width: 767px) {
  .makuake_mini__title {
    font-size: 2.2rem;
  }
}
.makuake_mini__logo {
  width: 200px;
}
.makuake_mini__logo img {
  display: block;
}

@media (max-width: 767px) {
  .makuake_mini__logo {
    width: 100px;
  }
}
.makuake_mini_detail_box {
  padding: 20px;
  background-color: #fff;
}

@media (max-width: 767px) {
  .makuake_mini_detail_box {
    padding: 10px;
  }
}
.makuake_mini_detail__intro {
  margin: 0 auto;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .makuake_mini_detail__intro {
    font-size: 1.4rem;
  }
}
.makuake_mini_detail__flex {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  margin: 20px auto 40px;
}

@media (max-width: 767px) {
  .makuake_mini_detail__flex {
    display: block;
    margin: 14px auto 30px;
  }
}
.makuake_mini_detail_flex__text {
  text-align: left;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 1.4;
}
.makuake_mini_detail_flex__text .orange {
  color: #f39800;
}
.makuake_mini_detail_flex__text .lg {
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  .makuake_mini_detail_flex__text {
    text-align: center;
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .makuake_mini_detail_flex__text .lg {
    font-size: 1.6rem;
  }
}
.makuake_mini_detail_flex__arrow {
  margin: 0 20px;
  width: 24px;
}
.makuake_mini_detail_flex__arrow img {
  display: block;
}

@media (max-width: 767px) {
  .makuake_mini_detail_flex__arrow {
    margin: 10px auto 5px;
    width: 12px;
    transform: rotate(90deg);
  }
}
.makuake_mini_detail_flex__price {
  border-bottom: 10px solid #f39800;
  color: #f39800;
  letter-spacing: 0.02em;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
}
.makuake_mini_detail_flex__price span {
  display: inline-block;
}
.makuake_mini_detail_flex__price .lg {
  font-size: 6.8rem;
}
.makuake_mini_detail_flex__price .point {
  position: relative;
  bottom: 15px;
}
.makuake_mini_detail_flex__price .right {
  margin-right: -8px;
}
.makuake_mini_detail_flex__price .left {
  margin-left: -8px;
}

@media (max-width: 767px) {
  .makuake_mini_detail_flex__price {
    display: inline-block;
    border-width: 3px;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .makuake_mini_detail_flex__price .lg {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px) {
  .makuake_mini_detail_flex__price .point {
    bottom: 3px;
  }
}
@media (max-width: 767px) {
  .makuake_mini_detail_flex__price .right {
    margin-right: -6px;
  }
}
@media (max-width: 767px) {
  .makuake_mini_detail_flex__price .left {
    margin-left: -6px;
  }
}
.makuake_mini_detail__note {
  margin-top: 5px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .makuake_mini_detail__note {
    font-size: 1rem;
  }
}
.makuake_main_title_box {
  padding: 0 15px 15px;
  background-color: #f39800;
}

@media (max-width: 767px) {
  .makuake_main_title_box {
    padding: 3px 10px 10px;
  }
}
.makuake_main__logo {
  margin: 0 auto;
  width: 290px;
}

@media (max-width: 767px) {
  .makuake_main__logo {
    width: 80%;
  }
}
.makuake_main__title {
  text-align: center;
  font-size: 3.1rem;
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  line-height: 1.2;
}

@media (max-width: 767px) {
  .makuake_main__title {
    font-size: 2.6rem;
  }
}
.makuake_main__date {
  display: inline-block;
  margin: 30px auto 0;
  padding: 10px 20px 15px;
  border-radius: 10px;
  background-color: rgba(98, 122, 134, 0.15);
  color: #f39800;
  font-weight: bold;
  line-height: 1;
}
.makuake_main__date .normal {
  font-size: 2.2rem;
}
.makuake_main__date .lg {
  font-size: 3.4rem;
}

@media (max-width: 767px) {
  .makuake_main__date {
    margin: 20px auto 0;
    padding: 7px 10px 10px;
    text-align: left;
    line-height: 1.2;
  }
}
@media (max-width: 767px) {
  .makuake_main__date .normal {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .makuake_main__date .lg {
    font-size: 1.8rem;
  }
  .makuake_main__date .lg.sp_indent {
    padding-left: 2.35em;
  }
}
.makuake_main__border {
  margin: 30px auto 10px;
  width: 100%;
  height: 0;
  border-top: 2px dashed #f39800;
  border-bottom: 2px dashed #f39800;
}

@media (max-width: 767px) {
  .makuake_main__border {
    margin: 20px auto 10px;
  }
}
.makuake_main_info_box {
  padding: 0 10px;
  text-align: left;
}

.makuake_main_index__num {
  display: inline-flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  margin: 20px 0 0;
  padding: 10px 20px 12px;
  border-radius: 30px;
  background-color: #008cb4;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .makuake_main_index__num {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px 10px 6px;
    font-size: 1.6rem;
  }
}
.makuake_main_flex_menu {
  display: flex;
  align-items: baseline;
  -ms-flex-align: baseline;
  justify-content: space-between;
  margin: 0 auto 10px;
}

@media (max-width: 767px) {
  .makuake_main_flex_menu {
    display: block;
  }
}
.makuake_main_flex_menu__title {
  color: #008cb4;
  letter-spacing: 0.02em;
  font-weight: bold;
  font-size: 2.3rem;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .makuake_main_flex_menu__title {
    font-size: 2rem;
  }
}
.makuake_main_flex_menu__price {
  color: #e83828;
  font-weight: bold;
}
.makuake_main_flex_menu__price .lg {
  font-size: 3.5rem;
}
.makuake_main_flex_menu__price .md {
  font-size: 1.5rem;
}
.makuake_main_flex_menu__price .sm {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .makuake_main_flex_menu__price .lg {
    font-size: 2.2rem;
  }
}
@media (max-width: 767px) {
  .makuake_main_flex_menu__price .md {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  .makuake_main_flex_menu__price .sm {
    font-size: 1.2rem;
  }
}
.makuake_main__context {
  text-align: justify;
  font-size: 1.7rem;
}
.makuake_main__context .orange {
  color: #f39800;
}

@media (max-width: 767px) {
  .makuake_main__context {
    font-size: 1.4rem;
  }
}
.makuake_main__btn {
  margin-top: -40px;
}
.makuake_main__btn a {
  display: block;
  margin: 0 auto;
  width: 320px;
}
.makuake_main__btn a img {
  display: block;
}

@media (max-width: 767px) {
  .makuake_main__btn {
    margin-top: -10px;
  }
}
@media (max-width: 767px) {
  .makuake_main__btn a {
    width: 60%;
  }
}
.mv_wrap {
  position: relative;
  z-index: 1;
  background-color: black;
}

.mv_main_box {
  height: 50vw;
  text-align: center;
}
.mv_main_box h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 11;
  width: 100%;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 4.6rem;
  transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
  .mv_main_box {
    height: 100vw;
  }
  .mv_main_box h1 {
    font-size: 2.6rem;
  }
}
.slide_item {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 50vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  animation: anime 30s 0s infinite;
}

@media (max-width: 767px) {
  .slide_item {
    height: 100vw;
  }
}
.slide_item:nth-of-type(2) {
  animation-delay: 10s;
}

.slide_item:nth-of-type(3) {
  animation-delay: 20s;
}

@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    z-index: 9;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.mv_sub_box {
  padding: 58px 0;
  width: 100%;
  background-color: rgba(99, 122, 133, 0.6);
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-family: serif;
}

@media (max-width: 767px) {
  .mv_sub_box {
    padding: 35px 0;
  }
}
.mv_sub__text {
  font-size: 1.8rem;
  line-height: 1.6;
}
.mv_sub__text > strong {
  font-size: 2.2rem;
}
.mv_sub__text + .mv_sub__text {
  margin-top: 2rem;
}

@media (max-width: 767px) {
  .mv_sub__text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .mv_sub__text > strong {
    font-size: 1.6rem;
  }
  .mv_sub__text + .mv_sub__text {
    margin-top: 0;
  }
}
.mv_sub__strong {
  margin-top: 15px;
  font-size: 2.35rem;
  line-height: 2.2;
}
.mv_sub__strong span {
  display: inline-block;
  border-bottom: 2px solid #fff;
  line-height: 1.1;
}

@media (max-width: 767px) {
  .mv_sub__strong {
    margin-top: 5px;
    font-size: 2.2rem;
  }
  .mv_sub__strong span {
    border-bottom: none;
    text-decoration: underline;
    line-height: 1.4;
  }
}
.news_wrap {
  width: 100%;
  background-color: rgba(99, 122, 133, 0.15);
}
.news_wrap .title__img {
  width: 164px;
}
.news_wrap .btn-more {
  width: 100%;
}

@media (max-width: 767px) {
  .news_wrap .title__img {
    width: 26.4%;
  }
}
.news__content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  background-color: #F1FCFF;
  text-align: center;
}

@media (max-width: 767px) {
  .news__content {
    padding: 35px 0 40px;
  }
}
.news__list_box {
  margin: 0 auto;
  width: 33%;
}

@media (max-width: 767px) {
  .news__list_box {
    margin-bottom: 50px;
    width: 100%;
    border-right: none;
  }
  .news__list_box:first-child {
    margin-bottom: 0;
  }
}
.news__list {
  width: 100%;
}

@media (max-width: 767px) {
  .news__list {
    margin: 0 auto;
    width: 92%;
  }
}
.news_list__item {
  box-sizing: border-box;
  padding: 0 5% 50px;
  width: 100%;
}
.news_list__item a {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .news_list__item {
    padding: 0;
  }
  .news_list__item + .news_list__item {
    margin-top: 25px;
  }
}
.news_list__detail {
  width: 65%;
}

@media (max-width: 767px) {
  .news_list__detail {
    padding: 5px 10px;
  }
}
.news_list__data {
  margin-bottom: 5px;
  text-align: left;
  font-size: 1.4rem;
}

@media (max-width: 767px) {
  .news_list__data {
    font-size: 1.2rem;
  }
}
.news_list__text {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.75;
}
.news_list__text + .news_list__text {
  margin-top: 8px;
}

@media (max-width: 767px) {
  .news_list__text {
    font-size: 1.2rem;
  }
}
.news_list__photo {
  width: 100px;
}
.news_list__photo img {
  display: block;
  width: 100%;
}

.news_list__btn {
  margin: 52px auto 0;
  width: 260px;
}
.news_list__btn a {
  display: block;
}
.news_list__btn a img {
  display: block;
}

@media (max-width: 767px) {
  .news_list__btn {
    margin-top: 30px;
    width: 172px;
  }
}
.media_link {
  margin: 80px 0;
  text-align: center;
}
.media_link a {
  color: #008cb4;
}

#news .news__list_box {
  width: 100%;
}
#news .news_list__photo {
  width: 344px;
}
#news .news_list__detail {
  box-sizing: border-box;
  padding-left: 30px;
}
#news .news_list__text {
  font-size: 1.6rem;
}
#news .tab-001 {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  #news .news_list__item a {
    flex-wrap: wrap;
  }
  #news .news_list__photo {
    width: 100%;
  }
  #news .news_list__detail {
    width: 100%;
  }
}
#news .tab-001 > label {
  flex: 1 1;
  order: -1;
  padding: 0.7em 1em 0.5em;
  min-width: 70px;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0;
  background-color: #e9f0f6;
  color: #008cb4;
  text-align: center;
  font-weight: bold;
  font-size: 0.9em;
  cursor: pointer;
}
#news .tab-001 > label:hover {
  opacity: 0.8;
}
#news .tab-001 input {
  display: none;
}
#news .tab-001 > div {
  display: none;
  padding: 1.5em 1em;
  width: 100%;
  background-color: #fff;
}
#news .tab-001 label:has(:checked) {
  border-width: 4px 1px 1px;
  border-style: solid;
  border-color: #008cb4 #f0f0f0 #fff;
  border-radius: 5px;
  background-color: #fff;
  color: #008cb4;
}
#news .tab-001 label:has(:checked) + div {
  display: block;
}

.voice_wrap {
  width: 100%;
}
.voice_wrap .title__img {
  width: 176px;
}
.voice_wrap .btn-more {
  margin-top: 50px;
}

@media (max-width: 767px) {
  .voice_wrap .title__img {
    width: 28%;
  }
}
.voice__content {
  position: relative;
  padding: 60px 0 50px;
  text-align: center;
}
.voice__content .index__title_2 {
  margin-bottom: 46px;
}

@media (max-width: 767px) {
  .voice__content {
    padding: 25px 0 40px;
  }
  .voice__content p {
    padding-right: 3%;
    padding-left: 3%;
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.top-voice .voice-list__item {
  display: flex;
  background-color: #d5ecf3;
}

.top-voice .voice-list__item + .voice-list__item {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .top-voice .voice-list__item + .voice-list__item {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-voice .voice-list__item {
    display: block;
  }
}
.top-voice .voice-list__img {
  width: 32.1%;
}
.top-voice .voice-list__img img {
  width: 100%;
}

@media print, screen and (min-width: 768px) {
  .top-voice .voice-list__img {
    padding-bottom: 28px;
  }
}
@media screen and (max-width: 900px) {
  .top-voice .voice-list__img {
    width: 39%;
  }
}
@media screen and (max-width: 767px) {
  .top-voice .voice-list__img {
    width: 100%;
  }
}
.top-voice .voice-list__img-caption {
  margin-top: 7px;
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .top-voice .voice-list__img-caption {
    padding: 0 20px;
    text-align: left;
    font-size: 3.2vw;
  }
}
.top-voice .voice-list__ttl {
  margin-bottom: 6px;
  color: #49a0c0;
  text-align: left;
  font-size: 2rem;
  line-height: 1.5;
}

@media screen and (max-width: 900px) {
  .top-voice .voice-list__ttl {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .top-voice .voice-list__ttl {
    font-size: 5.0666666667vw;
    line-height: 1.4736842105;
  }
}
.top-voice .voice-list__txt {
  overflow: hidden;
  max-height: 85px;
  text-align: left;
  line-height: 2;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.top-voice .voice-list__txt p + p {
  margin-top: 25px;
}

@media screen and (max-width: 767px) {
  .top-voice .voice-list__txt {
    max-height: 38.4vw;
    letter-spacing: 0.03em;
    line-height: 1.7142857143;
  }
}
.top-voice .voice-list__group {
  padding: 25px 40px;
  width: 67.9%;
}

.top-voice .voice-list__group .voice-list__txt p {
  display: none;
}

.top-voice .voice-list__group .voice-list__txt p:first-child {
  display: block;
}

.top-voice .voice-list__group.active .voice-list__txt {
  max-height: none;
}

.top-voice .voice-list__group.active .voice-list__txt p {
  display: block;
}

@media screen and (max-width: 900px) {
  .top-voice .voice-list__group {
    padding: 20px 18px;
    width: 61%;
  }
}
@media screen and (max-width: 767px) {
  .top-voice .voice-list__group {
    padding: 16px 20px 30px;
    width: 100%;
  }
}
.top-voice .voice-list__btn {
  margin-top: 20px;
  color: #49a0c0;
  font-weight: normal;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .top-voice .voice-list__btn {
    margin-top: 12px;
  }
}
.top-voice .voice-block {
  margin-top: 70px;
}

@media screen and (max-width: 767px) {
  .top-voice .voice-block {
    margin-top: 44px;
  }
  .top-voice .voice-block#point {
    padding-top: 37px;
  }
}
.top-voice .voice-block__ttl {
  margin-bottom: 15px;
  color: #50636c;
  text-align: center;
  font-weight: normal;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .top-voice .voice-block__ttl {
    overflow: hidden;
    margin-bottom: 15px;
    font-size: 5.3333333333vw;
    line-height: 1.3;
  }
}
.top-voice .voice-block-card .diff-block__ttl {
  margin-bottom: 55px;
}

@media screen and (max-width: 767px) {
  .top-voice .voice-block-card .diff-block__ttl {
    margin-bottom: 28px;
  }
}
.top-voice .voice-video {
  position: relative;
  display: block;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  max-width: 670px;
  width: 100%;
  background-color: #000;
}

.top-voice .voice-video:before {
  display: block;
  padding-top: 56.25%;
  content: "";
}

.top-voice .voice-video iframe, .top-voice .voice-video video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.top-voice .voice-video iframe[poster], .top-voice .voice-video video[poster] {
  width: 100%;
  height: 100%;
}

.service_wrap {
  width: 100%;
}
.service_wrap .title__img {
  width: 456px;
}

@media (max-width: 767px) {
  .service_wrap .title__img {
    width: 73.2%;
  }
}
.service__content {
  position: relative;
  padding: 60px 0 50px;
  text-align: center;
}

@media (max-width: 767px) {
  .service__content {
    padding: 25px 0 40px;
  }
  .service__content p {
    padding-right: 3%;
    padding-left: 3%;
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.service_mini__photo {
  margin: 0 auto;
  padding: 45px 0 30px;
  width: 80%;
}
.service_mini__photo + .index__title_1 {
  margin-top: 70px;
}
.service_mini__photo img {
  display: block;
}

@media (max-width: 767px) {
  .service_mini__photo {
    margin: 0 auto;
    padding: 25px 0 20px;
    width: 78.9%;
  }
  .service_mini__photo + .index__title_1 {
    margin-top: 50px;
  }
}
.staff_wrap {
  width: 100%;
}
.staff_wrap .title__img {
  width: 174px;
}

@media (max-width: 767px) {
  .staff_wrap .title__img {
    width: 28%;
  }
}
.staff__content {
  position: relative;
  padding: 46px 0 30px;
  text-align: center;
}

@media (max-width: 767px) {
  .staff__content {
    padding: 30px 0 40px;
  }
  .staff__content .index__title_2 {
    padding-right: 3%;
    padding-left: 3%;
  }
}
.staff_flex__list {
  display: flex;
  margin: 46px auto 0;
  padding-bottom: 30px;
  width: 100%;
}
.staff_flex__list.flex__center {
  justify-content: center;
}
.staff_flex__list.flex__center .staff_flex_list__item {
  margin: 0 10px;
}

@media (max-width: 767px) {
  .staff_flex__list.flex__center .staff_flex_list__item {
    margin: 0 auto 55px;
  }
}
@media (max-width: 767px) {
  .staff_flex__list {
    flex-wrap: wrap;
    margin: 25px auto 0;
    width: 92%;
  }
}
.staff_flex_list__item {
  margin: 0 20px 20px 0;
  width: 380px;
}

@media (max-width: 767px) {
  .staff_flex_list__item {
    position: relative;
    margin: 0 auto 55px;
    width: 100%;
  }
  .staff_flex_list__item::before, .staff_flex_list__item::after {
    position: absolute;
    bottom: -25px;
    left: 50%;
    display: block;
    width: 30px;
    height: 2.5px;
    content: "";
  }
  .staff_flex_list__item::before {
    background-color: #008cb4;
    transform: translateX(-102%);
  }
  .staff_flex_list__item::after {
    background-color: #637a85;
    transform: translateX(2%);
  }
  .staff_flex_list__item:last-child {
    margin-bottom: 0 !important;
  }
  .staff_flex_list__item:last-child::before, .staff_flex_list__item:last-child::after {
    content: none;
  }
}
.staff__photo {
  margin-bottom: 20px;
  width: 100%;
}
.staff__photo img {
  display: block;
}

@media (max-width: 767px) {
  .staff__photo {
    margin-bottom: 20px;
  }
}
.staff__name {
  text-align: left;
}

.staff__sub {
  display: block;
  margin-bottom: 16px;
  padding-left: 2px;
  letter-spacing: 0.02em;
  font-size: 1.4rem;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .staff__sub {
    margin-bottom: 11px;
    font-size: 1.5rem;
  }
}
.staff__main {
  display: flex;
  align-items: flex-start;
  -ms-flex-align: start;
  flex-direction: column;
  text-align: left;
  letter-spacing: 0.02em;
  font-size: 2.2rem;
  line-height: 1.2;
}
.staff__main > span:not(.font_mini):first-letter {
  color: #008cb4;
}
.staff__main > .font_mini {
  display: inline-block;
  margin-top: 5px;
  padding-top: 2px;
  font-size: 1.2rem;
}

.store_wrap {
  width: 100%;
}
.store_wrap .title__img {
  width: 170px;
}

@media (max-width: 767px) {
  .store_wrap .title__img {
    width: 28%;
  }
}
.store__content {
  position: relative;
  padding: 55px 0 0;
}

@media (max-width: 767px) {
  .store__content {
    padding: 15px 0 0;
  }
  .store__content .index__title_3 {
    margin-right: 3%;
    margin-left: 3%;
  }
}
.store_photo__list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

@media (max-width: 767px) {
  .store_photo__list {
    margin: 0 auto 30px;
    width: 88.6%;
  }
}
.store_photo_main__item {
  width: 772px;
}

@media (max-width: 767px) {
  .store_photo_main__item {
    display: none;
  }
}
.store_photo__main {
  width: 100%;
}
.store_photo__main + .store_photo__main {
  margin-top: 20px;
}

.store_photo_sub__item {
  width: 381px;
}

@media (max-width: 767px) {
  .store_photo_sub__item {
    display: flex;
    align-items: center;
    -ms-flex-align: center;
    justify-content: center;
    width: 100%;
  }
}
.store_photo__sub {
  width: 100%;
}
.store_photo__sub + .store_photo__sub {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .store_photo__sub {
    width: 50%;
  }
  .store_photo__sub + .store_photo__sub {
    margin-top: 0;
  }
}
.store_info__title {
  margin-bottom: 8px;
  text-align: left;
  font-size: 2rem;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .store_info__title {
    margin-right: auto;
    margin-left: auto;
    width: 88.6%;
    font-size: 1.3rem;
  }
}
.store_info__list {
  display: flex;
  margin: 0;
  padding: 23px 0 26px;
  width: 100%;
  border-top: 1px solid #000;
}

@media (max-width: 767px) {
  .store_info__list {
    margin-right: auto;
    margin-left: auto;
    padding: 8px 0;
    width: 88.6%;
  }
}
.store_info_list__title {
  padding: 0 10px 0 20px;
  min-width: 125px;
  font-size: 1.6rem;
  line-height: 1.75;
}

@media (max-width: 767px) {
  .store_info_list__title {
    padding: 0 20px 0 0;
    min-width: 95px;
    font-size: 1.25rem;
  }
}
.store_info_list__detail {
  flex: 1;
  padding-right: 60px;
  font-size: 1.6rem;
  line-height: 1.75;
}
.store_info_list__detail .space {
  display: inline-block;
  width: 0.55em;
}

@media (max-width: 767px) {
  .store_info_list__detail {
    padding-right: 0;
    font-size: 1.25rem;
  }
}
.store__info {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .store__info {
    flex-wrap: wrap;
  }
}
.store__map {
  margin: 8px auto 0;
  padding-bottom: 15px;
  max-width: 497px;
  width: 100%;
}
.store__map iframe {
  align-self: stretch;
  width: 60%;
}

@media (max-width: 767px) {
  .store__map {
    display: block;
    padding-bottom: 0;
    width: 90%;
  }
  .store__map iframe {
    width: 100%;
    height: 250px;
  }
}
.store_map__pic {
  margin: 0 1% 0 0;
}
.store_map__pic img {
  display: block;
}

@media (max-width: 767px) {
  .store_map__pic {
    margin: 0 auto 20px;
    width: 100%;
  }
}
.store__info__detail {
  width: 55%;
}

@media (max-width: 767px) {
  .store__info__detail {
    width: 100%;
    margin-top: 30px;
  }
}
#information .wrap > *:first-child {
  margin-top: 0;
}
#information .wrap > *:last-child {
  margin-bottom: 0;
}
#information .title__img {
  width: 535px;
}
#information.p-reserve .title__img {
  width: 350px;
}
#information .info_container {
  margin: 0 auto;
  max-width: 860px;
}
#information .info_container > *:first-child {
  margin-top: 0;
}
#information .station-list {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  #information .station-list {
    flex-wrap: wrap;
  }
}
#information .station-list li {
  position: relative;
}
@media (max-width: 767px) {
  #information .station-list li {
    margin-bottom: 10px;
  }
}
#information .station-list li::after {
  content: "";
  border: 0;
  border-top: solid 2px #008cb4;
  border-right: solid 2px #008cb4;
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%) rotate(135deg);
}
#information .station-list a {
  color: #008cb4;
  font-size: 2rem;
  font-weight: bold;
}
#information .info_outline {
  margin-bottom: 60px;
}
#information #yokohama-station.info_outline {
  margin-top: 120px;
}
#information .info_outline__title {
  margin-bottom: 40px;
  color: #008cb4;
  font-weight: 500;
  font-size: 2.4rem;
}
#information .info_outline__text {
  margin-bottom: 30px;
  color: #008cb4;
  font-weight: 500;
  font-size: 2.4rem;
}
#information .info_img_card {
  margin-bottom: 60px;
}
#information .info_img_card__title {
  margin-bottom: 10px;
  color: #008cb4;
  font-weight: 500;
  font-size: 1.8rem;
}
#information .info_img_card__text {
  margin-bottom: 15px;
  font-size: 1.7rem;
}
#information .info_img_card__body {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
#information .info_img_card__body-item {
  width: 48.5%;
}
#information .info_def_list {
  display: flex;
  align-content: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 30px;
}
#information .info_def_list.has-border {
  padding-top: 30px;
  border-top: 1px solid #000;
}
#information .info_def_list.is-last-element {
  margin-bottom: 80px;
}
#information .info_def_list dt {
  flex-basis: 7em;
  margin-right: 20px;
  color: #008cb4;
  font-weight: 500;
  font-size: 1.7rem;
}
#information .info_def_list dt:before {
  display: inline-block;
  width: 0;
  height: 0;
  border-width: 6px 0 6px 10.4px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #008db4;
  content: "";
}
#information .info_def_list dd {
  flex: 1;
  font-size: 1.7rem;
}
#information .info_def_list dd p {
  margin-bottom: 18px;
  font-size: inherit;
}
#information .info_def_list dd p:last-child {
  margin-bottom: 0;
}
#information .info_map {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: space-between;
  margin: 0 auto;
}
#information .info_map iframe {
  align-self: stretch;
  width: 60%;
}
#information .info_map_notice {
  margin-bottom: 60px;
  text-align: right;
  font-size: 1.2rem;
}
#information .sp-only {
  display: none;
}
#information .pc-only {
  display: block;
}

@media (max-width: 767px) {
  #information .title__img {
    width: 260px;
  }
}
@media (max-width: 767px) {
  #information .info_container {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  #information .info_outline {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  #information .info_outline__title {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  #information .info_outline__text {
    margin-bottom: 15px;
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  #information .info_img_card {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  #information .info_img_card__title {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  #information .info_img_card__text {
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  #information .info_def_list {
    flex-direction: column;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  #information .info_def_list dt {
    flex-basis: auto;
    margin-right: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  #information .info_def_list dd {
    flex: none;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  #information .info_def_list dd p {
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  #information .info_map {
    display: block;
  }
}
@media (max-width: 767px) {
  #information .info_map iframe {
    width: 100%;
    height: 250px;
  }
}
@media (max-width: 767px) {
  #information .info_map_notice {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  #information .sp-only {
    display: block;
  }
}
@media (max-width: 767px) {
  #information .pc-only {
    display: none;
  }
}
.article_main__heading.title__news .title__img {
  width: 164px;
}

@media (max-width: 767px) {
  .article_main__heading.title__news .title__img {
    width: 100px;
  }
}
.news_main_wrap {
  padding: 70px 0 80px;
  background-color: rgba(99, 122, 133, 0.15);
}
.news_main_wrap.no__bg {
  padding-top: 0;
  background-color: #fff;
}

@media (max-width: 767px) {
  .news_main_wrap {
    padding: 40px 10px 80px;
  }
}
.news_cat__list {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 46px;
  width: 100%;
}

@media (max-width: 767px) {
  .news_cat__list {
    padding-bottom: 30px;
  }
}
.news_cat_list__item {
  margin: 0 24px 24px 0;
  width: 282px;
}
.news_cat_list__item:nth-of-type(4n) {
  margin-right: 0;
}
.news_cat_list__item a {
  display: block;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  padding: 14px 5px;
  width: 100%;
  background-color: #fff;
  color: #231815;
  letter-spacing: 0.05em;
  font-size: 1.9rem;
  line-height: 1.3;
  transition: all 0.3s;
}
.news_cat_list__item a.active, .news_cat_list__item a:hover {
  background-color: #008cb4;
  color: #fff;
}

@media (max-width: 767px) {
  .news_cat_list__item:nth-of-type(4n) {
    margin-right: 4%;
  }
}
@media (max-width: 767px) {
  .news_cat_list__item {
    margin: 0 4% 4% 0;
    width: 48%;
  }
  .news_cat_list__item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .news_cat_list__item a {
    font-size: 1.6rem;
  }
}
.news_article__list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.news_article_list__item {
  align-self: stretch;
  margin: 0 39px 30px 0;
  width: 374px;
}
.news_article_list__item:nth-of-type(3n) {
  margin-right: 0;
}
.news_article_list__item a {
  display: block;
  padding: 14px 15px 30px;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

@media (max-width: 767px) {
  .news_article_list__item:nth-of-type(3n) {
    margin-right: 4%;
  }
}
@media (max-width: 767px) {
  .news_article_list__item {
    margin: 0 4% 4% 0;
    width: 48%;
  }
  .news_article_list__item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .news_article_list__item a {
    padding: 10px 10px 15px;
  }
}
.news_article_list__photo {
  margin-bottom: 20px;
  width: 100%;
  height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 767px) {
  .news_article_list__photo {
    margin-bottom: 15px;
    height: 89px;
  }
}
.news_article_list__detail {
  padding: 0 14px;
  width: 100%;
}

@media (max-width: 767px) {
  .news_article_list__detail {
    padding: 0 10px;
  }
}
.news_article_list__date {
  margin-bottom: 12px;
  padding-bottom: 18px;
  width: 100%;
  border-bottom: 1px solid #000;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .news_article_list__date {
    margin-bottom: 8px;
    padding-bottom: 14px;
    font-size: 1.2rem;
  }
}
.news_article_list__text {
  letter-spacing: 0.05em;
  font-size: 1.8rem;
  line-height: 1.67;
}

@media (max-width: 767px) {
  .news_article_list__text {
    font-size: 1.4rem;
  }
}
.news_page__nav {
  margin-top: 48px;
  width: 100%;
}
.news_page__nav .wp-pagenavi {
  position: relative;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  text-align: center;
}
.news_page__nav .wp-pagenavi > a, .news_page__nav .wp-pagenavi > span {
  display: inline-flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  margin: 0 6px 0;
  color: #000;
  font-size: 2.6rem;
  line-height: 1;
}
.news_page__nav .wp-pagenavi > a > span, .news_page__nav .wp-pagenavi > span > span {
  display: inline-flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background-color: #fff;
  transition: all 0.3s;
}
.news_page__nav .wp-pagenavi > a.current > span, .news_page__nav .wp-pagenavi > a:hover > span {
  background-color: #008cb4;
  color: #fff;
}
.news_page__nav .wp-pagenavi > span.current > span, .news_page__nav .wp-pagenavi > span:hover > span {
  background-color: #008cb4;
  color: #fff;
}
.news_page__nav .wp-pagenavi > a.current > img, .news_page__nav .wp-pagenavi > a:hover > img {
  opacity: 0.7;
}
.news_page__nav .wp-pagenavi > span.current > img, .news_page__nav .wp-pagenavi > span:hover > img {
  opacity: 0.7;
}
.news_page__nav .wp-pagenavi > a > .arrow_1, .news_page__nav .wp-pagenavi > span > .arrow_1 {
  display: block;
  margin: 0 14px 0 4px;
  width: 13px;
  transition: opacity 0.3s;
}
.news_page__nav .wp-pagenavi > a > .arrow_2, .news_page__nav .wp-pagenavi > span > .arrow_2 {
  display: block;
  margin: 0 auto;
  width: 22px;
  transition: opacity 0.3s;
}
.news_page__nav .wp-pagenavi .previouspostslink {
  position: absolute;
  top: 50%;
  left: 0;
  margin: 0;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  letter-spacing: 0.05em;
  font-size: 2.6rem;
  line-height: 1;
  transition: all 0.3s;
  transform: translateY(-50%);
}
.news_page__nav .wp-pagenavi .previouspostslink > span {
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  color: #000;
}
.news_page__nav .wp-pagenavi .previouspostslink:hover > span {
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  opacity: 0.7;
}
.news_page__nav .wp-pagenavi .previouspostslink .small {
  font-size: 1.9rem;
}
.news_page__nav .wp-pagenavi .nextpostslink {
  position: absolute;
  top: 50%;
  right: 0;
  margin: 0;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  letter-spacing: 0.05em;
  font-size: 2.6rem;
  line-height: 1;
  transition: all 0.3s;
  transform: translateY(-50%);
}
.news_page__nav .wp-pagenavi .nextpostslink > span {
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  color: #000;
}
.news_page__nav .wp-pagenavi .nextpostslink:hover > span {
  width: auto;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  opacity: 0.7;
}
.news_page__nav .wp-pagenavi .nextpostslink .small {
  font-size: 1.9rem;
}

@media (max-width: 767px) {
  .news_page__nav {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .news_page__nav .wp-pagenavi {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .news_page__nav .wp-pagenavi > a, .news_page__nav .wp-pagenavi > span {
    margin: 0 4px;
    font-size: 1.3rem;
  }
  .news_page__nav .wp-pagenavi > a > span, .news_page__nav .wp-pagenavi > span > span {
    width: 37px;
    height: 37px;
  }
}
@media (max-width: 767px) {
  .news_page__nav .wp-pagenavi > a > .arrow_1, .news_page__nav .wp-pagenavi > span > .arrow_1 {
    margin: 0 6px 0 2px;
    width: 10px;
  }
}
@media (max-width: 767px) {
  .news_page__nav .wp-pagenavi > a > .arrow_2, .news_page__nav .wp-pagenavi > span > .arrow_2 {
    width: 17px;
  }
}
@media (max-width: 767px) {
  .news_page__nav .wp-pagenavi .previouspostslink {
    top: calc(100% + 15px);
    font-size: 1.3rem;
    transform: none;
  }
  .news_page__nav .wp-pagenavi .previouspostslink .small {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .news_page__nav .wp-pagenavi .nextpostslink {
    top: calc(100% + 15px);
    font-size: 1.3rem;
    transform: none;
  }
  .news_page__nav .wp-pagenavi .nextpostslink .small {
    font-size: 1rem;
  }
}
.news_inner_utl_box {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  padding: 30px 0 32px;
  width: 100%;
}

@media (max-width: 767px) {
  .news_inner_utl_box {
    padding: 15px 0;
  }
}
.news_inner__date {
  margin-right: 20px;
  font-size: 2.2rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .news_inner__date {
    margin-right: 10px;
    font-size: 1.6rem;
  }
}
.news_inner__cat {
  padding: 9px 24px 10px;
  background-color: #008cb4;
  color: #fff;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .news_inner__cat {
    padding: 4px 10px 5px;
    font-size: 1.4rem;
  }
}
.news_article_box {
  width: 100%;
}
.news_article_box .aligncenter, .news_article_box div.aligncenter {
  display: block;
  margin-top: 50px;
  margin-right: auto;
  margin-bottom: 60px;
  margin-left: auto;
}
.news_article_box .alignleft {
  float: left;
}
.news_article_box .alignright {
  float: right;
}
.news_article_box .wp-caption {
  margin: 10px;
  padding-top: 4px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f3f3f3;
  text-align: center;
}
.news_article_box .wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}
.news_article_box .wp-caption p.wp-caption-text {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}
.news_article_box h2 {
  margin-bottom: 20px;
  color: #008cb4;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: 1.75;
}
.news_article_box h3 {
  position: relative;
  margin-bottom: 34px;
  padding-left: 15px;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1.75;
}
.news_article_box h3::before {
  position: absolute;
  top: 54%;
  left: 0;
  width: 5px;
  height: calc(100% - 18px);
  background-color: #008cb4;
  content: "";
  transform: translateY(-50%);
}
.news_article_box p {
  margin-bottom: 22px;
  font-size: 1.8rem;
  line-height: 1.75;
}
.news_article_box *:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .news_article_box .aligncenter, .news_article_box div.aligncenter {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .news_article_box h2 {
    margin-bottom: 16px;
    font-size: 2rem;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .news_article_box h3 {
    margin-bottom: 17px;
    padding-left: 8px;
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .news_article_box h3::before {
    width: 3px;
    height: calc(100% - 10px);
  }
}
@media (max-width: 767px) {
  .news_article_box p {
    margin-bottom: 12px;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.news_btn_box {
  margin-top: 130px;
  margin-bottom: 30px;
}
.news_btn_box a {
  display: block;
  margin: 0 auto;
  width: 343px;
}
.news_btn_box a img {
  display: block;
}

@media (max-width: 767px) {
  .news_btn_box {
    margin-top: 50px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .news_btn_box a {
    width: 200px;
  }
}
#program .title__img {
  width: 241px;
}
#program .program_section {
  margin: 80px 0 30px;
}
#program .program_heading {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 30px;
  color: #008cb4;
  text-align: center;
  font-weight: 500;
  font-size: 3rem;
}
#program .program_heading:after, #program .program_heading:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 50px;
  height: 5px;
  content: "";
}
#program .program_heading:after {
  margin-left: 3px;
  background-color: #637a85;
}
#program .program_heading:before {
  margin-left: -53px;
  background-color: #008cb4;
}
#program .program_outline {
  text-align: center;
}
#program .program_outline__text {
  font-size: 1.7rem;
}
#program .program_outline__text strong {
  color: #008cb4;
  font-weight: 500;
}
#program .program_outline__img {
  margin: 40px auto;
  max-width: 600px;
  width: 100%;
}
#program .program_outline__notice {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#program .program_outline__notice p {
  padding: 10px;
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  background-color: rgba(99, 122, 133, 0.15);
}
#program .program_outline__notice p strong {
  color: #008cb4;
  font-weight: 500;
  font-size: 2.6rem;
}
#program .program_outline__notice p span {
  color: #008cb4;
}
#program .program_premier {
  margin: 0 auto 60px;
  max-width: 720px;
  text-align: center;
}
#program .program_premier__lead {
  margin-bottom: 40px;
  font-size: 2rem;
}
#program .program_premier__lead strong {
  display: block;
  color: #008cb4;
  font-weight: 500;
}
#program .program_premier__notice {
  font-size: 1.4rem;
}
#program .program_about {
  margin: 0 auto;
  max-width: 720px;
  border: 1px solid #008cb4;
}
#program .program_about__header {
  padding: 10px 20px;
  background-color: #008cb4;
}
#program .program_about__header-title {
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 2.6rem;
}
#program .program_about__body {
  padding: 30px 20px;
}
#program .program_about__body-narrow {
  padding: 0 30px;
}
#program .program_about__body-name {
  margin-bottom: 30px;
  color: #008cb4;
  font-weight: 500;
  font-size: 2.2rem;
}
#program .program_about__body-name small {
  font-size: 1.8rem;
}
#program .program_about__body-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
#program .program_about__body-flex .program_about__body-text {
  flex: 1;
  margin-bottom: 0;
  text-align: justify;
}
#program .program_about__body-photo {
  margin-right: 20px;
  width: 45%;
}
#program .program_about__body-text {
  margin-bottom: 30px;
}
#program .program_about__body-prices {
  display: flex;
  align-content: center;
  align-items: flex-start;
  -ms-flex-align: start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 20px;
  padding: 15px 10px;
  border-radius: 10px;
  background-color: rgba(99, 122, 133, 0.15);
  color: #008cb4;
}
#program .program_about__body-prices p {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 2.4rem;
}
#program .program_about__body-prices p small {
  display: inline-block;
  font-size: 1.8rem;
}
#program .program_about__body-prices p .is-x-small {
  display: inline-block;
  margin-right: 0.25em;
  font-size: 1rem;
}
#program .program_about__body-prices.is-align-center {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: row;
  justify-content: center;
}
#program .program_about__body-notice li {
  margin-left: 1em;
  text-indent: -1em;
  font-size: 1.4rem;
}
#program .program_about__body-btn {
  margin-top: 30px;
  text-align: center;
}
#program .program_about + .program_heading {
  margin-top: 80px;
}
#program .program_step {
  position: relative;
  margin: 0 auto;
  max-width: 1080px;
  width: 100%;
}
#program .program_step:after {
  position: absolute;
  left: calc(50% - 57px);
  display: block;
  width: 114px;
  height: 41px;
  background-image: url("/assets/img/program/program_arrow.png");
  background-size: cover;
  content: "";
}
#program .program_step.is-step1:after {
  bottom: 30px;
}
#program .program_step.is-step1 .program_step__body-img {
  max-width: 300px;
}
#program .program_step.is-step2:after {
  bottom: 40px;
}
#program .program_step.is-step2 .program_step__body-img {
  max-width: 200px;
}
#program .program_step.is-step3:after {
  bottom: 220px;
}
#program .program_step.is-step4:after {
  bottom: 30px;
}
#program .program_step.is-step4 .program_step__body-img {
  max-width: 250px;
}
#program .program_step.is-step5:after {
  bottom: 30px;
}
#program .program_step.is-step5 .program_step__body-img {
  max-width: 300px;
}
#program .program_step__heading {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 40px 80px;
  background-color: rgba(99, 122, 133, 0.15);
}
#program .program_step__heading-label {
  margin-right: 20px;
  width: 142px;
}
#program .program_step__heading-text {
  color: #008cb4;
  font-weight: 500;
  font-size: 2.6rem;
}
#program .program_step__body {
  margin: 0 auto;
  padding: 45px 0 90px;
  max-width: 720px;
}
#program .program_step__body.is-col2 {
  display: flex;
  align-items: flex-start;
  -ms-flex-align: start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
#program .program_step__body-text {
  flex: 1;
}
#program .program_step__body-text p {
  font-size: 2rem;
}
#program .program_step__body-text p strong {
  color: #008cb4;
  font-weight: 500;
}
#program .program_step__body-button {
  display: block;
  margin-top: 30px;
  max-width: 300px;
}
#program .program_step__square-text {
  margin-bottom: 80px;
  padding: 30px;
  background-color: rgba(0, 140, 180, 0.15);
}
#program .program_step__square-text p {
  font-size: 2rem;
}
#program .program_step__square-text p strong {
  color: #008cb4;
  font-weight: 500;
}
#program .program_flow_unit {
  margin: 0 auto 40px;
  max-width: 960px;
  width: 100%;
}
#program .program_flow_unit .program_flow {
  margin-bottom: 40px;
}
#program .program_flow_unit .program_flow:last-child {
  margin-bottom: 0;
}
#program .program_flow {
  padding: 40px 30px;
  width: 100%;
  background-color: rgba(99, 122, 133, 0.3);
}
#program .program_flow.has-arrow-bottom {
  position: relative;
}
#program .program_flow.has-arrow-bottom:after {
  position: absolute;
  top: 100%;
  left: calc(50% - 28px);
  display: block;
  width: 57px;
  height: 48px;
  background-image: url("/assets/img/program/program_polygon_bottom.png");
  background-size: cover;
  content: "";
}
#program .program_flow.has-arrow-left {
  position: relative;
}
#program .program_flow.has-arrow-left:before {
  position: absolute;
  top: calc(50% - 28px);
  right: 0;
  display: block;
  width: 48px;
  height: 57px;
  background-image: url("/assets/img/program/program_polygon_left.png");
  background-size: cover;
  content: "";
}
#program .program_flow.has-conductor {
  position: relative;
}
#program .program_flow.has-conductor:before {
  position: absolute;
  right: -30px;
  bottom: 50%;
  display: block;
  width: 30px;
  height: 495px;
  border: 8px solid #008cb4;
  border-left: none;
  content: "";
}
#program .program_flow.is-goal {
  background-color: rgba(0, 140, 180, 0.3);
}
#program .program_flow__heading {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 2.4rem;
}
#program .program_flow__heading:after {
  position: absolute;
  bottom: 0;
  left: 25%;
  display: block;
  width: 50%;
  height: 3px;
  background-color: #000;
  content: "";
}
#program .program_flow__body {
  position: relative;
}
#program .program_flow__body p {
  font-size: 1.7rem;
}
#program .program_flow__body-img {
  position: absolute;
  right: 40px;
  bottom: -25px;
  width: 100px;
}
#program .program_flow_white {
  border-radius: 10px;
  background-color: #fff;
}
#program .program_flow_white:last-child {
  margin-top: 30px;
}
#program .program_flow_white__heading {
  padding: 20px;
  border-bottom: 3px solid rgba(99, 122, 133, 0.3);
  text-align: center;
  font-size: 2.4rem;
}
#program .program_flow_white__body {
  display: flex;
  align-items: flex-start;
  -ms-flex-align: start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px;
  gap: 30px;
}
#program .program_flow_white__body p {
  font-size: 2rem;
}
#program .program_flow_white__body-text {
  flex: 1;
}
#program .program_flow_white__body-img {
  flex-basis: 300px;
  text-align: center;
}
#program .program_flow_white__body-img img.is-step03 {
  max-width: 200px;
}
#program .sp-only {
  display: none;
}
#program .pc-only {
  display: block;
}
#program #information {
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  width: 740px;
}

@media (max-width: 767px) {
  #program .title__img {
    width: 180px;
  }
}
@media (max-width: 767px) {
  #program .program_section {
    margin: 30px 0;
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  #program .program_section + .program_section {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  #program .program_heading {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  #program .program_outline__img {
    max-width: 237px;
  }
}
@media (max-width: 767px) {
  #program .program_outline__notice p {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  #program .program_premier {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  #program .program_premier__lead {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  #program .program_about__header-title {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  #program .program_about__body {
    padding: 15px 10px 25px;
  }
}
@media (max-width: 767px) {
  #program .program_about__body-narrow {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  #program .program_about__body-name {
    margin-bottom: 15px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  #program .program_about__body-name small {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  #program .program_about__body-flex {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  #program .program_about__body-photo {
    width: 40%;
  }
}
@media (max-width: 767px) {
  #program .program_about__body-text {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  #program .program_about__body-prices {
    margin-bottom: 10px;
    padding: 8px 10px;
  }
}
@media (max-width: 767px) {
  #program .program_about__body-prices p {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  #program .program_about__body-prices p small {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  #program .program_about__body-notice li {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  #program .program_about + .program_heading {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  #program .program_step:after {
    left: calc(50% - 28.5px);
    width: 57px;
    height: 20.5px;
  }
}
@media (max-width: 767px) {
  #program .program_step.is-step1:after {
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  #program .program_step.is-step2:after {
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  #program .program_step.is-step3:after {
    bottom: 120px;
  }
}
@media (max-width: 767px) {
  #program .program_step.is-step4:after {
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  #program .program_step.is-step5:after {
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  #program .program_step__heading {
    padding: 20px 10px;
  }
}
@media (max-width: 767px) {
  #program .program_step__heading-label {
    margin-right: 10px;
    width: 81px;
  }
}
@media (max-width: 767px) {
  #program .program_step__heading-text {
    flex: 1;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  #program .program_step__body {
    padding: 20px 20px 45px;
  }
}
@media (max-width: 767px) {
  #program .program_step__body.is-col2 {
    flex-direction: column;
    justify-content: stretch;
  }
}
@media (max-width: 767px) {
  #program .program_step__body-text {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #program .program_step__body-text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  #program .program_step__body-img {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  #program .program_step__body-button {
    margin: 20px auto 0;
    max-width: 240px;
  }
}
@media (max-width: 767px) {
  #program .program_step__square-text {
    margin-bottom: 80px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  #program .program_step__square-text p {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  #program .program_flow_unit .program_flow {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  #program .program_flow {
    padding: 20px 15px;
  }
}
@media (max-width: 767px) {
  #program .program_flow.has-arrow-bottom:after {
    left: calc(50% - 14px);
    width: 28.5px;
    height: 24px;
  }
}
@media (max-width: 767px) {
  #program .program_flow.has-arrow-left:before {
    top: calc(50% - 14px);
    width: 24px;
    height: 28.5px;
  }
}
@media (max-width: 767px) {
  #program .program_flow.has-conductor:before {
    right: -10px;
    width: 10px;
    height: 540px;
    border-width: 4px;
  }
}
@media (max-width: 767px) {
  #program .program_flow__heading {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  #program .program_flow__body p {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  #program .program_flow__body-img {
    position: static;
    display: block;
    margin: 15px auto 0;
    width: 100px;
  }
}
@media (max-width: 767px) {
  #program .program_flow_white:last-child {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  #program .program_flow_white__heading {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  #program .program_flow_white__body p {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  #program .sp-only {
    display: block;
  }
}
@media (max-width: 767px) {
  #program .pc-only {
    display: none;
  }
}
.program_menu_flex {
  display: flex;
  justify-content: start;
  margin: 0 auto;
  width: 60%;
}

@media (max-width: 767px) {
  .program_menu_flex {
    display: block;
    width: 100%;
  }
}
.program_menu__item {
  width: 30.8%;
}
.program_menu__item.size__lg {
  width: 100%;
}
.program_menu__item:nth-of-type(2) {
  margin: 16% 3.3% 0;
}
.program_menu__item:nth-of-type(3) {
  margin-top: 16%;
}

@media (max-width: 767px) {
  .program_menu__item {
    margin: 0 auto;
    width: 92%;
  }
}
@media (max-width: 767px) {
  .program_menu__item:nth-of-type(2) {
    margin: 20px auto;
  }
}
@media (max-width: 767px) {
  .program_menu__item:nth-of-type(3) {
    margin: 0 auto;
  }
}
.program_note {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  margin: 50px auto 0;
  padding: 8px 10px;
  width: 50%;
  border-radius: 18px;
  background-color: rgba(99, 122, 133, 0.15);
  color: #008cb4;
  text-align: center;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-size: 2.8rem;
}

@media (max-width: 767px) {
  .program_note {
    margin: 30px auto 0;
    width: 100%;
    font-size: 2rem;
    line-height: 1.4;
  }
}
.program_course__img {
  margin-bottom: 50px;
  text-align: center;
}
.program_course__img.is-mb__sm {
  margin-bottom: 10px;
}
.program_course__img.is-first {
  margin-top: 60px;
}
.program_course__img.is-last {
  margin-bottom: 0;
}
.program_course__img img {
  display: inline-block;
}

@media (max-width: 767px) {
  .program_course__img {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .program_course__img.is-first {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .program_course__img.is-last {
    margin-bottom: 20px;
  }
}
.program_course__box {
  position: relative;
}
.program_course__box img {
  position: relative;
  z-index: 1;
}

.program_course__btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
}
.program_course__btn.program_about__body-btn {
  margin-top: 0;
}

@media (max-width: 767px) {
  .program_course__btn {
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  .program_course__btn .btn {
    width: 160px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .program_course__btn .btn a {
    font-size: 12px;
  }
}
.program_course__content {
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  padding-top: 30px;
  padding-right: 25px;
  padding-bottom: 30px;
  padding-left: 25px;
  max-width: 100%;
  width: 740px;
  border: 3px solid #637a85;
  border-radius: 10px;
  background-color: #fff;
  text-align: center;
}

@media (max-width: 767px) {
  .program_course__content {
    margin-bottom: 20px;
    padding-top: 20px;
    padding-right: 10px;
    padding-bottom: 20px;
    padding-left: 10px;
    border-width: 2px;
    border-radius: 5px;
  }
}
.program_course__content_title {
  margin-bottom: 22px;
  color: #637a85;
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .program_course__content_title {
    margin-bottom: 17px;
    font-size: 2rem;
  }
}
.program_course__content_text {
  margin-bottom: 17px;
  letter-spacing: -0.25px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
}
.program_course__content_text:last-child {
  margin-bottom: 0;
}
.program_course__content_text.is-mt__lg {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .program_course__content_text {
    margin-bottom: 30px;
    letter-spacing: normal;
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
@media (max-width: 767px) {
  .program_course__content_text.is-mt__lg {
    margin-top: 20px;
  }
}
.program_course__content_flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

@media (max-width: 767px) {
  .program_course__content_flex {
    display: block;
  }
}
.program_course__content_flex__item {
  width: 49.2%;
}

@media (max-width: 767px) {
  .program_course__content_flex__item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .program_course__content_flex__item + .program_course__content_flex__item {
    margin-top: 20px;
  }
}
.program_course__content_label {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  border-radius: 10px;
  background-color: #637a85;
  color: #fff;
}

@media (max-width: 767px) {
  .program_course__content_label {
    margin-bottom: 10px;
    padding-top: 5px;
    border-radius: 5px;
  }
}
.program_course__content_label__main {
  margin-right: 5px;
  margin-left: 5px;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .program_course__content_label__main {
    font-size: 1.6rem;
  }
}
.program_course__content_label__sub {
  margin-right: 5px;
  margin-left: 5px;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .program_course__content_label__sub {
    font-size: 1.4rem;
  }
}
.program_course__content_price {
  display: flex;
  align-items: baseline;
  -ms-flex-align: baseline;
  justify-content: center;
}

@media (max-width: 767px) {
  .program_course__content_price {
    padding-bottom: 10px;
  }
}
.program_course__content_price__main {
  display: flex;
  align-items: baseline;
  -ms-flex-align: baseline;
  color: #637a85;
}

.program_course__content_price__sub {
  color: #637a85;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .program_course__content_price__sub {
    font-size: 1.4rem;
  }
}
.program_course__content_price__main_lg {
  margin-right: 6px;
  font-weight: 400;
  font-size: 3.8rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .program_course__content_price__main_lg {
    margin-right: 0;
    font-size: 2.2rem;
  }
}
.program_course__content_price__main_sm {
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1;
}

@media (max-width: 767px) {
  .program_course__content_price__main_sm {
    font-size: 1.8rem;
  }
}
.program_course__content_title__mini {
  margin-top: 26px;
  margin-bottom: 18px;
  padding-top: 18px;
  border-top: 2px solid #637a85;
  color: #637a85;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .program_course__content_title__mini {
    margin-top: 30px;
    border-width: 1px;
    font-size: 1.6rem;
  }
}
.program_course__content_inner {
  padding-top: 13px;
  padding-right: 13px;
  padding-bottom: 12px;
  padding-left: 13px;
  width: 100%;
  border-radius: 10px;
  background-color: #e8ebed;
}

@media (max-width: 767px) {
  .program_course__content_inner {
    padding-top: 7px;
    padding-right: 7px;
    padding-bottom: 7px;
    padding-left: 7px;
  }
}
.program_course__content_title__xs {
  margin-bottom: 8px;
  color: #637a85;
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .program_course__content_title__xs {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
}
.program_course__content_text__sm {
  letter-spacing: -0.25px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5;
}
.program_course__content_text__sm.is-left {
  text-align: left;
}

@media (max-width: 767px) {
  .program_course__content_text__sm {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .program_course__content_text__sm.is-left {
    text-align: center;
  }
}
#program .s_wrap {
  margin: 0 auto;
  max-width: 960px;
}
#program.premium .title__img {
  max-width: 545px;
  width: 100%;
}
#program.premium .program_outline {
  text-align: left;
}
#program.premium .premium_profile {
  display: flex;
  justify-content: space-between;
}
#program.premium .premium_profile figure {
  max-width: 435px;
  width: 100%;
}
#program.premium .premium_profile .profile-box {
  width: 61%;
}
#program.premium .premium_profile .profile-box h2 {
  color: #158DB2;
  font-size: 2.8rem;
  line-height: 1.2;
}
#program.premium .premium_profile .profile-box h2 span {
  font-size: 1.8rem;
}
#program.premium .premium_profile .profile-box h3 {
  padding: 10px 0;
  color: #158DB2;
  font-size: 2rem;
}
#program.premium .premium_profile .profile-box ul {
  margin-top: 15px;
  padding: 20px;
  background-color: #E8EBED;
}
#program.premium .premium_profile .profile-box ul li {
  color: #158DB2;
  font-size: 1.8rem;
}
#program.premium .premium_profile .profile-box ul li small {
  font-size: 1.4rem;
}
#program.premium .single_premium .profile-box h2 {
  text-align: right;
}
#program.premium .single_premium .profile-box h2 span {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #158CB4;
  text-align: left;
  font-size: 3.8rem;
}
#program.premium .single_premium .profile-box h2 img {
  width: 242px;
}
#program.premium .single_premium .profile-box h3 {
  margin-bottom: 20px;
  color: #158CB4;
  text-align: center;
  font-size: 2.4rem;
}
#program.premium .single_premium .profile-box ul {
  margin-bottom: 30px;
}
#program.premium .single_premium .profile-box ul li {
  font-weight: bold;
}
#program.premium .single_premium .profile-box p {
  font-size: 1.6rem;
  line-height: 1.75;
}
#program.premium .single_premium .profile_list {
  margin: 0 auto;
  max-width: 960px;
}
#program.premium .single_premium .profile_list li {
  padding: 10px 40px;
  border-bottom: 1px solid #158CB4;
}
#program.premium .single_premium .profile_list li:first-child {
  border-top: 1px solid #158CB4;
}
#program.premium .single_premium .book_list {
  display: flex;
  justify-content: space-around;
}
#program.premium .single_premium .book_list .book_list_item {
  max-width: 190px;
  width: 100%;
}
#program.premium .single_premium .book_list .book_list_item h3 {
  padding-top: 15px;
  font-weight: normal;
  font-size: 1.6rem;
}
#program.premium .single_premium .news__list {
  margin: 0 auto;
  max-width: 960px;
}
#program.premium .single_premium .news__list .news_list__item {
  display: flex;
}
#program.premium .single_premium .news__list .news_list__item .news_list__photo {
  width: 190px;
  border: 1px solid #E8EBED;
}
#program.premium .single_premium .news__list .news_list__item .news_list__detail {
  padding-left: 20px;
}
#program.premium .single_premium .program_detail {
  display: flex;
  margin: 30px 0 60px;
  padding: 30px;
  background-color: #E8EBED;
}
#program.premium .single_premium .program_detail .detail_box {
  box-sizing: border-box;
  padding: 0 30px;
  width: 50%;
}
#program.premium .single_premium .program_detail .detail_box:first-child {
  border-right: 1px solid white;
}
#program.premium .single_premium .program_detail .detail_box h4 {
  margin-bottom: 15px;
  color: #158CB4;
  text-align: center;
  font-size: 1.8rem;
}
#program.premium .single_premium .program_detail .detail_box p {
  font-size: 1.6rem;
  line-height: 1.75;
}
#program.premium .single_premium .program_detail .detail_box ul {
  padding: 15% 0 15px;
  text-align: center;
}
#program.premium .single_premium .program_detail .voice_cta__flex_item {
  margin: 0 auto;
  max-width: 300px;
}
#program.premium .voice_cta__flex {
  margin-top: 30px;
}
#program.premium .voice_cta__flex .voice_cta__flex_item {
  width: 250px;
}
#program.premium .voice_cta__flex .voice_cta__flex_item a {
  font-size: 1.8rem;
}

@media (max-width: 767px) {
  #program.premium .premium_profile {
    flex-wrap: wrap;
  }
  #program.premium .premium_profile figure {
    margin: 0 auto;
  }
  #program.premium .premium_profile .profile-box {
    width: 100%;
  }
  #program.premium .premium_profile .profile-box h2 {
    font-size: 2.4rem;
  }
  #program.premium .premium_profile .profile-box h2 span {
    font-size: 1.6rem;
  }
  #program.premium .premium_profile .profile-box h3 {
    font-size: 1.8rem;
  }
  #program.premium .premium_profile .profile-box ul li {
    font-size: 1.6rem;
  }
  #program.premium .single_premium .profile-box {
    margin-top: 20px;
  }
  #program.premium .single_premium .profile-box h2 span {
    font-size: 3.8rem;
  }
  #program.premium .single_premium .profile-box h2 img {
    width: 242px;
  }
  #program.premium .single_premium .profile-box h3 {
    font-size: 2rem;
  }
  #program.premium .single_premium .profile_list li {
    padding: 10px 20px;
    font-size: 1.4rem;
  }
  #program.premium .single_premium .book_list {
    flex-wrap: wrap;
  }
  #program.premium .single_premium .book_list .book_list_item {
    box-sizing: border-box;
    margin-bottom: 20px;
    padding: 0 10px;
    width: 50%;
  }
  #program.premium .single_premium .book_list .book_list_item h3 {
    font-size: 1.4rem;
  }
  #program.premium .single_premium .program_detail {
    flex-wrap: wrap;
    padding: 30px 10px;
  }
  #program.premium .single_premium .program_detail .detail_box {
    padding: 0 10px;
    width: 100%;
  }
  #program.premium .single_premium .program_detail .detail_box:first-child {
    border-right: none;
  }
  #program.premium .single_premium .program_detail .detail_box ul {
    padding: 15px 0;
    text-align: center;
  }
  #program.premium .single_premium .program_detail .voice_cta__flex_item {
    max-width: 100%;
    width: 100%;
  }
  #program.premium .voice_cta__flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  #program.premium .voice_cta__flex .voice_cta__flex_item {
    margin-top: 10px;
  }
}
#service .title__img {
  width: 423px;
}
#service .service_heading {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 30px;
  color: #008cb4;
  text-align: center;
  font-weight: 500;
  font-size: 3rem;
}
#service .service_heading:after, #service .service_heading:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 50px;
  height: 5px;
  content: "";
}
#service .service_heading:after {
  margin-left: 3px;
  background-color: #637a85;
}
#service .service_heading:before {
  margin-left: -53px;
  background-color: #008cb4;
}
#service .service_outline p {
  text-align: center;
  font-size: 2.2rem;
}
#service .service_section {
  margin: 60px 0;
}
#service .service_hero_img {
  display: block;
  margin: 0 auto;
  max-width: 860px;
  width: 100%;
}
#service .service_container {
  padding: 80px 0;
}
#service .service_container.is-gray {
  background-color: rgba(99, 122, 133, 0.15);
}
#service .service_about {
  margin: 80px auto;
  max-width: 960px;
}
#service .service_about__title {
  margin-bottom: 40px;
  padding: 16px 30px;
  background-color: #fff;
  color: #008cb4;
  font-weight: 500;
  font-size: 2.2rem;
}
#service .service_about__text {
  margin-bottom: 40px;
  text-align: justify;
  font-size: 1.7rem;
}
#service .service_about__list {
  margin-bottom: 40px;
  padding: 0 20px;
  counter-reset: count 0;
}
#service .service_about__list > li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 1.6em;
  list-style: none;
  font-size: 2rem;
}
#service .service_about__list > li:before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background-color: #008cb4;
  color: #fff;
  content: counter(count);
  counter-increment: count;
  text-align: center;
  line-height: 1.2;
}
#service .service_about__list > li small {
  display: block;
  margin-top: -0.2em;
  line-height: 1.5;
}
#service .service_about__lead {
  margin: 40px auto 0;
  text-align: center;
  font-size: 2rem;
}
#service .service_about:first-child {
  margin-top: 0;
}
#service .service_about:last-child {
  margin-bottom: 0;
}
#service .service_case {
  margin: 80px auto;
  max-width: 960px;
}
#service .service_case:first-child {
  margin-top: 0;
}
#service .service_case:last-child {
  margin-bottom: 0;
}
#service .service_case__title {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 2.2rem;
}
#service .service_case__title.is-exception {
  padding: 12px 30px;
  background-color: #008cb4;
  color: #fff;
}
#service .service_case__title-label {
  position: relative;
  padding: 12px 30px;
  background-color: #008cb4;
  color: #fff;
  text-align: center;
}
#service .service_case__title-label:after {
  position: absolute;
  bottom: 0;
  left: 100%;
  display: block;
  width: 0;
  height: 0;
  border-width: 59px 0 0 53px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #008db4;
  content: "";
}
#service .service_case__title-text {
  flex: 1;
  padding: 12px 20px 12px 80px;
  background-color: rgba(99, 122, 133, 0.3);
  color: #231815;
}
#service .service_case__title-text.is-white {
  background-color: #fff;
}
#service .service_case__list {
  margin: 0 auto;
  max-width: 800px;
}
#service .service_case__list > li {
  position: relative;
  margin-bottom: 30px;
  padding: 16px 20px;
  border: 1px solid #000;
  text-align: center;
  font-size: 2.4rem;
}
#service .service_case__list > li.has-arrow-bottom:after {
  position: absolute;
  top: calc(100% + 10px);
  left: calc(50% - 15.75px);
  display: block;
  width: 31.5px;
  height: 11.5px;
  background-image: url("/assets/img/service/service_arrow_bottom.png");
  background-size: cover;
  content: "";
}
#service .service_case__list > li.has-arrow-bottom.has-arrow-up:after {
  left: calc(50% - 40.5px);
}
#service .service_case__list > li.has-arrow-bottom.has-arrow-up:before {
  position: absolute;
  top: calc(100% + 10px);
  left: calc(50% + 15.75px);
  display: block;
  width: 31.5px;
  height: 11.5px;
  background-image: url("/assets/img/service/service_arrow_up.png");
  background-size: cover;
  content: "";
}
#service .service_case__list > li:last-child {
  margin-bottom: 0;
}
#service .service_case__body {
  padding: 0 30px;
}
#service .service_case__body p {
  margin-bottom: 20px;
}
#service .service_case__body p:last-child {
  margin-bottom: 0;
}
#service .service_case__body p strong {
  color: #008cb4;
  font-weight: 500;
}
#service .service_case__body p small {
  display: inline-block;
  font-size: 1.6rem;
}
#service .sp-only {
  display: none;
}
#service .pc-only {
  display: block;
}

@media (max-width: 767px) {
  #service .title__img {
    width: 280px;
  }
}
@media (max-width: 767px) {
  #service .service_heading {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  #service .service_outline p {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  #service .service_section {
    margin: 30px 0;
  }
}
@media (max-width: 767px) {
  #service .service_hero_img {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  #service .service_container {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  #service .service_about {
    margin: 40px auto;
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  #service .service_about__title {
    margin-bottom: 20px;
    padding: 10px 20px;
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  #service .service_about__text {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  #service .service_about__list {
    margin-bottom: 20px;
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  #service .service_about__list > li {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  #service .service_about__list > li small {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  #service .service_about__lead {
    margin: 20px auto 0;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  #service .service_case {
    margin: 40px auto;
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  #service .service_case__title {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  #service .service_case__title.is-exception {
    padding: 6px 15px;
  }
}
@media (max-width: 767px) {
  #service .service_case__title-label {
    padding: 6px 15px;
  }
}
@media (max-width: 767px) {
  #service .service_case__title-label:after {
    border-width: 43.5px 0 0 29.5px;
  }
}
@media (max-width: 767px) {
  #service .service_case__title-text {
    padding: 6px 15px 6px 40px;
  }
}
@media (max-width: 767px) {
  #service .service_case__list {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  #service .service_case__list > li {
    padding: 8px 10px;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  #service .service_case__body {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  #service .service_case__body p small {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  #service .sp-only {
    display: block;
  }
}
@media (max-width: 767px) {
  #service .pc-only {
    display: none;
  }
}
#staff .wrap > *:first-child {
  margin-top: 0;
}
#staff .wrap > *:last-child {
  margin-bottom: 0;
}
#staff .title__img {
  width: 160px;
}
#staff .staff_container {
  padding: 60px 0;
}
#staff .staff_container.is-gray {
  background-color: rgba(99, 122, 133, 0.15);
}
#staff .staff_about {
  display: flex;
  align-items: flex-start;
  -ms-flex-align: start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 60px auto;
  padding: 60px 0 0;
  max-width: 800px;
}
#staff .staff_about__image {
  max-width: 390px;
}
#staff .staff_about__body {
  display: flex;
  align-content: stretch;
  align-items: flex-start;
  -ms-flex-align: start;
  flex: 1;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: 40px;
}
#staff .staff_about__body-text {
  margin-bottom: 30px;
  max-width: 100%;
}
#staff .staff_about__body-text p {
  line-height: 1.8;
}
#staff .staff_about__body-def {
  margin-bottom: 30px;
  max-width: 100%;
}
#staff .staff_about__body-def-list {
  display: flex;
  align-items: stretch;
  -ms-flex-align: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 1.7rem;
}
#staff .staff_about__body-def-list dt {
  flex-basis: 5em;
}
#staff .staff_about__body-def-list dd {
  flex: 1 1 calc(100% - 5em);
}
#staff .staff_about__body-info {
  max-width: 100%;
}
#staff .staff_about__body-info-affiliation {
  margin-bottom: 6px;
}
#staff .staff_about__body-info-ruby {
  font-size: 1.4rem;
}
#staff .staff_about__body-info-name {
  font-weight: 500;
  font-size: 2.4rem;
}
#staff .staff_about__body-info-name:first-letter {
  color: #008cb4;
}
#staff .staff_more_info {
  margin: 60px auto;
  max-width: 800px;
}
#staff .staff_more_info__title {
  margin-bottom: 30px;
  padding: 4px 24px;
  background-color: rgba(99, 122, 133, 0.3);
  font-weight: 500;
  font-size: 2.4rem;
}
#staff .sp-only {
  display: none;
}
#staff .pc-only {
  display: block;
}

@media (max-width: 767px) {
  #staff .title__img {
    width: 110px;
  }
}
@media (max-width: 767px) {
  #staff .staff_container {
    padding: 30px 0;
  }
}
@media (max-width: 767px) {
  #staff .staff_about {
    flex-direction: column;
    margin: 30px auto 0;
    padding: 30px 15px 0;
  }
}
@media (max-width: 767px) {
  #staff .staff_about__image {
    margin: 0 auto 20px;
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  #staff .staff_about__body {
    align-items: stretch;
    -ms-flex-align: stretch;
    flex-direction: column-reverse;
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  #staff .staff_about__body-text {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  #staff .staff_about__body-def {
    margin: 15px 0 0;
  }
}
@media (max-width: 767px) {
  #staff .staff_about__body-def-list {
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  #staff .staff_about__body-info {
    text-align: center;
  }
}
@media (max-width: 767px) {
  #staff .staff_about__body-info-ruby {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  #staff .staff_about__body-info-name {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  #staff .staff_more_info {
    margin: 0 15px 30px;
  }
}
@media (max-width: 767px) {
  #staff .staff_more_info__title {
    margin-bottom: 20px;
    padding: 2px 12px;
    font-size: 1.8rem;
  }
}
@media (max-width: 767px) {
  #staff .sp-only {
    display: block;
  }
}
@media (max-width: 767px) {
  #staff .pc-only {
    display: none;
  }
}
#voice .title__img {
  width: 320px;
}
#voice .voice_section {
  margin: 80px 0;
}
#voice .voice_heading {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 30px;
  color: #008cb4;
  text-align: center;
  font-weight: 500;
  font-size: 3rem;
}
#voice .voice_heading:after, #voice .voice_heading:before {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 50px;
  height: 5px;
  content: "";
}
#voice .voice_heading:after {
  margin-left: 3px;
  background-color: #637a85;
}
#voice .voice_heading:before {
  margin-left: -53px;
  background-color: #008cb4;
}
#voice .voice_outline {
  text-align: center;
}
#voice .voice_outline__text {
  font-size: 1.7rem;
}
#voice .voice_outline__text strong {
  color: #008cb4;
  font-weight: 500;
}
#voice .voice_outline__img {
  margin: 40px auto;
  max-width: 600px;
  width: 100%;
}
#voice .voice_outline__notice {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
}
#voice .voice_outline__notice p {
  padding: 10px;
  max-width: 500px;
  width: 100%;
  border-radius: 10px;
  background-color: rgba(99, 122, 133, 0.15);
}
#voice .voice_outline__notice p strong {
  color: #008cb4;
  font-weight: 500;
  font-size: 2.6rem;
}
#voice .voice_outline__notice p span {
  color: #008cb4;
}
#voice .news_cat_list__item a {
  background-color: rgba(99, 122, 133, 0.15);
}
#voice .news_cat_list__item a.active {
  background-color: #008cb4;
}
#voice .news_cat_list__item a:hover {
  background-color: #008cb4;
  color: #fff;
}
#voice .sp-only {
  display: none;
}
#voice .pc-only {
  display: block;
}

@media (max-width: 767px) {
  #voice .title__img {
    width: 180px;
  }
}
@media (max-width: 767px) {
  #voice .voice_section {
    margin: 30px 0;
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  #voice .voice_section + .voice_section {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  #voice .voice_heading {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  #voice .voice_outline__text {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  #voice .voice_outline__img {
    max-width: 237px;
  }
}
@media (max-width: 767px) {
  #voice .voice_outline__notice p {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  #voice .sp-only {
    display: block;
  }
}
@media (max-width: 767px) {
  #voice .pc-only {
    display: none;
  }
}
.voice_movie__flex {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 70px;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
  width: 890px;
}

@media (max-width: 767px) {
  .voice_movie__flex {
    margin-top: 40px;
  }
}
.voice_movie__flex_item {
  position: relative;
  width: 47.8%;
  height: 238px;
}
.voice_movie__flex_item:nth-of-type(n+3) {
  margin-top: 40px;
}
.voice_movie__flex_item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .voice_movie__flex_item {
    padding-top: 27%;
    height: 0;
  }
}
.voice_cta_section {
  padding-top: 38px;
  padding-bottom: 40px;
  width: 100%;
  background-color: #b2dce8;
  text-align: center;
}

@media (max-width: 767px) {
  .voice_cta_section {
    padding-top: 18px;
    padding-bottom: 20px;
  }
}
.voice_cta_title {
  margin-bottom: 35px;
  color: #008cb4;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .voice_cta_title {
    margin-bottom: 25px;
    font-size: 2rem;
  }
}
.voice_cta__flex {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .voice_cta__flex {
    justify-content: space-between;
    padding-right: 10px;
    padding-left: 10px;
  }
}
.voice_cta__flex_item {
  margin-right: 20px;
  margin-left: 20px;
  width: 325px;
}

@media (max-width: 767px) {
  .voice_cta__flex_item {
    margin-right: 0;
    margin-left: 0;
    max-width: 325px;
    width: calc(50% - 5px);
  }
}
.voice_cta__link {
  position: relative;
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  padding-top: 12px;
  padding-bottom: 11px;
  width: 100%;
  border-radius: 30px;
  background-color: #f39800;
  color: #fff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 1.6rem;
  transition: all 0.3s ease;
}
.voice_cta__link.is-blue {
  background-color: #008cb4;
}
.voice_cta__link.is-fat {
  padding-top: 17px;
  padding-bottom: 16px;
}
.voice_cta__link:hover {
  opacity: 0.7;
}

@media (max-width: 767px) {
  .voice_cta__link {
    display: block;
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 25px;
    font-size: 1.3rem;
    line-height: 1.4;
  }
  .voice_cta__link span {
    display: block;
  }
}
@media (max-width: 767px) {
  .voice_cta__link.is-fat {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.voice_cta__link_sub {
  font-size: 1.6rem;
}

@media (max-width: 767px) {
  .voice_cta__link_sub {
    font-size: 1.3rem;
  }
}
.voice_cta__link_main {
  font-size: 2.2rem;
}

@media (max-width: 767px) {
  .voice_cta__link_main {
    font-size: 1.6rem;
  }
}
.voice_content__flex {
  display: flex;
  flex-wrap: wrap;
  margin-right: auto;
  margin-bottom: 55px;
  margin-left: auto;
  max-width: 100%;
  width: 1080px;
}

@media (max-width: 767px) {
  .voice_content__flex {
    margin-bottom: 30px;
  }
}
.voice_content__flex_item {
  margin-right: 2.7%;
  width: 31.4%;
}
.voice_content__flex_item:nth-of-type(3n) {
  margin-right: 0;
}
.voice_content__flex_item:nth-of-type(n+4) {
  margin-top: 2.7%;
}
.voice_content__flex_item p {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .voice_content__flex_item p {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .voice_content__flex_item {
    margin-right: 2%;
    width: 49%;
  }
}
@media (max-width: 767px) {
  .voice_content__flex_item:nth-of-type(3n) {
    margin-right: 2%;
  }
}
@media (max-width: 767px) {
  .voice_content__flex_item:nth-of-type(n+4) {
    margin-top: 2%;
  }
}
@media (max-width: 767px) {
  .voice_content__flex_item:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .voice_content__flex_item:nth-of-type(n+3) {
    margin-top: 3%;
  }
}
.voice_content_photo img {
  display: block;
  margin: 0 auto 20px;
  width: 140px;
}

.voice_content__title {
  display: flex;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
}
.voice_content__title div {
  padding: 0 5px;
}

@media (max-width: 767px) {
  .voice_content__title {
    padding-top: 8px;
    padding-right: 10px;
    padding-bottom: 8px;
    padding-left: 10px;
    font-size: 1.6rem;
  }
}
.voice_content__detail {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  height: calc(100% - 50px);
  border: 1px solid #008cb4;
}

@media (max-width: 767px) {
  .voice_content__detail {
    padding-top: 8px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    height: calc(100% - 30px);
  }
}
.voice_content__text {
  text-align: justify;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.625;
}

@media (max-width: 767px) {
  .voice_content__text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.voice_content__title_mini {
  margin: 5px 0 20px;
  text-align: center;
}

@media (max-width: 767px) {
  .voice_content__title_mini {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  .voice_content__tag {
    display: block;
  }
}
.voice_content_link {
  padding-top: 20px;
  text-align: center;
  text-decoration: underline;
}

.voice_content_taglist {
  display: flex;
  flex-wrap: wrap;
}
.voice_content_taglist li {
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 2px 10px;
  border-radius: 50px;
  background-color: #158CB4;
  color: white;
  text-align: center;
  font-size: 1.4rem;
}
@media (max-width: 767px) {
  .voice_content_taglist li {
    font-size: 1.2rem;
  }
}

.voice_content__single_item {
  margin: 50px auto;
  max-width: 960px;
}

@media (max-width: 767px) {
  .voice_content__single_item {
    box-sizing: border-box;
    padding: 0 4%;
  }
}
.voice_content__single_item ._header {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .voice_content__single_item ._header {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.voice_content__single_item ._box_top {
  width: 140px;
}
.voice_content__single_item ._box_bottom {
  width: 80%;
}
.voice_content__single_item ._box_bottom h2 {
  color: #008CB4;
}
@media (max-width: 767px) {
  .voice_content__single_item ._box_bottom h2 {
    font-size: 1.8rem;
  }
}
.voice_content__single_item p {
  font-size: 1.6rem;
  line-height: 1.8;
}

.voice_content__more {
  margin-right: auto;
  margin-left: auto;
  width: 240px;
  height: 54px;
}
.voice_content__more a, .voice_content__more button {
  display: flex;
  align-items: center;
  -ms-flex-align: center;
  justify-content: center;
  padding-bottom: 2px;
  width: 100%;
  height: 100%;
  border: 1px solid #008cb4;
  border-radius: 27px;
  background-color: #fff;
  color: #008cb4;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.voice_content__more a:hover, .voice_content__more button:hover {
  background-color: #008cb4;
  color: #fff;
}

@media (max-width: 767px) {
  .voice_content__more a, .voice_content__more button {
    font-size: 1.4rem;
  }
}
br.pc_only {
  display: inline-block;
}
br.sp_only {
  display: none;
}

@media (max-width: 767px) {
  br.pc_only {
    display: none;
  }
}
@media (max-width: 767px) {
  br.sp_only {
    display: inline-block;
  }
}
.pinyon {
  font-family: "Pinyon Script", cursive;
}

#consultation {
  overflow: hidden;
  padding-top: 39px;
}

.c-ttl {
  padding-bottom: 60px;
  color: #158CB4;
  text-align: center;
  font-weight: bold;
  font-size: 4.2rem;
}

@media (max-width: 767px) {
  .c-ttl {
    font-size: 2.6rem;
  }
}
.c-section {
  padding: 60px 0;
}

@media (max-width: 767px) {
  .c-section {
    padding: 60px 5%;
  }
}
.c-main {
  padding: 10vw 0;
  background: url(../img/consultation/main.jpg) no-repeat center top;
  background-size: cover;
}
.c-main h1 {
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 4.6rem;
}
@media (max-width: 767px) {
  .c-main h1 {
    font-size: 3.3rem;
  }
}

@media (max-width: 767px) {
  .c-main {
    padding: 31vw 0;
  }
}
.sec-01 .c-ttl span {
  position: relative;
}
.sec-01 .c-ttl span::before {
  position: absolute;
  top: -5px;
  left: 16px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #158CB4;
  content: "";
}
.sec-01 p {
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .sec-01 p {
    font-size: 1.8rem;
  }
}

.sec-cta {
  position: relative;
  display: inline-block;
  width: 100%;
  background-color: #B1DCE7;
}
.sec-cta::before {
  position: absolute;
  top: -1px;
  right: calc(50% - 200px);
  bottom: 0;
  width: 400px;
  height: 40px;
  background-color: white;
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.sec-cta .pinyon {
  color: white;
  text-align: center;
  font-size: 5.6rem;
}
@media (max-width: 767px) {
  .sec-cta .pinyon {
    font-size: 3.6rem;
  }
}
.sec-cta .btn-more a {
  max-width: 300px;
  background-color: #F39826;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .sec-cta .c-ttl {
    padding-bottom: 30px;
  }
  .sec-cta .btn-more a {
    font-size: 1.8rem;
  }
}

.sec-02 {
  background: url(../img/consultation/bg_01.jpg) no-repeat center top;
  background-size: cover;
}
.sec-02 .bg_white {
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 767px) {
  .sec-02 .bg_white {
    margin: 0 auto;
    padding: 60px 5%;
    width: 90%;
  }
}
.sec-02 ul {
  margin: 0 auto;
  max-width: 850px;
}
.sec-02 ul li {
  display: flex;
  margin-bottom: 20px;
}
.sec-02 ul li::before {
  display: block;
  margin-right: 20px;
  width: 26px;
  height: 26px;
  background: url(../img/consultation/icn_check.svg) no-repeat left center;
  background-size: 100% auto;
  content: "";
}
.sec-02 ul li .c-text {
  width: 97%;
}
.sec-02 ul li .marker {
  background: linear-gradient(transparent 50%, #F6FF00 50%);
}

.sec-03 .col {
  display: flex;
  justify-content: space-between;
}
.sec-03 .col .item {
  width: 32%;
}
.sec-03 .col .item h3 {
  padding: 20px 0;
  color: #008CB4;
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .sec-03 .col {
    flex-wrap: wrap;
  }
  .sec-03 .col .item {
    margin: 0 auto 40px;
    width: 80%;
  }
}

.c-footer {
  padding-bottom: 0;
}

#maternity {
  overflow: hidden;
  position: relative;
}
#maternity:before {
  content: "";
  position: absolute;
  top: -370px;
  right: -350px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1359.002' height='2410'%3E%3Cpath data-name='合体 1' d='M314.001 1916.501a476.746 476.746 0 0 1 43.543-199.463c-150.569-72.79-252.543-213.225-252.543-374.537 0-77.125 23.3-149.465 64.094-211.937A679.285 679.285 0 0 1 .001 681.001c0-376.105 304.223-681 679.5-681s679.5 304.895 679.5 681c0 231.761-115.507 436.474-291.986 559.476a378.244 378.244 0 0 1 13.986 102.024 379.193 379.193 0 0 1-24.213 133.359c166.827 81.341 281.213 248.121 281.213 440.641 0 272.551-229.232 493.5-512 493.5s-512-220.948-512-493.5Z' fill='%23fff' opacity='.797'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  max-width: 100%;
  width: 135.9rem;
  height: 241rem;
}
@media (max-width: 767px) {
  #maternity:before {
    top: -382px;
    right: inherit;
    left: -40px;
    min-width: 89.1rem;
    height: 158rem;
  }
}
#maternity .sp-br {
  display: none;
}
@media (max-width: 767px) {
  #maternity .sp-br {
    display: block;
  }
}
#maternity .pc-br {
  display: block;
}
@media (max-width: 767px) {
  #maternity .pc-br {
    display: none;
  }
}
#maternity .c_heading_01 {
  color: #158CB4;
  font-size: 5rem;
  line-height: 1.92;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  #maternity .c_heading_01 {
    font-size: 2.6rem;
  }
}
#maternity p {
  color: #333;
  font-size: 2.2rem;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  #maternity p {
    font-size: 1.5rem;
  }
}
#maternity p span {
  color: #008CB4;
}
#maternity .pinyon {
  text-align: center;
  color: #9A9A9A;
  font-size: 5.6rem;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  #maternity .pinyon {
    font-size: 3.6rem;
  }
}
#maternity .roboto {
  @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-style: normal;
}
#maternity .c-ttl {
  margin: 0 0 5rem;
  padding: 0;
  font-size: 4.2rem;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  #maternity .c-ttl {
    margin: 0 0 3rem;
    font-size: 2.2rem;
  }
}
#maternity .bg-blue {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(21, 140, 180, 0.15) 100%, rgba(21, 140, 180, 0.15) 100%);
}
#maternity .txt-center {
  text-align: center;
}
#maternity .sec-kv {
  background: rgb(255, 255, 255);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(21, 140, 180, 0.2049413515) 100%, rgb(21, 140, 180) 100%);
}
#maternity .sec-kv-inner {
  position: relative;
  max-width: 1288px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  #maternity .sec-kv-inner {
    padding: 0 15px;
  }
}
#maternity .sec-kv .kv-01 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 767px) {
  #maternity .sec-kv .kv-01 {
    align-items: inherit;
  }
}
#maternity .sec-kv .kv-01:before {
  content: "";
  position: absolute;
  top: 0;
  left: -196px;
  background: url("../img/maternity/ph_maternity_01.png") no-repeat;
  background-size: contain;
  width: 76.3rem;
  height: 61.4rem;
}
@media (max-width: 767px) {
  #maternity .sec-kv .kv-01:before {
    left: -70px;
    width: 40.4rem;
    height: 32.4rem;
  }
}
#maternity .sec-kv .kv-01 h1 {
  padding: 19.2rem 0 0;
}
@media (max-width: 767px) {
  #maternity .sec-kv .kv-01 h1 {
    padding: 33rem 0 0;
    text-align: right;
  }
}
#maternity .sec-kv .kv-01 p {
  margin: 23rem 0 0;
  color: #333;
  font-size: 2.2rem;
  line-height: 2;
}
@media (max-width: 767px) {
  #maternity .sec-kv .kv-01 p {
    margin: 2rem 0 0;
    font-size: 1.5rem;
  }
}
#maternity .sec-kv .kv-01 ul li {
  color: #333;
}
#maternity .sec-kv .kv-02 {
  position: relative;
  width: 100%;
}
#maternity .sec-kv .kv-02:before {
  content: "";
  position: absolute;
  right: -140px;
  bottom: 0;
  background: url("../img/maternity/ph_maternity_02.png") no-repeat;
  background-size: contain;
  width: 69.8rem;
  height: 67.9rem;
}
@media (max-width: 767px) {
  #maternity .sec-kv .kv-02:before {
    right: -50px;
    width: 42.4rem;
    height: 41.3rem;
  }
}
#maternity .sec-kv .kv-02 h2 {
  padding: 17rem 0 9.8rem;
}
@media (max-width: 767px) {
  #maternity .sec-kv .kv-02 h2 {
    padding: 3rem 0 40rem;
    text-align: center;
  }
}
#maternity .sec-reserve {
  position: relative;
  background: url("../img/maternity/ph_maternity_03.jpg") no-repeat center/cover;
  width: 100%;
  padding: 130px 0;
}
@media (max-width: 767px) {
  #maternity .sec-reserve {
    padding: 60px 15px;
  }
}
#maternity .sec-reserve .btn-reserve a {
  display: block;
  margin: 0 auto;
  padding: 15px;
  max-width: 500px;
  border-radius: 50px;
  background-color: #F39826;
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 3.7rem;
  transition: opacity 0.3s ease;
}
@media (max-width: 767px) {
  #maternity .sec-reserve .btn-reserve a {
    font-size: 2.2rem;
  }
}
#maternity .sec-reserve .btn-reserve a:hover {
  opacity: 0.7;
}
#maternity .sec-support {
  padding: 80px 0;
}
@media (max-width: 767px) {
  #maternity .sec-support {
    padding: 60px 0;
  }
}
#maternity .sec-support .col_2 {
  position: relative;
  display: grid;
  grid-template-columns: auto 47rem;
  gap: 0 40px;
  max-width: 1288px;
  margin: 280px auto 0;
  padding: 0 40px;
}
@media (max-width: 767px) {
  #maternity .sec-support .col_2 {
    display: block;
    margin: 120px 0 0px;
    padding: 0 15px;
  }
}
#maternity .sec-support .col_2:first-child {
  margin: 100px auto 0;
}
@media (max-width: 767px) {
  #maternity .sec-support .col_2:first-child {
    margin: 80px 0 0px;
  }
}
#maternity .sec-support .col_2:before {
  content: "";
  position: absolute;
  top: -207px;
  left: -300px;
  width: 714px;
  height: 714px;
  border-radius: 50%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0%, rgba(21, 140, 180, 0.15) 100%, rgba(21, 140, 180, 0.15) 100%);
  z-index: -1;
}
@media (max-width: 767px) {
  #maternity .sec-support .col_2:before {
    display: block;
    top: -40px;
    left: -180px;
    width: 400px;
    height: 400px;
  }
}
#maternity .sec-support .col_2.reverse {
  grid-template-columns: 47rem auto;
}
#maternity .sec-support .col_2.reverse:before {
  right: -430px;
  left: inherit;
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 0%, rgba(21, 140, 180, 0.15) 100%, rgba(21, 140, 180, 0.15) 100%);
}
@media (max-width: 767px) {
  #maternity .sec-support .col_2.reverse:before {
    top: -80px;
    right: -130px;
  }
}
#maternity .sec-support .col_2.reverse .support_content {
  order: 2;
}
#maternity .sec-support .col_2.reverse .support_image {
  order: 1;
}
#maternity .sec-support .col_2.reverse .heading_02 {
  padding: 0 160px 0 0;
}
@media (max-width: 767px) {
  #maternity .sec-support .col_2.reverse .heading_02 {
    padding: 0 100px 0 0;
  }
}
#maternity .sec-support .col_2.reverse .heading_02 span {
  left: inherit;
  right: 0;
}
@media (max-width: 767px) {
  #maternity .sec-support .col_2.reverse .heading_02 span {
    right: 30px;
  }
}
#maternity .sec-support .support_content .heading_02 {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 70px 0 0;
  color: #008CB4;
  font-size: 3.2rem;
  line-height: 1.625;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  #maternity .sec-support .support_content .heading_02 {
    font-size: 2rem;
    padding: 0 20px 0 0;
  }
}
#maternity .sec-support .support_content .heading_02.num_03 {
  padding: 0 30px 0 0;
}
@media (max-width: 767px) {
  #maternity .sec-support .support_content .heading_02.num_03 {
    padding: 0;
  }
}
#maternity .sec-support .support_content .heading_02 span {
  position: absolute;
  top: -20px;
  left: -20px;
  color: #fff;
  font-size: 12.2rem;
}
@media (max-width: 767px) {
  #maternity .sec-support .support_content .heading_02 span {
    left: 0;
    font-size: 5rem;
  }
}
#maternity .sec-support .support_content p {
  margin: 6rem 0 0;
  font-size: 2.2rem;
  line-height: 2;
}
@media (max-width: 767px) {
  #maternity .sec-support .support_content p {
    margin: 3rem 0 0;
    font-size: 1.5rem;
  }
}
@media (max-width: 767px) {
  #maternity .sec-support .support_image {
    margin: 30px 0 0;
  }
}
#maternity .sec-support .support_image figure {
  padding: 20px 0;
  border: 3px solid rgba(21, 140, 180, 0.1);
  border-radius: 10px;
  text-align: center;
}
#maternity .sec-support .support_image figure img {
  border-radius: 10px;
  width: 90%;
}
#maternity .sec-support .support_image.content_1 figure {
  padding: 0;
}
#maternity .sec-support .support_image.content_1 figure img {
  width: 310px;
}
@media (max-width: 767px) {
  #maternity .sec-support .support_image.content_1 figure img {
    width: 220px;
  }
}
#maternity .sec-support .support_image .support_disc p {
  margin: 10px 0 0;
  font-size: 1.2rem;
}
#maternity .sec-support .support_image .support_disc_item {
  margin: 20px 20px 0;
}
#maternity .sec-support .support_image .support_disc_item .title {
  color: #008CB4;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.625;
}
#maternity .sec-support .support_image .support_disc_item ul {
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  #maternity .sec-support .support_image .support_disc_item ul {
    margin: 10px 0 0;
  }
}
#maternity .sec-support .support_image .support_disc_item ul li {
  position: relative;
  padding-left: 1em;
}
#maternity .sec-support .support_image .support_disc_item ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  color: #333;
}
#maternity .sec-wish {
  text-align: center;
  position: relative;
  background: url("../img/maternity/bg_maternity_03.png") no-repeat center/cover;
  width: 100%;
  padding: 80px 0;
}
@media (max-width: 767px) {
  #maternity .sec-wish {
    padding: 60px 15px;
  }
}
#maternity .sec-about {
  padding: 80px 20px;
}
@media (max-width: 767px) {
  #maternity .sec-about {
    padding: 60px 15px;
  }
}
#maternity .sec-about .about_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 40px;
  max-width: 1288px;
  margin: 80px auto 0;
}
@media (max-width: 767px) {
  #maternity .sec-about .about_wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0;
    margin: 40px auto 0;
  }
}
#maternity .sec-about .about_wrap .about_item h3 {
  display: flex;
  align-items: center;
  margin: 0 0 15px;
  color: #008DB5;
  font-size: 2rem;
}
@media (max-width: 767px) {
  #maternity .sec-about .about_wrap .about_item h3 {
    font-size: 1.6rem;
  }
}
#maternity .sec-about .about_wrap .about_item h3 .num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  height: 70px;
  margin: 0 20px 0 0;
  background-color: #008DB5;
  color: #fff;
  font-weight: 400;
  font-size: 1.5rem;
  font-family: "Copperplate Gothic Bold", "Roboto", "sans-serif";
}
@media (max-width: 767px) {
  #maternity .sec-about .about_wrap .about_item h3 .num {
    min-width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}
#maternity .sec-about .about_wrap .about_item h3 .num span {
  font-size: 3rem;
  line-height: 1;
}
@media (max-width: 767px) {
  #maternity .sec-about .about_wrap .about_item h3 .num span {
    font-size: 2.4rem;
  }
}
#maternity .sec-about .about_wrap .about_item figure {
  width: 100%;
}
#maternity .sec-about .about_wrap .about_item figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
}
#maternity .sec-about .about_wrap .about_item p {
  margin: 20px 0 0;
  font-size: 1.6rem;
  line-height: 1.625;
}
#maternity .sec-about .about_message {
  margin: 50px 0 0;
}
#maternity .sec-facility {
  padding: 80px 20px;
}
@media (max-width: 767px) {
  #maternity .sec-facility {
    padding: 60px 15px;
  }
}
#maternity .sec-facility .facility_wrap {
  max-width: 1208px;
  margin: 0 auto;
  padding: 0 44px;
}
@media (max-width: 767px) {
  #maternity .sec-facility .facility_wrap {
    padding: 0;
  }
}
#maternity .sec-facility .facility_content {
  margin: 80px 0 0;
}
@media (max-width: 767px) {
  #maternity .sec-facility .facility_content {
    margin: 40px 0 0;
  }
}
#maternity .sec-facility .facility_content h3 {
  margin: 0 0 30px;
  color: #008DB5;
  font-size: 2rem;
}
@media (max-width: 767px) {
  #maternity .sec-facility .facility_content h3 {
    font-size: 1.8rem;
    text-align: center;
  }
}
#maternity .sec-facility .facility_content .col_2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}
@media (max-width: 767px) {
  #maternity .sec-facility .facility_content .col_2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0;
  }
}
#maternity .sec-facility .facility_content .col_2 .col_inner p {
  margin: 10px 0 0;
  font-size: 1.6rem;
}
#maternity .sec-facility .facility_content iframe {
  width: 100%;
  height: 540px;
}
@media (max-width: 767px) {
  #maternity .sec-facility .facility_content iframe {
    height: 320px;
  }
}
#maternity .sec-facility .facility_content .facility_info {
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  #maternity .sec-facility .facility_content .facility_info {
    display: block;
  }
}
@media (max-width: 767px) {
  #maternity .sec-facility .facility_content .facility_info .facility_info_detail:last-child {
    margin: 30px 0 0;
  }
}
#maternity .sec-facility .facility_content .facility_info .facility_info_detail dl dt {
  color: #008DB5;
  font-weight: 600;
  margin: 0 0 10px;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
#maternity .sec-facility .facility_content .facility_info .facility_info_detail dl dd {
  margin: 0 0 25px;
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
}
#maternity .sec-facility .facility_content .facility_info .facility_info_detail dl dd.date {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid #ccc;
}
#maternity .sec-facility .facility_content .facility_info .facility_info_detail dl dd.date:last-of-type {
  border-bottom: 1px solid #ccc;
}
#maternity .sec-facility .facility_content .facility_info .facility_info_detail figure {
  max-width: 560px;
}
#maternity .sec-faq {
  padding: 80px 20px;
}
@media (max-width: 767px) {
  #maternity .sec-faq {
    padding: 60px 15px;
  }
}
#maternity .sec-faq .wrap {
  max-width: 860px;
  margin: 0 auto;
}
#maternity .sec-faq .faq-list dt {
  padding: 40px 60px 0 60px;
  color: #008DB5;
  font-weight: 600;
  margin: 0 0 20px;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.625;
}
@media (max-width: 767px) {
  #maternity .sec-faq .faq-list dt {
    padding: 20px 30px 0;
    font-size: 1.8rem;
  }
}
#maternity .sec-faq .faq-list dt:first-child {
  padding: 0 60px;
}
@media (max-width: 767px) {
  #maternity .sec-faq .faq-list dt:first-child {
    padding: 0 20px;
  }
}
#maternity .sec-faq .faq-list dt span {
  position: relative;
}
#maternity .sec-faq .faq-list dt span::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: rgba(21, 140, 180, 0.5);
  border-radius: 8px;
  top: 8px;
  left: -32px;
}
@media (max-width: 767px) {
  #maternity .sec-faq .faq-list dt span::before {
    width: 8px;
    height: 8px;
    top: 10px;
    left: -20px;
  }
}
#maternity .sec-faq .faq-list dd {
  padding: 0 60px 40px;
  border-bottom: 1px solid rgba(21, 140, 180, 0.5);
  color: #333;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.625;
}
@media (max-width: 767px) {
  #maternity .sec-faq .faq-list dd {
    padding: 0 20px 30px;
  }
}
#maternity .sec-faq .faq-list dd:last-child {
  border-bottom: none;
}

#dance {
  overflow: hidden;
  position: relative;
}
#dance .inner-wrap {
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #dance .inner-wrap {
    padding: 0 4%;
  }
}
#dance .sec-ttl {
  font-size: 6.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  #dance .sec-ttl {
    font-size: 3.4rem;
    line-height: 1.3;
  }
}
#dance .inbox {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  #dance .inbox {
    flex-wrap: wrap;
    padding: 0 4%;
    box-sizing: border-box;
  }
}
#dance .steps li {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  #dance .steps li {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
}
#dance .steps .num {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 122px;
  color: #E4F3F7;
  margin-right: 30px;
}
@media (max-width: 767px) {
  #dance .steps .num {
    margin: 0 auto;
  }
}
#dance .steps dl dt {
  font-size: 3.4rem;
  font-weight: 900;
}
@media (max-width: 767px) {
  #dance .steps dl dt {
    font-size: 2.4rem;
  }
}
#dance .steps dl dd {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  #dance .steps dl dd {
    font-size: 1.8rem;
  }
}
#dance .text-bold {
  font-weight: 900;
}
#dance p {
  font-size: 2.4rem;
}
@media (max-width: 767px) {
  #dance p {
    font-size: 1.8rem;
  }
}
#dance .sec-kv {
  background: url(/assets/img/dance/bg01.webp) no-repeat center top;
  background-size: cover;
  padding: 130px 0 0 60px;
  position: relative;
  height: 100vw;
  max-height: 800px;
}
@media (max-width: 767px) {
  #dance .sec-kv {
    background-size: cover;
    height: 100vh;
  }
}
@media (max-width: 767px) {
  #dance .sec-kv .kv-text {
    position: absolute;
    top: 8%;
    margin-left: -12%;
  }
}
#dance .sec-kv .kv-text h1 {
  font-size: 9.3rem;
  font-weight: 900;
  line-height: 1.4;
  color: white;
  transform: rotate(-15deg);
}
@media (max-width: 767px) {
  #dance .sec-kv .kv-text h1 {
    font-size: 4rem;
    transform: rotate(-10deg);
  }
}
#dance .sec-kv .kv-text p {
  font-size: 2.4rem;
  font-weight: 900;
  color: white;
  transform: rotate(-15deg);
  padding-top: 50px;
  padding-left: 60px;
}
@media (max-width: 767px) {
  #dance .sec-kv .kv-text p {
    font-size: 1.6rem;
    padding-left: 0;
    transform: rotate(-10deg);
  }
}
#dance .sec-kv figure {
  position: absolute;
  right: -80px;
  top: 40px;
}
@media (max-width: 767px) {
  #dance .sec-kv figure {
    right: -28%;
    top: 0px;
  }
}
#dance .sec-kv figure img {
  max-width: 600px;
}
@media (max-width: 767px) {
  #dance .sec-kv figure img {
    max-width: 300px;
  }
}
#dance .sec-reserve {
  padding: 60px 0 80px;
  text-align: center;
}
@media (max-width: 767px) {
  #dance .sec-reserve {
    padding: 30px 0 40px;
  }
}
#dance .sec-reserve p {
  font-size: 6.8rem;
  font-weight: 900;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  #dance .sec-reserve p {
    font-size: 3.4rem;
  }
}
#dance .sec-reserve .btn-reserve {
  background: rgb(148, 207, 223);
  background: linear-gradient(180deg, rgb(148, 207, 223) 0%, rgb(24, 151, 187) 100%);
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  #dance .sec-reserve .btn-reserve {
    max-width: 80%;
  }
}
#dance .sec-reserve .btn-reserve a {
  color: white;
  font-size: 3.7rem;
  font-weight: 900;
  padding: 20px;
  display: block;
}
@media (max-width: 767px) {
  #dance .sec-reserve .btn-reserve a {
    font-size: 2.5rem;
  }
}
#dance .sec-reserve .btn-reserve:hover {
  background: rgb(24, 151, 187);
  background: linear-gradient(180deg, rgb(24, 151, 187) 0%, rgb(148, 207, 223) 100%);
}
#dance .sec-about {
  background: url(/assets/img/dance/bg02.webp) no-repeat center top;
  background-size: cover;
  padding-top: 273px;
}
#dance .sec-about figure {
  width: 54%;
  max-width: 652px;
}
@media (max-width: 767px) {
  #dance .sec-about figure {
    width: 100%;
    margin-bottom: 30px;
  }
}
#dance .sec-about .about-text {
  width: 43%;
}
@media (max-width: 767px) {
  #dance .sec-about .about-text {
    width: 100%;
  }
}
#dance .sec-reason {
  padding: 60px 0;
}
#dance .sec-program {
  background: url(/assets/img/dance/bg03.webp) no-repeat center top;
  background-size: cover;
  padding: 273px 0 248px;
}
@media (max-width: 767px) {
  #dance .sec-program {
    margin-top: -273px;
  }
}
#dance .sec-program .num {
  color: white;
}
#dance .sec-instructor {
  background: url(/assets/img/dance/bg04.webp) no-repeat center top;
  background-size: cover;
  padding: 199px 0 193px;
  margin-top: -85px;
}
@media (max-width: 767px) {
  #dance .sec-instructor {
    margin-top: -250px;
  }
}
#dance .sec-instructor figure {
  width: 39%;
  max-width: 470px;
}
@media (max-width: 767px) {
  #dance .sec-instructor figure {
    width: 100%;
  }
}
#dance .sec-instructor .about-text {
  width: 56%;
}
@media (max-width: 767px) {
  #dance .sec-instructor .about-text {
    width: 100%;
  }
}
#dance .sec-instructor .about-text span {
  font-size: 3.6rem;
  display: block;
  margin-bottom: 30px;
}
#dance .sec-class-info {
  padding: 60px 0;
}
#dance .sec-class-info .num {
  font-size: 6.3rem;
  color: #1897BB;
  font-weight: 900;
  word-break: keep-all;
}
@media (max-width: 767px) {
  #dance .sec-class-info .num {
    font-size: 5.3rem;
  }
}
@media (max-width: 767px) {
  #dance .sec-class-info dl {
    width: 100%;
  }
}
#dance .sec-voice {
  background: url(/assets/img/dance/bg05.webp) no-repeat center top;
  background-size: cover;
  padding: 149px 0 278px;
}
@media (max-width: 767px) {
  #dance .sec-voice {
    margin-top: -149px;
  }
}
#dance .sec-voice figure {
  width: 25%;
  max-width: 200px;
}
@media (max-width: 767px) {
  #dance .sec-voice figure {
    width: 50%;
    margin: 0 auto 30px;
  }
}
#dance .sec-voice .about-text {
  width: 84%;
  margin-left: 60px;
}
@media (max-width: 767px) {
  #dance .sec-voice .about-text {
    width: 100%;
    margin-left: 0;
  }
}
#dance .sec-voice .inbox {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  #dance .sec-voice .inbox.reverse {
    flex-direction: column-reverse;
  }
}
#dance .sec-voice .inbox.reverse .about-text {
  margin-left: 0;
  margin-right: 60px;
}
@media (max-width: 767px) {
  #dance .sec-voice .inbox.reverse .about-text {
    margin-right: 0;
  }
}
#dance .sec-faq {
  background: url(/assets/img/dance/bg06.webp) no-repeat center top;
  background-size: cover;
  padding: 210px 0 211px;
}
#dance .sec-faq .num {
  color: white;
}

/* about用にCSS追加 */
.u-bg-gray {
  background-color: #F5F5F5 !important;
}

.u-bg-blue {
  background-color: #008DB5 !important;
}

.u-bg-wh {
  background-color: #fff !important;
}

.u-cl-wh {
  color: #fff !important;
}

.u-cl-blue {
  color: #008DB5 !important;
}

.l-main {
  flex-grow: 1;
  min-width: 320px;
  background-color: #fff;
  margin: 90px 0 0;
}
@media screen and (max-width: 767px) {
  .l-main {
    margin: 50px 0 0;
  }
}
.l-main.bg {
  background-color: #F5F5F5;
}

.l-section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 60px 0;
  }
}
.l-section.type-no-pt {
  padding-top: 0;
}
.l-section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .l-section-inner {
    padding: 0 15px;
  }
}
.l-section-header {
  display: flex;
  justify-content: center;
  margin: 0 0 30px;
}
.l-section-header.left {
  justify-content: space-between;
}
.l-section-header.left .c-heading-1 {
  text-align: left;
}
.l-section-header.left .c-heading-1 .ja {
  left: 0;
  transform: inherit;
}

.l-section-block {
  margin: 0 0 60px;
}
@media screen and (min-width: 768px) {
  .l-section-block {
    margin: 0 0 40px;
  }
}
.l-section-block:last-child {
  margin: 0;
}

.c-heading-1 {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
}
.c-heading-1 span.ja {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 100%;
  color: #008DB5;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-heading-1 span.ja {
    top: -30px;
  }
}
.c-heading-1 span.about-en {
  max-width: 230px;
}
@media screen and (max-width: 767px) {
  .c-heading-1 span.about-en {
    max-width: 180px;
  }
}

.c-heading-2 {
  margin: 0 0 30px;
  color: #008DB5;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  .c-heading-2 {
    margin: 0 0 20px;
    font-size: 1.6rem;
  }
}
.c-heading-2.bg {
  padding: 8px 10px;
  background-color: #008DB5;
  color: #fff;
}

.c-heading-3 {
  margin: 0 0 30px;
  color: #000;
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  .c-heading-3 {
    margin: 0 0 20px;
    font-size: 2rem;
  }
}

.c-lead {
  margin: 0 0 30px;
  font-weight: 500 !important;
  line-height: 2 !important;
  text-align: center;
  font-feature-settings: normal !important;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-lead {
    text-align: left;
  }
}
.c-lead:last-of-type {
  margin: 0;
}

.p-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-col {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .p-col.num-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
  }
}
@media screen and (min-width: 1280px) {
  .p-col.num-2 {
    gap: 4.8rem;
  }
}
.p-col .span-2 {
  grid-column-end: span 2;
}
.p-col .span-3 {
  grid-column-end: span 3;
}

.c-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  color: #000;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  border: none;
  background: inherit;
  -webkit-font-smoothing: antialiased;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.c-link:hover {
  opacity: 0.7;
}
.c-link span {
  position: relative;
  padding: 0 20px 0 0;
}
.c-link span:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-mask-image: url(/assets/img/icon/icon_arrow.svg);
          mask-image: url(/assets/img/icon/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #008DB5;
  width: 6px;
  height: 10px;
  transform: translateY(-50%);
  transition: right 0.1s linear;
}
.c-link:hover span:before {
  right: -0.2em;
}
.c-link.type-cl-wh {
  color: #fff;
}
.c-link.type-cl-wh span:before {
  background-color: #fff;
}
.c-link.type-more span:before {
  transform: translateY(-50%) rotate(90deg);
}
.c-link.type-close {
  display: none;
}
.c-link.type-close span:before {
  transform: translateY(-50%) rotate(-90deg);
}
.c-link.type-center {
  justify-content: center;
}

.c-link-button {
  transition: opacity 0.2s ease;
  position: relative;
  display: grid;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 220px;
  max-width: 220px;
  padding: 13px 0;
  background-color: #008DB5;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media (hover: hover) {
  .c-link-button:hover {
    opacity: 0.7;
  }
}
.c-link-button:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-mask-image: url(/assets/img/icon/icon_arrow.svg);
          mask-image: url(/assets/img/icon/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  width: 6px;
  height: 10px;
  transform: translateY(-50%);
}
.c-link-button.type-more-button {
  border: none;
  padding-right: 25px;
  margin: 0 auto;
}
.c-link-button.type-more-button:before {
  content: none;
}
.c-link-button.type-more-button span {
  display: flex;
  align-items: center;
  position: relative;
}
.c-link-button.type-more-button span::before, .c-link-button.type-more-button span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: calc(100% + 40px);
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background-color: #FFF;
  transition: transform 0.3s ease-in-out, background-color 0.3s ease;
}
.c-link-button.type-more-button span::before {
  transform: rotateZ(90deg);
}
.c-link-button.type-back-button:before {
  left: 16px;
  transform: scale(-1, 1) translateY(-50%);
}
.c-link-button.type-w-310 {
  max-width: 310px;
  padding: 17px 0;
  font-size: 1.7rem;
}
.c-link-button.type-w-270 {
  max-width: 270px;
}
.c-link-button.type-border {
  background-color: #fff;
  border: 1px solid #008DB5;
}
.c-link-button.type-video:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-mask-image: url(/assets/img/icon/icon_video.svg);
          mask-image: url(/assets/img/icon/icon_video.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  width: 18px;
  height: 12px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-link-button.type-video:before {
    left: 12px;
  }
}
.c-link-button.type-tel:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  -webkit-mask-image: url(/assets/img/icon/icon_tel.svg);
          mask-image: url(/assets/img/icon/icon_tel.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: 50% 50%;
          mask-position: 50% 50%;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #008DB5;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .c-link-button.type-tel:before {
    left: 12px;
  }
}
.c-link-button.type-cl-wh {
  background-color: #fff;
  color: #000;
}
.c-link-button.type-cl-wh:before {
  background-color: #008DB5;
}

.p-interview-banner {
  position: relative;
  max-width: 860px;
  margin: 60px auto 0;
  padding: 100px 40px 80px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-interview-banner {
    margin: 40px auto 0;
    padding: 85px 20px 75px;
  }
}
.p-interview-banner.type-about {
  background-color: inherit;
  margin: 126px auto 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-interview-banner.type-about {
    margin: 106px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .p-interview-banner .c-heading-1 span.en {
    font-size: 2.4rem;
  }
}
.p-interview-banner:before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 780px;
  height: 4px;
  background-color: #008DB5;
}
@media screen and (max-width: 767px) {
  .p-interview-banner:before {
    max-width: 265px;
  }
}
.p-interview-banner:after {
  content: "";
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 780px;
  height: 1px;
  background-color: #008DB5;
}
@media screen and (max-width: 767px) {
  .p-interview-banner:after {
    max-width: 265px;
  }
}
.p-interview-banner p {
  margin: -20px 0 0;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2;
  text-align: center;
}
.p-interview-banner-link {
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 46px;
  background-color: #008DB5;
  border: 2px solid #fff;
  text-align: center;
}
.p-interview-banner .c-link {
  height: 100%;
  justify-content: center;
}

.c-point-num {
  position: relative;
  width: 70px;
  height: 70px;
  padding: 5px 0 0;
  background-color: #008DB5;
  color: #fff;
  font-weight: 600;
  font-size: 1.5rem;
  font-family: "Copperplate Gothic Bold", "Alegreya SC", "Roboto", "sans-serif";
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-point-num {
    width: 64px;
    height: 64px;
    font-size: 1.3rem;
  }
}
.c-point-num span {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  color: #fff;
  font-weight: 900;
  font-size: 3rem;
  font-family: "Roboto", "sans-serif";
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  .c-point-num span {
    font-size: 2.6rem;
  }
}

.p-director {
  align-items: start;
}
.p-director-card {
  padding: 50px 40px 40px;
  background-color: #fff;
  min-height: 725px;
}
@media screen and (min-width: 1280px) {
  .p-director-card {
    min-height: 725px;
  }
}
@media screen and (min-width: 768px) {
  .p-director-card {
    padding: 40px 30px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-director-card {
    padding: 30px 20px;
    min-height: inherit;
  }
  .p-director-card:last-of-type {
    margin: 20px 0 0;
  }
}
.p-director-card-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "name image" "qualify image" "button button";
  gap: 0 30px;
}
@media screen and (max-width: 1279px) {
  .p-director-card-inner {
    gap: 0 15px;
  }
}
.p-director-card-inner figure {
  grid-area: image;
  min-width: 200px;
  max-width: 200px;
}
@media screen and (max-width: 1279px) {
  .p-director-card-inner figure {
    min-width: 120px;
    max-width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-director-card-inner figure {
    min-width: 100px;
    max-width: 100px;
  }
}
.p-director-card-inner figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
}
.p-director-card .c-link-button {
  grid-area: button;
  margin: 20px 0 0;
}
.p-director-card .p-list-program-name {
  grid-area: name;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.1em;
}
.p-director-card .p-list-program-name span.name {
  display: inline-block;
  margin: 20px 0 0;
  font-weight: 900;
  font-size: 3.2rem;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  .p-director-card .p-list-program-name span.name {
    margin: 5px 0 0;
    font-size: 2rem;
  }
}
.p-director-card .p-list-program-name span.name::first-letter {
  color: #008DB5;
}
.p-director-card .p-list-program-name span.cate {
  display: inline-block;
  color: #008DB5;
  font-weight: 600;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-director-card .p-list-program-name span.cate {
    font-size: 1rem;
  }
}
.p-director-card .p-list-program-qualify {
  grid-area: qualify;
  margin: 20px 0 0;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-director-card .p-list-program-qualify {
    font-size: 1.2rem;
  }
}

/* p-kv
---------------------------------------- */
.p-kv-wrap {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-kv-wrap {
    display: block;
  }
}

/* p-kv
---------------------------------------- */
.p-kv {
  position: relative;
  width: calc(100% - 25vw);
}
@media screen and (max-width: 767px) {
  .p-kv {
    width: 100%;
  }
}
.p-kv img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 100%;
     object-position: 0 100%;
  min-height: 640px;
}
.type-about .p-kv img {
  -o-object-position: 10% 50%;
     object-position: 10% 50%;
}
@media screen and (max-width: 767px) {
  .p-kv img {
    min-height: 280px;
  }
}

/* p-kv-copy
---------------------------------------- */
.p-kv-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0 60px 0 0;
}
.type-about .p-kv-copy {
  margin: 0 -460px 0 0;
}
@media screen and (max-width: 1279px) {
  .p-kv-copy {
    margin: 0 -160px 0 0;
    padding: 0 90px 0 20px;
  }
  .type-about .p-kv-copy {
    margin: 0 -550px 0 0;
    padding: 0 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv-copy {
    margin: -44px 0 0;
    padding: 0 30px;
  }
  .type-about .p-kv-copy {
    margin: 40px 0 0;
    padding: 0 30px;
  }
}
.p-kv-copy h2 {
  font-weight: 900;
  font-size: 4.8rem;
  line-height: 1.45;
  text-align: left;
  letter-spacing: 0.28em;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 1279px) {
  .type-about .p-kv-copy h2 {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-kv-copy h2 {
    font-size: 4.6rem;
  }
  .type-about .p-kv-copy h2 {
    font-size: 3.2rem;
  }
}
.p-kv-copy p {
  font-weight: 900;
  margin: 40px 0 0;
  line-height: 2;
  letter-spacing: 0.2em;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  .p-kv-copy p {
    margin: 26px 0 0;
    font-size: 1.4rem;
  }
}
.type-about .p-kv-copy p {
  font-weight: 500;
}
.type-about .p-kv-copy p span {
  background: rgba(0, 141, 181, 0.5);
  font-weight: 700;
}

.p-about {
  padding: 60px 0 !important;
}
.p-about-heading-01 {
  color: #000;
  text-align: left;
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 768px) {
  .p-about-heading-01 {
    font-size: 2.2rem;
  }
}
.p-about-heading-02 {
  color: #000;
  text-align: left;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
}
.p-about-heading-02::first-letter {
  color: #008DB5;
}
.p-about-heading-02 .outline {
  position: relative;
  padding: 0 0 0 50px;
}
.p-about-heading-02 .outline:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 1px;
  background: #333;
  transform: translateY(-50%);
}
.p-about-lead {
  margin: 40px 0 80px;
  line-height: 1.7;
  font-size: 2rem;
  font-weight: 500;
}
.p-about-lead span {
  background: rgba(0, 141, 181, 0.5);
  font-weight: 700;
}
.p-about-contain {
  margin: 30px 0 0;
}
.p-about-contain p {
  margin: 20px 0 0;
  line-height: 2;
}
.p-about-company {
  margin: 30px 0 0;
}
.p-about-company-contain {
  padding: 40px;
  border: 1px solid #CCCCCC;
}
.p-about-company-contain .company-desc {
  display: flex;
  align-items: center;
  gap: 0 20px;
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid #CCCCCC;
}
.p-about-company-contain .company-desc figure {
  max-width: 200px;
}
.p-about-company-contain .company-desc figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.p-about-company-contain .company-desc .company-text {
  display: flex;
  flex-direction: column;
}
.p-about-company-contain .company-desc .company-text p {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
}
.p-about-company-contain p {
  margin: 0;
  line-height: 2;
  letter-spacing: 0.1em;
}

.p-pain {
  margin: 40px 0 0;
  gap: 4rem 3rem;
}
@media screen and (min-width: 768px) {
  .p-pain {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .p-pain {
    gap: 3rem 0;
  }
}
.p-pain .p-col-inner {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 3rem;
}
.p-pain .p-col-inner h4.c-heading-2 {
  position: relative;
  margin: 0;
  padding: 0 0 0 90px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-pain .p-col-inner h4.c-heading-2 {
    padding: 0 0 0 80px;
  }
}
.p-pain .p-col-inner h4.c-heading-2 .c-point-num {
  position: absolute;
  top: 0;
  left: 0;
}
.p-pain .p-col-inner p {
  margin: 0;
  letter-spacing: 0.1em;
  line-height: 2;
}
.p-pain .p-col-inner figure img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-pain .p-col-inner .c-link-button {
  margin: 30px auto 0;
}

.c-movie {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  max-width: 580px;
  margin: 0 auto 30px;
}
.c-movie iframe,
.c-movie video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

.c-program-card-lead {
  position: relative;
  margin: 40px 0 0;
  padding: 40px 0 0;
  border-top: 1px solid #CCC;
}
@media screen and (max-width: 767px) {
  .c-program-card-lead {
    margin: 20px 0 0;
    padding: 20px 0 0;
  }
}
.c-program-card-lead p {
  margin: 0;
  line-height: 2;
  margin: 0 0 30px;
}
.c-program-card-lead p:nth-child(n+2) {
  display: none;
}

/* reserve */
.p-store {
  max-width: 1200px;
  margin: 0 auto 40px;
}
.p-store-inner {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 0 40px;
  padding: 40px;
  border: 1px solid #ccc;
  max-height: 600px;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .p-store-inner {
    display: block;
    padding: 30px 20px;
    max-height: inherit;
  }
}
.p-store-title {
  font-weight: 900;
  font-size: 2.4rem;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  .p-store-title {
    display: block;
  }
}
.p-store-list li {
  margin: 20px 0;
  font-size: 1.4rem;
  font-weight: 500;
}
.p-store-list li em {
  display: block;
  margin: 0 0 10px;
  font-style: normal;
  color: #008DB5;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
}
.p-store-list li span {
  display: block;
  padding: 10px 0;
  border-top: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-store .c-link-button {
    margin: 0 auto;
  }
}
.p-store-image {
  display: grid;
  grid-template-rows: 360px 1fr;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-store-image {
    grid-template-rows: 146px 1fr;
    gap: 15px;
    margin: 30px 0 0;
  }
}
.p-store-image figure {
  width: 100%;
}
.p-store-image figure:nth-child(1) {
  grid-row: 1/2;
  grid-column: 1/3;
  min-height: 360px;
  max-height: 360px;
}
@media screen and (max-width: 767px) {
  .p-store-image figure:nth-child(1) {
    min-height: 146px;
    max-height: 146px;
  }
}
.p-store-image figure:nth-child(2) {
  grid-row: 2/3;
  grid-column: 1/2;
  min-height: 150px;
  max-height: 150px;
}
@media screen and (max-width: 767px) {
  .p-store-image figure:nth-child(2) {
    min-height: 58px;
    max-height: 58px;
  }
}
.p-store-image figure:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2/3;
  min-height: 150px;
  max-height: 150px;
}
@media screen and (max-width: 767px) {
  .p-store-image figure:nth-child(3) {
    min-height: 58px;
    max-height: 58px;
  }
}
.p-store-image figure img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}

.p-storeDetail {
  padding: 40px;
  border: 1px solid #ccc;
}
@media screen and (max-width: 767px) {
  .p-storeDetail {
    padding: 20px;
  }
}
.p-storeDetail .p-storeDetail-image {
  margin: 0 0 60px;
}
@media screen and (max-width: 767px) {
  .p-storeDetail .p-storeDetail-image {
    margin: 0 0 40px;
  }
}
.p-storeDetail .p-storeDetail-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-storeDetail .p-col figure:first-child {
    margin: 0;
  }
}
.p-storeDetail .c-heading-2 {
  text-align: left;
}
.p-storeDetail p {
  margin: 0 0 30px;
  line-height: 2;
  font-weight: 500;
  font-size: 1.4rem;
}
.p-storeDetail iframe {
  width: 100%;
  height: 540px;
}
.p-storeDetail .p-store {
  margin: 40px 0 0;
}
.p-storeDetail .p-store-map em {
  display: block;
  margin: 0 0 10px;
  font-style: normal;
  color: #008DB5;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
}

.p-card-shop {
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .p-card-shop {
    padding-bottom: 60px;
  }
}
.p-card-shop figure {
  width: 100%;
  height: 250px;
}
.p-card-shop figure img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-card-shop .p-card-shop-inner {
  padding: 25px 20px 40px;
  background-color: #F5F5F5;
}
.p-card-shop .p-card-shop-inner .p-card-shop-heading h4 {
  font-size: 2rem;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
}

.p-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-col {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .p-col.num-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

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