@charset "UTF-8";
body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #393939;
}

h1, h2, h3, p, a, div {
  font-weight: 500;
}

* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

body, h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd {
  margin: 0;
}

body {
  line-height: 1;
  font-size: 16px;
  background: #fff;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  font-family: inherit;
  display: block;
  cursor: pointer;
}

a, div, p, dt, dd, li {
  -webkit-tap-highlight-color: transparent;
}

/* ------------------------common ---------------------------------*/
body.is-fixed {
  overflow: hidden;
  padding-right: 16px;
}

body.is-fixed-sp {
  overflow: hidden;
}

.hamburger-menu.is-fixed {
  transform: translateX(-16px);
}

.header.is-fixed {
  width: calc(100vw - 16px);
}

@media screen and (min-width: 1200px) {
  .pc-none {
    display: none;
  }
  .pc-show {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .tab-none {
    display: none;
  }
  .tab-show {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .sp-none {
    display: none;
  }
  .sp-show {
    display: block;
  }
}
@media screen and (max-width: 374px) {
  .n-sp2-none {
    display: none;
  }
  .n-sp2-show {
    display: block;
  }
}
.all-none {
  display: none;
}

.all-show {
  display: block;
}

.inner {
  width: 100%;
  padding: 0 40px;
  margin: 0 auto;
}

.large-text {
  text-transform: uppercase;
}

/* ------------------------ tel ---------------------------------*/
.tel {
  font-size: 32px;
  font-weight: 700;
  color: #1391E6;
  padding-left: 32px;
  position: relative;
  letter-spacing: -0.02em;
  display: inline-block;
}
.tel::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 28px;
  width: 28px;
  background-image: url(../img/icon-tel.png);
  background-position: center center;
  background-size: contain;
}

/* ------------------------ table --------------------------------*/
.table {
  position: relative;
  z-index: 10;
}

.table__container {
  border-radius: 20px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
  padding: 11px 20px 20px 20px;
  height: 166px;
}
@media screen and (max-width: 376px) {
  .table__container {
    height: 125px;
    border-radius: 10px;
    padding: 10px;
  }
}

table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
}
table th,
table td {
  border-bottom: 1px solid black;
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
  padding: 15.5px 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  table th,
table td {
    font-size: 16px;
    padding: 15px 0;
  }
}
@media screen and (max-width: 376px) {
  table th,
table td {
    padding: 8px 0;
    font-size: 10px;
  }
}
table th:first-child {
  width: 101px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  table th:first-child {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  table th:first-child {
    width: 30%;
  }
}
@media screen and (max-width: 376px) {
  table th:first-child {
    width: 50px;
  }
}
table td {
  color: #1391E6;
}
table td.table__slash {
  color: #393939;
  font-weight: 700;
}

.table__blue,
.table__pink {
  position: relative;
}
.table__blue::after,
.table__pink::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 376px) {
  .table__blue::after,
.table__pink::after {
    width: 15px;
    height: 15px;
  }
}

.table__blue {
  color: #1391E6;
}
.table__blue::after {
  background-color: rgba(19, 145, 230, 0.3);
}

.table__pink {
  color: #EE5A6D;
}
.table__pink::after {
  background-color: rgba(238, 90, 109, 0.3);
}

/* ------------------------ btn ---------------------------------*/
.btn {
  text-align: center;
}
.btn a {
  display: inline-block;
  width: 100%;
  padding: 12px 2rem 12px 2rem;
  border: 1px solid #1391E6;
  border-radius: 24px;
  color: #1391E6;
  position: relative;
  transition: background-color 0.3s ease 0s;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .btn a {
    padding: 10px 2rem;
  }
}
.btn a::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border: 1px solid #1391E6;
  border-top: none;
  border-left: none;
  transition: border 0.3s, right 0.3s ease 0s;
}
.btn a::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 1px;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #1391E6;
  transition: background-color 0.3s, right 0.3s ease 0s;
}
.btn a:hover {
  background-color: #1391E6;
  color: #FFFFFF;
}
.btn a:hover::after {
  border: 1px solid #FFFFFF;
  border-top: none;
  border-left: none;
  right: 10px;
}
.btn a:hover::before {
  background-color: #FFFFFF;
  right: 9px;
}

/* ------------------------ heading ---------------------------------*/
.heading {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.4;
}
.heading span {
  padding: 0 94px;
  position: relative;
  display: inline-block;
}
.heading span::after, .heading span::before {
  position: absolute;
  content: "";
  top: 50%;
  width: 67px;
  height: 20px;
  transform: translateY(-50%);
  background-image: url(../img/title-deco.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .heading span::after, .heading span::before {
    width: 49px;
    height: 13px;
  }
}
.heading span::after {
  left: 0;
}
.heading span::before {
  right: 0;
}
@media screen and (max-width: 767px) {
  .heading span {
    font-size: 20px;
    padding: 0 63px;
  }
}

.text {
  font-size: 14px;
  line-height: 1.7142857143;
  text-align: left;
}

/* ------------------- header ----------------------------------------*/
.header,
.header__inner,
.header__items,
.header__nav,
.header__list,
.header__item,
.header__info {
  height: 80px;
}
@media screen and (max-width: 767px) {
  .header,
.header__inner,
.header__items,
.header__nav,
.header__list,
.header__item,
.header__info {
    height: 60px;
  }
}

.header {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.1607843137);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 30;
}
.header.is-open {
  background: rgba(255, 255, 255, 0);
  box-shadow: none;
  z-index: 50;
}

.header__inner {
  display: flex;
  align-items: center;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 20px;
  }
}

.header__heading {
  height: 31px;
  width: 270px;
}
@media screen and (max-width: 374px) {
  .header__heading {
    width: 220px;
    height: 25px;
  }
}

.header__logo {
  transition: opacity 0.5s ease 0s;
}

.header__logo.is-open {
  opacity: 0;
  visibility: hidden;
}

.header__logo-white {
  transform: translateY(-30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease 0s;
}
.header__logo-white.is-open {
  opacity: 1;
  visibility: visible;
}

.header__items {
  display: flex;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header__items {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__items {
    display: none;
  }
}

.header__list {
  display: flex;
}

.header__item {
  display: flex;
  align-items: center;
}
.header__item:not(:first-child) {
  margin-left: 24px;
}

.header__item a {
  font-size: 11px;
  padding-top: 33px;
  position: relative;
  transition: color 0.3s ease 0s;
}
.header__item a:hover {
  color: #1391E6;
}
.header__item a::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-size: contain;
  background-position: center center;
  transition: background 0.3s ease 0s;
}

.header__item:nth-child(1) a::before {
  background-image: url(../img/icon-top.png);
}
.header__item:nth-child(1) a:hover::before {
  background-image: url(../img/icon-top-blue.png);
}

.header__item:nth-child(2) a::before {
  background-image: url(../img/icon-about.png);
}
.header__item:nth-child(2) a:hover::before {
  background-image: url(../img/icon-about-blue.png);
}

.header__item:nth-child(3) a::before {
  background-image: url(../img/icon-guidance.png);
}
.header__item:nth-child(3) a:hover::before {
  background-image: url(../img/icon-guidance-blue.png);
}

.header__item:nth-child(4) a::before {
  background-image: url(../img/icon-introduction.png);
}
.header__item:nth-child(4) a:hover::before {
  background-image: url(../img/icon-introduction-blue.png);
}

.header__item:nth-child(5) a::before {
  background-image: url(../img/icon-blog.png);
}
.header__item:nth-child(5) a:hover::before {
  background-image: url(../img/icon-blog-blue.png);
}

.header__item:nth-child(6) a::before {
  background-image: url(../img/icon-contact.png);
}
.header__item:nth-child(6) a:hover::before {
  background-image: url(../img/icon-contact-blue.png);
}

.header__item.is-page-active a {
  color: #1391E6;
  position: relative;
}
.header__item.is-page-active a::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 20px;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #1391E6;
}

.header__info {
  margin-left: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header__address {
  font-size: 12px;
  padding-left: 32px;
}

.header__tel {
  margin-top: 8px;
}

/* ------------------- hamburger-menu ----------------------------------------*/
@media screen and (max-width: 1199px) {
  .hamburger-menu {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 40px;
    z-index: 40;
    cursor: pointer;
  }
}
@media screen and (max-width: 1199px) and (min-width: 768px) and (max-width: 1199px) {
  .hamburger-menu {
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 1199px) {
  .hamburger-menu span {
    position: absolute;
    width: 30px;
    height: 3px;
    left: 10px;
    background-color: #1391E6;
    border-radius: 10px;
    transition: transform 0.5s ease 0s;
  }
  .hamburger-menu span:nth-child(1) {
    top: 11px;
  }
  .hamburger-menu span:nth-child(2) {
    top: 19px;
  }
  .hamburger-menu span:nth-child(3) {
    top: 27px;
  }
}
@media screen and (max-width: 1199px) {
  .hamburger-menu.is-open {
    z-index: 60;
  }
  .hamburger-menu.is-open span {
    top: 19px;
    background-color: #FFFFFF;
  }
  .hamburger-menu.is-open span:nth-child(1) {
    transform: rotate(135deg);
  }
  .hamburger-menu.is-open span:nth-child(2) {
    display: none;
  }
  .hamburger-menu.is-open span:nth-child(3) {
    transform: rotate(-135deg);
  }
}

/* ------------------- drawer-menu ----------------------------------------*/
.drawer-menu {
  display: none;
}
@media screen and (max-width: 1199px) {
  .drawer-menu {
    overflow: scroll;
    display: block;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #0060A0;
    z-index: 40;
    transform: translateX(105%);
    transition: transform 0.5s ease 0s;
  }
  .drawer-menu.is-open {
    transform: translateX(0);
  }
  .drawer-menu::-webkit-scrollbar {
    display: none;
  }
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  height: 400px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .drawer-menu__items {
    margin-top: 150px;
  }
}

.drawer-menu__item {
  display: block;
  width: 250px;
  border-top: dotted 2px #FFFFFF;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .drawer-menu__item {
    width: 350px;
  }
}
.drawer-menu__item:last-child {
  border-bottom: dotted 2px #FFFFFF;
}
.drawer-menu__item::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 13px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border: 1px solid #FFFFFF;
  border-top: none;
  border-left: none;
  transition: border 0.3s, right 0.3s ease 0s;
}
.drawer-menu__item::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 1px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFFFFF;
  transition: background 0.3s, right 0.3s ease 0s;
}
.drawer-menu__item:hover::after {
  border: 1px solid #FFFFFF;
  border-top: none;
  border-left: none;
  right: 8px;
}
.drawer-menu__item:hover::before {
  background-color: #FFFFFF;
  right: 7px;
}
.drawer-menu__item a {
  font-size: 14px;
  padding: 18px 0 18px 38px;
  color: #FFFFFF;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .drawer-menu__item a {
    font-size: 20px;
    padding: 22px 0 22px 38px;
  }
}
.drawer-menu__item a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-size: contain;
}

.drawer-menu__item:nth-child(1) a::after {
  background-image: url(../img/icon-top-white.png);
}

.drawer-menu__item:nth-child(2) a::after {
  background-image: url(../img/icon-about-white.png);
}

.drawer-menu__item:nth-child(3) a::after {
  background-image: url(../img/icon-guidance-white.png);
}

.drawer-menu__item:nth-child(4) a::after {
  background-image: url(../img/icon-introduction-white.png);
}

.drawer-menu__item:nth-child(5) a::after {
  background-image: url(../img/icon-blog-white.png);
}

.drawer-menu__item:nth-child(6) a::after {
  background-image: url(../img/icon-contact-white.png);
}

.drawer-menu__footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.1607843137);
  z-index: 50;
}

.drawer-menu__footer-inner {
  width: 100%;
  height: 60px;
  padding: 0 20px 0 16px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .drawer-menu__footer-inner {
    padding: 0 40px;
  }
}

.drawer-info {
  width: 53.6873156342%;
}
@media screen and (max-width: 376px) {
  .drawer-info {
    display: none;
  }
}

.drawer-info__tel {
  font-size: 20px;
  padding-left: 24px;
}
.drawer-info__tel::after {
  width: 18px;
  height: 18px;
}

.drawer-info__address {
  font-size: 10px;
  margin: 5px 0 0 12px;
}

.drawer-reserve {
  width: 46.3126843658%;
}
@media screen and (max-width: 376px) {
  .drawer-reserve {
    margin: 0 auto;
  }
}

.drawer-reserve__wrapper {
  display: flex;
  background-color: #1391E6;
  width: 157px;
  padding: 6px 0 6px 15px;
  border-radius: 8px;
  margin-left: auto;
}

.drawer-reserve__text {
  margin-left: 10px;
  font-weight: 700;
  color: #FFFFFF;
}
.drawer-reserve__text span {
  font-size: 12px;
}

/* ------------------- web ----------------------------------------*/
.web-reserve {
  width: 92px;
  height: 120px;
  position: fixed;
  right: 0;
  top: 176px;
  background-color: #1391E6;
  z-index: 30;
  border-radius: 20px 0 0 20px;
  transition: background-color 0.3s ease 0s;
}
.web-reserve:hover {
  background-color: #0060A0;
}

.web-reserve__wrapper {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.web-reserve__icon {
  margin-left: 20px;
}

.web-reserve__text {
  margin-top: 10px;
  text-align: center;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2857142857;
}

/* ------------------- img-text ----------------------------------------*/
.img-text {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .img-text {
    padding: 50px 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .img-text {
    padding: 50px 0 0;
  }
}
.img-text::after {
  position: absolute;
  content: "";
  width: 67.5%;
  height: 100%;
  top: 0;
  right: 0;
  background-image: url(../img/concept-bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: -10;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .img-text::after {
    background-position: right top;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .img-text::after {
    width: 100%;
  }
}

.img-text__inner {
  padding: 0 40px;
  max-width: 1280px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .img-text__inner {
    max-width: 900px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .img-text__inner {
    max-width: 600px;
    padding: 0 20px;
  }
}

.img-text__items {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .img-text__items {
    flex-direction: column-reverse;
  }
}

.img-text__img {
  width: 50%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .img-text__img {
    height: auto;
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .img-text__img {
    width: 100%;
    margin-top: 40px;
    max-width: 400px;
  }
}
.img-text__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-text__body {
  width: 50%;
  padding-left: 60px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .img-text__body {
    width: 60%;
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .img-text__body {
    width: 100%;
    padding: 0;
  }
}

.img-text__heading {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #1391E6;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .img-text__heading {
    font-size: 11px;
  }
}

.img-text__lead {
  font-size: 28px;
  letter-spacing: 0.08em;
  margin-top: 28px;
  line-height: 1.5714285714;
  font-weight: 700;
  text-indent: 0rem;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .img-text__lead {
    margin-top: 20px;
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .img-text__lead {
    font-size: 20px;
    line-height: 1.6;
    margin-top: 16px;
  }
}

.img-text__text {
  font-size: 14px;
  margin-top: 33px;
  line-height: 1.7142857143;
  text-align: justify;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .img-text__text {
    margin-top: 25px;
  }
}
@media screen and (max-width: 767px) {
  .img-text__text {
    margin-top: 25px;
  }
}
.img-text__text span {
  transform: translateY(-5px);
  margin-top: 30px;
  display: block;
}

/* --------------------------kirakira ---------------------------------*/
.bg-bottom {
  position: relative;
}

.kirakira-small,
.kirakira-midle,
.kirakira-large {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1280px;
  width: 100%;
  padding: 0 20px 0 40px;
}
.kirakira-small::after,
.kirakira-midle::after,
.kirakira-large::after {
  position: absolute;
  content: "";
  background-image: url(../img/deco-kirakira.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.kirakira-small::after {
  top: -22px;
  right: 100px;
  width: 45px;
  height: 45px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .kirakira-small::after {
    top: -18px;
    right: 80px;
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .kirakira-small::after {
    top: -15px;
    right: 40px;
    width: 20px;
    height: 20px;
  }
}

.kirakira-midle::after {
  top: -57px;
  left: 40px;
  width: 57px;
  height: 57px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .kirakira-midle::after {
    top: -50px;
    left: 25px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .kirakira-midle::after {
    top: -40px;
    left: 10px;
    width: 25px;
    height: 25px;
  }
}

.kirakira-large::after {
  top: -117px;
  right: 20px;
  width: 92px;
  height: 92px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .kirakira-large::after {
    top: -70px;
    right: 12px;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .kirakira-large::after {
    top: -55px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}

/* ------------------------ section-top --------------------------------*/
.section-top {
  margin-top: 80px;
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .section-top {
    margin-top: 40px;
  }
}

.section-top__inner {
  padding: 0 60px;
  max-width: 1280px;
}
@media screen and (max-width: 767px) {
  .section-top__inner {
    padding: 0 20px;
  }
}

.section-top__container {
  height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.section-top__container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .section-top__container {
    height: 188px;
  }
}

.section-top__heading,
.section-top__sub-title {
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  position: relative;
  z-index: 20;
}

.section-top__heading {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .section-top__heading {
    font-size: 24px;
    letter-spacing: 0.2em;
  }
}

.section-top__sub-title {
  font-size: 14px;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .section-top__sub-title {
    font-size: 12px;
  }
}

.bread {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  font-size: 14px;
}

.bread span a span {
  color: #C2C2C2;
}
.bread span a span:hover {
  color: #393939;
  text-decoration: underline;
}

.bread span span {
  color: #393939;
}

/* ------------------- footer ----------------------------------------*/
.footer {
  background-color: #DFF1FD;
}
@media screen and (max-width: 1199px) {
  .footer {
    padding-bottom: 60px;
  }
}

.footer__wave {
  height: 32px;
}
@media screen and (max-width: 767px) {
  .footer__wave img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.footer__inner {
  max-width: 1080px;
  padding: 56px 40px 63px 40px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer__inner {
    max-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .footer__inner {
    max-width: 700px;
    padding: 0 10px 63px 10px;
  }
}

.footer__container {
  padding: 37px 50px 37px;
  background-color: #FFFFFF;
  display: flex;
  border-radius: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer__container {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .footer__container {
    flex-direction: column;
    padding: 30px 10px 15px 10px;
    margin-top: 13px;
  }
}

.footer__info {
  width: 53%;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer__info {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .footer__info {
    width: 100%;
  }
}

.footer__logo {
  width: 404px;
  height: 44px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 309px;
    height: 33px;
  }
}
@media screen and (max-width: 374px) {
  .footer__logo {
    width: 250px;
    height: 25px;
  }
}

.footer__address {
  margin-top: 10px;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .footer__address {
    margin-top: 15px;
  }
}
.footer__address span {
  margin-left: 14px;
}

.footer__tel {
  margin-top: 28px;
}

.footer__time {
  font-size: 12px;
  margin-top: 8px;
}

.footer__btns {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.footer__btn {
  text-align: center;
  width: 220px;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .footer__btn {
    width: 150px;
  }
}
.footer__btn a {
  display: inline-block;
  width: 100%;
  padding: 17px 1rem 17px 3rem;
  border: 1px solid #1391E6;
  border-radius: 30px;
  color: #1391E6;
  position: relative;
}
.footer__btn a::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 767px) {
  .footer__btn a {
    font-size: 14px;
    padding: 9px 1rem 10px 3rem;
  }
}
@media screen and (max-width: 374px) {
  .footer__btn a {
    padding: 9px 0.5rem 10px 1.5rem;
  }
}

.footer__btn.footer__web a {
  color: #FFFFFF;
  background-color: #1391E6;
  transition: background 0.3s ease 0s;
}
.footer__btn.footer__web a::after {
  width: 25px;
  height: 15px;
  left: 60px;
  background-image: url(../img/icon-pc.png);
}
@media screen and (max-width: 767px) {
  .footer__btn.footer__web a::after {
    left: 30px;
  }
}
@media screen and (max-width: 374px) {
  .footer__btn.footer__web a::after {
    left: 15px;
    width: 21px;
    height: 12px;
  }
}
.footer__btn.footer__web a:hover {
  background-color: #0060A0;
}

.footer__btn.footer__contact a {
  transition: background 0.3s, color 0.3s ease 0s;
}
.footer__btn.footer__contact a::after {
  width: 30px;
  height: 24px;
  left: 44px;
  background-image: url(../img/icon-contact-blue.png);
  transition: background 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .footer__btn.footer__contact a::after {
    left: 15px;
  }
}
@media screen and (max-width: 376px) {
  .footer__btn.footer__contact a::after {
    left: 8px;
    width: 26px;
    height: 20px;
  }
}
.footer__btn.footer__contact a:hover {
  background-color: #1391E6;
  color: #FFFFFF;
}
.footer__btn.footer__contact a:hover::after {
  background-image: url(../img/icon-contact-white.png);
}

.table.footer__table {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .table.footer__table {
    max-width: 500px;
    margin: 20px auto 0;
  }
}
.table.footer__table .table__container {
  width: 100%;
}

.footer__map {
  width: 47%;
  padding-left: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer__map {
    width: 100%;
    aspect-ratio: 3/2;
    margin-top: 20px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .footer__map {
    width: 100%;
    max-width: 500px;
    padding-left: 0;
    aspect-ratio: 3/2;
    margin: 20px auto 0;
  }
}
.footer__map iframe {
  width: 100%;
  height: 100%;
}

.footer__menus-wrapper {
  display: flex;
  margin-top: 51px;
  justify-content: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer__menus-wrapper {
    flex-direction: column;
    margin: 44px auto;
    width: 532px;
  }
}
@media screen and (max-width: 767px) {
  .footer__menus-wrapper {
    flex-direction: column;
    padding: 0 10px;
    margin-top: 61px;
    row-gap: 48px;
  }
}

.footer__menus {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer__menus {
    -moz-column-gap: 80px;
         column-gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .footer__menus {
    flex-direction: column;
    row-gap: 45px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .menu.menu--about {
    margin-left: 40px;
  }
}

.menu__heading {
  font-weight: 700;
}

.menu__link {
  margin-top: 26px;
  padding-left: 12px;
  position: relative;
}
.menu__link::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #1391E6;
}
.menu__link:hover {
  opacity: 0.5;
}

.menu__links {
  display: flex;
}

.menu__link-wrapper:not(:first-child) {
  margin-left: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .menu__link-wrapper:not(:first-child) {
    margin-left: 80px;
  }
}

.footer__copy {
  height: 55px;
  width: 100%;
  background-color: #1391E6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copy {
  color: #FFFFFF;
  font-size: 14px;
}

/* ------------------- to-top ----------------------------------------*/
.to-top {
  position: fixed;
  right: 20px;
  bottom: 41px;
  width: 52px;
  height: 52px;
  border: 2px solid #1391E6;
  background-color: #FFFFFF;
  border-radius: 50%;
  z-index: 10;
  transition: border 0.1s ease 0s;
}
@media screen and (max-width: 767px) {
  .to-top {
    right: 10px;
    bottom: 65px;
    width: 35px;
    height: 35px;
  }
}
.to-top::after, .to-top::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.to-top::after {
  height: 25px;
  width: 2px;
  background-color: #1391E6;
  transition: width 0.1s ease 0s;
}
@media screen and (max-width: 767px) {
  .to-top::after {
    height: 20px;
  }
}
.to-top::before {
  height: 17px;
  width: 17px;
  border: 2px solid #1391E6;
  border-bottom: none;
  border-left: none;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: border 0.1s ease 0s;
}
@media screen and (max-width: 767px) {
  .to-top::before {
    height: 12px;
    width: 12px;
  }
}
.to-top:hover {
  border: 3px solid #1391E6;
}
.to-top:hover::after {
  width: 3px;
}
.to-top:hover::before {
  border: 3px solid #1391E6;
  border-bottom: none;
  border-left: none;
}

/* ------------------- contact-lead ----------------------------------------*/
.lead {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .lead {
    margin-top: 61px;
  }
}

.lead__inner {
  max-width: 808px;
}
@media screen and (max-width: 767px) {
  .lead__inner {
    padding: 0 20px;
  }
}

.lead__text span {
  color: #EE5A6D;
}
.lead__text .large-text {
  color: #393939;
}

/* その他 ---------------------------------------------------------------- */
.category-heading {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .category-heading {
    margin-bottom: 0px;
    margin-top: 30px;
  }
  .category-heading + ul {
    margin-top: 15px;
  }
}

@media screen and (max-width: 1199px) {
  .category-heading.taxonomy-heading + ul {
    margin-top: 40px;
  }
}

.thanks-lead__text {
  font-size: 18px;
  margin-bottom: 40px;
}

/* ------------------- header ----------------------------------------*/
.header__item.is-about a::before {
  background-image: url(../img/icon-about-blue.png);
}

/* ------------------- about-top ----------------------------------------*/
.about-top__container {
  background-image: url(../img/about-top.jpg);
}
@media screen and (max-width: 767px) {
  .about-top__container {
    background-image: url(../img/about-top-sp.jpg);
  }
}

/* ------------------- policy-feature ----------------------------------------*/
.policy-feature {
  padding-top: 83px;
}
@media screen and (max-width: 767px) {
  .policy-feature {
    padding-top: 54px;
  }
}

/* ------------------- policy ------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .policy.img-text {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .policy.img-text {
    margin-top: 40px;
  }
}

/* ------------------- feture ------------------------------------------------*/
.feature.img-text {
  margin-top: 40px;
}

.feature.img-text::after {
  right: auto;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature.img-text::after {
    background-position: left top;
  }
}

@media screen and (min-width: 1200px) {
  .feature__items.img-text__items {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature__items.img-text__items {
    flex-direction: row-reverse;
  }
}

@media screen and (min-width: 1200px) {
  .feature__body.img-text__body {
    padding-left: 0;
    padding-right: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature__body.img-text__body {
    padding-left: 0;
    padding-right: 40px;
  }
}

/* ------------------- state ------------------------------------------------*/
.state {
  text-align: center;
  padding: 100px 0 100px;
}
@media screen and (max-width: 767px) {
  .state {
    padding: 91px 0 102px;
  }
}

.state__inner {
  max-width: 900px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .state__inner {
    max-width: 700px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .state__inner {
    max-width: 600px;
    padding: 0 20px;
  }
}

.state__imgs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 24px;
  margin-top: 59px;
}
@media screen and (max-width: 767px) {
  .state__imgs {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    -moz-column-gap: 11px;
         column-gap: 11px;
    row-gap: 11px;
    margin-top: 37px;
  }
}

.state__img {
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .state__img {
    max-width: 250px;
  }
}

/* ------------------- header ----------------------------------------*/
.header__item.is-guidance a::before {
  background-image: url(../img/icon-guidance-blue.png);
}

/* ------------------- about-top ----------------------------------------*/
.guidance-top__container {
  background-image: url(../img/guidance-top.jpg);
}
@media screen and (max-width: 767px) {
  .guidance-top__container {
    background-image: url(../img/guidance-top-sp.jpg);
  }
}

/* ------------------- guidance-list ----------------------------------------*/
.guidance-list {
  padding: 87px 0 160px;
}
@media screen and (max-width: 767px) {
  .guidance-list {
    padding: 71px 0 97px;
  }
}

.guidance-list__inner {
  max-width: 1080px;
}
@media screen and (max-width: 767px) {
  .guidance-list__inner {
    padding: 0 20px;
  }
}

.medical-list:not(:first-child) {
  margin-top: 85px;
}

.medical-list__heading {
  font-size: 28px;
  letter-spacing: 0.08em;
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-right: 108px;
}
@media screen and (max-width: 767px) {
  .medical-list__heading {
    font-size: 20px;
  }
}
.medical-list__heading::after {
  position: absolute;
  left: 142px;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 12px;
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 700;
  border-radius: 24px;
}
@media screen and (max-width: 767px) {
  .medical-list__heading::after {
    left: 109px;
  }
}

.medical-list__heading.medical-list__heading--general::after {
  content: "保険対象";
  background-color: #1391E6;
}

.medical-list__heading.medical-list__heading--special::after {
  content: "実費";
  background-color: #EE5A6D;
}

@media screen and (min-width: 1200px) {
  .medical-list__items-wrapper {
    display: flex;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .medical-list__items-wrapper .medical-list__items:nth-child(2) {
    margin-top: 16px;
  }
}

.medical-list__items {
  margin-top: 38px;
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  flex-wrap: wrap;
  row-gap: 16px;
}
@media screen and (max-width: 767px) {
  .medical-list__items {
    flex-direction: column;
    align-items: center;
  }
}

.medical-list__item {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .medical-list__item {
    width: 400px;
    max-width: 100%;
  }
}
.medical-list__item a {
  padding: 22px 29px;
  border: 2px solid #1391E6;
  border-radius: 12px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1391E6;
  display: inline-block;
  width: 100%;
  transition: color 0.3s, background 0.3s ease 0s;
}
.medical-list__item a:hover {
  background-color: #1391E6;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .medical-list__item a {
    font-size: 20px;
    padding: 18.5px 29px;
  }
}

/* ------------------- guidance-medical ----------------------------------------*/
.guidance-medical {
  background-color: #DFF1FD;
}
.guidance-medical.guidance--special {
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .guidance-medical.guidance--special {
    margin-top: 102px;
  }
}

.guidance-medical__inner {
  max-width: 1080px;
  padding: 0 40px 82px 40px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .guidance-medical__inner {
    max-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .guidance-medical__inner {
    padding: 23px 20px 59px 20px;
    max-width: 600px;
  }
}

.medical-cards {
  margin-top: 61px;
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .medical-cards {
    margin-top: 37px;
  }
}

.medical-card {
  background-color: #FFFFFF;
  padding: 60px 60px 60px 60px;
  position: relative;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .medical-card {
    padding: 27px 20px 20px 20px;
  }
}
.medical-card::after {
  position: absolute;
  content: "保険対象";
  top: 0;
  right: 60px;
  width: 100px;
  background-color: #1391E6;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  padding: 25px 0 38px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .medical-card::after {
    width: 80px;
    font-size: 14px;
    padding: 19px 0 27px;
    right: 20px;
  }
}
.medical-card::before {
  position: absolute;
  content: "";
  top: 65px;
  right: 60px;
  border-style: solid;
  border-width: 0 50px 15px 50px;
  border-color: transparent transparent #FFFFFF transparent;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .medical-card::before {
    border-width: 0 40px 10px 40px;
    top: 50px;
    right: 20px;
  }
}
.medical-card:hover > .medical-card__body > .medical-card__text {
  color: #1391E6;
}
.medical-card:hover > .medical-card__body > .medical-card__img > img {
  transform: scale(1.05);
}

.medical-card.medical-card--special::after {
  content: "実費";
  background-color: #EE5A6D;
}

.medical-card__head {
  padding-bottom: 45px;
  border-bottom: 1px solid #C2C2C2;
  display: flex;
  -moz-column-gap: 37px;
       column-gap: 37px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .medical-card__head {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 27px;
    padding-bottom: 22px;
  }
}

.medical-card__heading {
  font-size: 28px;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .medical-card__heading {
    font-size: 20px;
  }
}

.medical-card__detail {
  font-size: 14px;
  color: #1391E6;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-align: justify;
}

.medical-card__body {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .medical-card__body {
    flex-direction: column;
    row-gap: 17px;
    margin-top: 18px;
  }
}

.medical-card__text {
  width: 50%;
  font-size: 14px;
  line-height: 1.7142857143;
  transition: color 0.3s ease 0s;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .medical-card__text {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.medical-card__text span {
  display: block;
  margin-top: 22px;
}
@media screen and (max-width: 767px) {
  .medical-card__text span {
    margin-top: 24px;
  }
}

.medical-card__img {
  width: 50%;
  overflow: hidden;
  border-radius: 20px;
}
.medical-card__img img {
  transition: transform 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .medical-card__img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
}

/* ------------------- guidance-footer ----------------------------------------*/
.guidance-footer {
  margin-top: 166px;
}
@media screen and (max-width: 767px) {
  .guidance-footer {
    margin-top: 102px;
  }
}

/* ------------------- header ----------------------------------------*/
.header__item.is-introduction a::before {
  background-image: url(../img/icon-introduction-blue.png);
}

/* ------------------- introduction-top ----------------------------------------*/
.introduction-top__container {
  background-image: url(../img/introduction-top.jpg);
}
@media screen and (max-width: 767px) {
  .introduction-top__container {
    background-image: url(../img/introduction-top-sp.jpg);
  }
}

/* ------------------- introduction-greeting ----------------------------------------*/
.introduction-greeting {
  padding-top: 83px;
}
@media screen and (max-width: 767px) {
  .introduction-greeting {
    padding-top: 54px;
  }
}

.introduction-greeting__inner {
  max-width: 1080px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .introduction-greeting__inner {
    max-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .introduction-greeting__inner {
    padding: 0 20px;
    max-width: 600px;
  }
}

@media screen and (max-width: 376px) {
  .heading.introduction-greeting__heading br {
    display: block;
  }
}

.introduction-greeting__items {
  margin-top: 58px;
  display: flex;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .introduction-greeting__items {
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media screen and (max-width: 767px) {
  .introduction-greeting__items {
    flex-direction: column;
    margin-top: 36px;
  }
}

.message {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .message {
    width: 100%;
  }
}

.message__heading {
  font-size: 28px;
  line-height: 1.5714285714;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .message__heading {
    font-size: 20px;
    line-height: 1.6;
  }
}
@media screen and (max-width: 376px) {
  .message__heading {
    white-space: nowrap;
  }
}

.message__text {
  margin-top: 35px;
  font-size: 14px;
  line-height: 1.7142857143;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .message__text {
    margin-top: 27px;
  }
}
.message__text span {
  display: block;
  margin-top: 24px;
}

.message__name {
  font-size: 14px;
  margin-top: 20px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .message__name {
    margin-top: 30px;
  }
}
.message__name span {
  display: block;
  margin-top: 10px;
}

.introduction-greeting__br {
  display: none;
}
@media screen and (max-width: 374px) {
  .introduction-greeting__br {
    display: block;
  }
}

.introduction-greeting__img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .introduction-greeting__img {
    width: 100%;
    max-width: 350px;
    margin: 42px auto;
  }
}

.introduction-greeting__profile {
  font-size: 14px;
  margin-top: 65px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .introduction-greeting__profile {
    margin: 60px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .introduction-greeting__profile {
    width: 100%;
    max-width: 500px;
    margin: -1px auto;
  }
}

.caree__heading,
.skill__heading {
  font-size: 16px;
  padding-bottom: 11px;
  border-bottom: 1px solid #393939;
}

.carre__item,
.skill__item {
  margin-top: 20px;
  display: flex;
}
@media screen and (max-width: 376px) {
  .carre__item,
.skill__item {
    font-size: 13px;
  }
}

.caree__year {
  width: 50px;
}
@media screen and (max-width: 374px) {
  .caree__year {
    width: 55px;
  }
}

.caree__text {
  padding-left: 15px;
}
@media screen and (max-width: 376px) {
  .caree__text {
    padding-left: 10px;
  }
}
.caree__text span {
  display: block;
  margin-top: 10px;
}

.skill {
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .skill {
    margin-top: 46px;
  }
}

/* ------------------- introduction-slider ----------------------------------------*/
.introduction-slider {
  max-width: 1280px;
  margin: 164px auto 0;
}
@media screen and (max-width: 767px) {
  .introduction-slider {
    margin: 104px auto 0;
  }
}

.introduction-slider .swiper-wrapper {
  transition-timing-function: linear;
}

/* ------------------- introduction-staff ----------------------------------------*/
.introduction-staff {
  padding-top: 168px;
}
@media screen and (max-width: 767px) {
  .introduction-staff {
    padding-top: 92px;
  }
}

.introduction-staff__inner {
  max-width: 1080px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .introduction-staff__inner {
    max-width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .introduction-staff__inner {
    max-width: 600px;
    padding: 0 20px;
  }
}

.introduction-staff__staffs {
  margin-top: 62px;
}
@media screen and (max-width: 767px) {
  .introduction-staff__staffs {
    margin-top: 40px;
  }
}
.introduction-staff__staffs.introduction-staff__staffs--assistant {
  margin-top: 62px;
  padding-bottom: 160px;
}
@media screen and (max-width: 767px) {
  .introduction-staff__staffs.introduction-staff__staffs--assistant {
    margin-top: 41px;
    padding-bottom: 93px;
  }
}

.introduction-staff__heading {
  padding-bottom: 11px;
  border-bottom: 1px solid #707070;
  letter-spacing: 0.08em;
}

.staff-cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 60px;
}
@media screen and (max-width: 767px) {
  .staff-cards {
    margin-top: 37px;
    row-gap: 54px;
  }
}

.staff-card {
  transition: outline 0.2s ease 0s;
  max-width: 350px;
  margin: 0 auto;
}
.staff-card:hover {
  outline: 8px solid #DFF1FD;
  outline-offset: 5px;
}

.staff-card__img {
  display: flex;
  justify-content: center;
}

.staff-card__info {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.staff-card__position {
  font-size: 12px;
  letter-spacing: 0.08em;
}

.staff-card__name {
  font-size: 18px;
  letter-spacing: 0.08em;
  margin-left: 10px;
}

.staff-card__profile {
  margin-top: 21px;
}

.staff-card__panda {
  display: flex;
  font-size: 14px;
}

.staff-card__question {
  width: 50%;
  padding: 20px;
  background-color: #DFF1FD;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (max-width: 767px) {
  .staff-card__question {
    width: 41.7910447761%;
    padding: 15px;
  }
}

.staff-card__answer {
  width: 50%;
  padding: 18px 20px;
}
@media screen and (max-width: 767px) {
  .staff-card__answer {
    width: 58.2089552239%;
  }
}

@media screen and (max-width: 1079px) {
  .staff-card__blank {
    display: none;
  }
}

/* ------------------- header ----------------------------------------*/
.header__item.is-blog a::before {
  background-image: url(../img/icon-blog-blue.png);
}

/* ------------------- blog-top ----------------------------------------*/
.blog-top__container {
  background-image: url(../img/blog-top.jpg);
}
@media screen and (max-width: 767px) {
  .blog-top__container {
    background-image: url(../img/blog-top-sp.jpg);
  }
}

/* ------------------- blog-inner ----------------------------------------*/
.blog-inner {
  max-width: 1080px;
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  padding: 92px 40px 160px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .blog-inner {
    padding: 30px 20px 120px;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .blog-inner {
    padding: 17px 20px 101px;
    flex-direction: column;
  }
}

/* ------------------- main ----------------------------------------*/
.main-columm {
  width: 67.9%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .main-columm {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .main-columm {
    width: 100%;
  }
}

/* ------------------- blog-main ----------------------------------------*/
@media screen and (min-width: 1200px) {
  .cards.blog-main-cards {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    row-gap: 20px;
  }
  .cards.blog-main-cards li {
    width: 100%;
  }
  .card.blog-main-card {
    box-shadow: none;
    border-radius: 0;
    display: flex;
    width: 100%;
  }
  .card.blog-main-card.card--new::after {
    width: 40px;
    height: 40px;
    font-size: 10px;
    top: -10px;
  }
  .card__img.blog-main-card__img {
    width: 35.9351988218%;
    height: 153px;
    border-radius: 0;
    display: flex;
    align-items: center;
  }
  .card__body.blog-main-card__body {
    width: 64.0648011782%;
    padding: 0 23px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -7px;
  }
  .card__category.blog-main-card__category {
    font-size: 10px;
    padding: 8px 1rem;
  }
  .card__heading.blog-main-card__heading {
    font-size: 16px;
    line-height: 1.5;
  }
  .card__date.blog-main-card__date {
    margin-top: 18px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .card__body.blog-main-card__body {
    margin-top: -19px;
  }
}
/* -----------------------------pagination --------------------------------*/
.pagination {
  margin-top: 100px;
  margin-left: -7px;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .pagination {
    margin-top: 60px;
    margin-left: -2px;
    -moz-column-gap: 7px;
         column-gap: 7px;
  }
}

.page-numbers {
  text-align: center;
  width: 34px;
  padding: 10px 0;
  border: 1px solid #1391E6;
  border-radius: 4px;
  color: #1391E6;
  transition: color 0.3s, background 0.3s ease 0s;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .page-numbers {
    padding: 8.5px 0;
    font-size: 12px;
    width: 30px;
  }
}
@media screen and (max-width: 374px) {
  .page-numbers {
    width: 24px;
    padding: 6px 0;
  }
}
.page-numbers:hover {
  color: #FFFFFF;
  background-color: #1391E6;
}

.page-numbers.current {
  background-color: #1391E6;
  color: #FFFFFF;
}

.page-numbers.dots {
  background-color: #FFFFFF;
  color: #1391E6;
}

.page-numbers.prev,
.page-numbers.next {
  width: 82px;
  position: relative;
  background-color: #1391E6;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .page-numbers.prev,
.page-numbers.next {
    width: 71px;
    font-size: 11px;
  }
}
.page-numbers.prev::after,
.page-numbers.next::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  z-index: 20;
  transition: background 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .page-numbers.prev::after,
.page-numbers.next::after {
    width: 12px;
    height: 12px;
  }
}

.page-numbers.prev {
  padding-left: 1.5rem;
}
.page-numbers.prev::after {
  left: 15px;
  transition: left 0.3s ease 0s;
  background-image: url(../img/icon-arrow-left.png);
}
@media screen and (max-width: 374px) {
  .page-numbers.prev::after {
    left: 15px;
  }
}
.page-numbers.prev:hover::after {
  left: 10px;
}

.page-numbers.next {
  padding-right: 1.5rem;
}
.page-numbers.next::after {
  right: 15px;
  transition: right 0.3s ease 0s;
  background-image: url(../img/icon-arrow-right.png);
}
@media screen and (max-width: 374px) {
  .page-numbers.next::after {
    right: 15px;
  }
}
.page-numbers.next:hover::after {
  right: 10px;
}

/* -------------------------------------------sidebar -----------------------------*/
.sidebar {
  width: 30%;
  margin-top: -5px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .sidebar {
    width: 100%;
    max-width: 900px;
    margin: 103px auto 0;
  }
}
@media screen and (max-width: 767px) {
  .sidebar {
    margin: 103px auto 0;
    width: 100%;
    max-width: 600px;
  }
}

.sidebar__heading {
  padding-bottom: 10px;
  padding-left: 34px;
  border-bottom: 1px solid #888888;
  position: relative;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sidebar__heading {
    padding-bottom: 12px;
  }
}
.sidebar__heading::after {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 4.5px);
  transform: translateY(-50%);
  height: 24px;
  width: 24px;
  background-size: contain;
}

/* -------------------------------------------blog-introduction -----------------------------*/
.blog-introduction__heading::after {
  background-image: url(../img/icon-about.png);
}

.blog-introduction__img {
  margin: 20px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .blog-introduction__img {
    max-width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .blog-introduction__img {
    max-width: 400px;
  }
}

.blog-introduction__lead {
  font-weight: 700;
  margin-top: 25px;
}

.blog-introduction__text {
  font-size: 14px;
  line-height: 1.7142857143;
  margin-top: 15px;
}

.blog-introduction__link {
  margin-top: 14px;
  color: #1391E6;
  font-weight: 700;
  font-size: 14px;
  padding-right: 12px;
  padding-left: 4px;
  position: relative;
  display: inline-block;
}
.blog-introduction__link::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  content: "";
  border: 2px solid #1391E6;
  border-top: none;
  border-left: none;
  height: 6px;
  width: 6px;
}
.blog-introduction__link:hover {
  opacity: 0.5;
}

/* ------------------- blog-recent-article ----------------------------------------*/
.blog-recent-article {
  margin-top: 66px;
}
@media screen and (max-width: 767px) {
  .blog-recent-article {
    margin-top: 64px;
  }
}

.blog-recent-article__heading::after {
  background-image: url(../img/icon-article.png);
}

@media screen and (min-width: 1200px) {
  .cards.blog-recent-article-cards {
    display: flex;
    flex-direction: column;
    margin-top: 23px;
    row-gap: 20px;
  }
  .card.blog-recent-article-card {
    box-shadow: none;
    border-radius: 0;
    display: flex;
  }
  .card__img.blog-recent-article-card__img {
    width: 120px;
    height: 90px;
    border-radius: 0;
    display: flex;
    align-items: center;
  }
  .card__img.blog-recent-article-card__img img {
    width: 100%;
    height: 100%;
  }
  .card__body.blog-recent-article-card__body {
    width: 64.0648011782%;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .card__category.blog-recent-article-card__category {
    font-size: 10px;
    padding: 5px 0.5rem;
  }
  .card__heading.blog-recent-article-card__heading {
    font-size: 14px;
    line-height: 1.4285714286;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }
  .card__date.blog-recent-article-card__date {
    margin-top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .cards.blog-recent-article-cards {
    margin-top: 20px;
  }
  .card__body.blog-recent-article-card__body {
    margin-top: -20px;
  }
}
/* ------------------- blog-category ----------------------------------------*/
.blog-category {
  margin-top: 63px;
}

.blog-category__heading::after {
  background-image: url(../img/icon-category.png);
}

.blog-category__item {
  margin: 22px 0 0 22px;
}
@media screen and (max-width: 767px) {
  .blog-category__item {
    margin: 20px 0 0 22px;
  }
}
.blog-category__item a {
  padding-left: 12px;
  position: relative;
}
.blog-category__item a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #1391E6;
}
.blog-category__item:hover {
  opacity: 0.5;
}

/* ------------------- blog-single-main ----------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .main-columm.single-main-columm {
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .main-columm.single-main-columm {
    max-width: 600px;
    margin: 0 auto;
  }
}

.blog-single-main {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .blog-single-main {
    margin-top: 30px;
  }
}

.blog-single-main__heading-first {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4285714286;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .blog-single-main__heading-first {
    font-size: 20px;
    line-height: 1.6;
  }
}

.blog-single-main__info {
  margin-top: 18px;
  display: flex;
  -moz-column-gap: 25px;
       column-gap: 25px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .blog-single-main__info {
    margin-top: 15px;
  }
}

.blog-single-main__date {
  color: #1391E6;
  padding-left: 20px;
  position: relative;
}
.blog-single-main__date::after {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../img/icon-pen.png);
  background-size: contain;
}

.card__category.blog-single-main__category {
  padding: 7px 1rem;
}

.blog-single-main__text-first {
  margin-top: 57px;
  text-align: justify;
}
.blog-single-main__text-first a {
  display: inline-block;
  color: #1391E6;
  text-decoration: underline;
}
.blog-single-main__text-first span {
  display: block;
  margin-top: 23px;
}

.blog-single-main__heading-second {
  font-size: 24px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #1391E6;
  padding-left: 27px;
  margin-top: 72px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .blog-single-main__heading-second {
    font-size: 18px;
    line-height: 1.7777777778;
    margin-top: 62px;
    padding-left: 22px;
  }
}
.blog-single-main__heading-second::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 100%;
  background-color: #1391E6;
}
@media screen and (max-width: 767px) {
  .blog-single-main__heading-second::after {
    width: 7px;
  }
}

.blog-single-main__img {
  margin: 30px auto 0;
  width: 100%;
  aspect-ratio: 670/420;
  background-color: #C2C2C2;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .blog-single-main__img {
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .blog-single-main__img {
    margin: 24px auto 0;
    max-width: 400px;
  }
}
.blog-single-main__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-single-main__heading-third {
  margin-top: 46px;
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #1391E6;
  font-weight: 700;
  padding-bottom: 10px;
  border-bottom: 1px solid #1391E6;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .blog-single-main__heading-third {
    font-size: 16px;
    margin-top: 42px;
    padding-bottom: 8px;
  }
}

.blog-single-main__text-third {
  margin-top: 15px;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .blog-single-main__text-third {
    margin-top: 17px;
  }
}

.blog-single-main__heading-fourth {
  margin-top: 59px;
  color: #1391E6;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .blog-single-main__heading-fourth {
    font-size: 14px;
  }
}

.blog-single-main__text-fourth {
  margin-top: 15px;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .blog-single-main__text-fourth {
    margin-top: 17px;
  }
}

.blog-single-main__items {
  margin-top: 21px;
}

.blog-single-main__item {
  padding-left: 30px;
  position: relative;
}
.blog-single-main__item::after {
  position: absolute;
  content: "";
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #000000;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .blog-single-main__item::after {
    left: 20px;
    width: 3px;
    height: 3px;
  }
}
.blog-single-main__item:not(:first-child) {
  margin-top: 18px;
}

/* -----------------------------pagination ------------------------*/
.pagination.blog-single-pagination {
  margin-top: 104px;
  margin-left: -11px;
}
@media screen and (max-width: 767px) {
  .pagination.blog-single-pagination {
    margin-top: 43px;
    margin-left: 0;
  }
}

.blog-single-page-numbers a {
  text-align: center;
  width: 90px;
  padding: 10px 0;
  border: 1px solid #1391E6;
  border-radius: 4px;
  color: #1391E6;
  transition: color 0.3s, background 0.3s ease 0s;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .blog-single-page-numbers a {
    padding: 12px 0;
    font-size: 14px;
    width: 95px;
  }
}
@media screen and (max-width: 374px) {
  .blog-single-page-numbers a {
    width: 90px;
    padding: 10px 0;
    font-size: 14px;
  }
}
.blog-single-page-numbers a:hover {
  color: #FFFFFF;
  background-color: #1391E6;
}

.blog-single-page-numbers.prev a,
.blog-single-page-numbers.next a {
  width: 124px;
  position: relative;
  background-color: #1391E6;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .blog-single-page-numbers.prev a,
.blog-single-page-numbers.next a {
    width: 95px;
    font-size: 14px;
  }
}
.blog-single-page-numbers.prev a::after,
.blog-single-page-numbers.next a::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-size: contain;
  z-index: 20;
  transition: background 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .blog-single-page-numbers.prev a::after,
.blog-single-page-numbers.next a::after {
    width: 12px;
    height: 12px;
  }
}

.blog-single-page-numbers.prev a {
  padding-left: 1.5rem;
}
.blog-single-page-numbers.prev a::after {
  left: 15px;
  transition: left 0.3s ease 0s;
  background-image: url(../img/icon-arrow-left.png);
}
@media screen and (max-width: 374px) {
  .blog-single-page-numbers.prev a::after {
    left: 15px;
  }
}
.blog-single-page-numbers.prev a:hover::after {
  left: 10px;
}
@media screen and (max-width: 767px) {
  .blog-single-page-numbers.prev a {
    padding-left: 15px;
  }
  .blog-single-page-numbers.prev a::after {
    left: 10px;
  }
  .blog-single-page-numbers.prev a:hover::after {
    left: 6px;
  }
}

.blog-single-page-numbers.next a {
  padding-right: 1.5rem;
}
.blog-single-page-numbers.next a::after {
  right: 15px;
  transition: right 0.3s ease 0s;
  background-image: url(../img/icon-arrow-right.png);
}
@media screen and (max-width: 374px) {
  .blog-single-page-numbers.next a::after {
    right: 15px;
  }
}
.blog-single-page-numbers.next a:hover::after {
  right: 10px;
}
@media screen and (max-width: 767px) {
  .blog-single-page-numbers.next a {
    padding-right: 15px;
  }
  .blog-single-page-numbers.next a::after {
    right: 10px;
  }
  .blog-single-page-numbers.next a:hover::after {
    right: 6px;
  }
}

/* ------------------- header ----------------------------------------*/
.header__item.is-contact a::before {
  background-image: url(../img/icon-contact-blue.png);
}

/* ------------------- contact-top ----------------------------------------*/
.contact-top__container {
  background-image: url(../img/contact-top.jpg);
}
@media screen and (max-width: 767px) {
  .contact-top__container {
    background-image: url(../img/contact-top-sp.jpg);
  }
}

/* ------------------- contact-form ----------------------------------------*/
.contact-form {
  padding: 157px 0 99px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding: 96px 0 102px;
  }
}

.form__inner {
  max-width: 808px;
}
@media screen and (max-width: 767px) {
  .form__inner {
    padding: 0 20px;
  }
}

.form__form-container {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .form__form-container {
    margin-top: 66px;
  }
}

[type=text],
[type=email],
[type=tel],
[type=submit],
[type=date],
select,
textarea {
  box-shadow: none;
  border: none;
  resize: none;
  background-color: #F6F6F6;
  padding: 10px 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
  height: 48px;
}
[type=text]::-moz-placeholder, [type=email]::-moz-placeholder, [type=tel]::-moz-placeholder, [type=submit]::-moz-placeholder, [type=date]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #C2C2C2;
}
[type=text]:-ms-input-placeholder, [type=email]:-ms-input-placeholder, [type=tel]:-ms-input-placeholder, [type=submit]:-ms-input-placeholder, [type=date]:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #C2C2C2;
}
[type=text]::placeholder,
[type=email]::placeholder,
[type=tel]::placeholder,
[type=submit]::placeholder,
[type=date]::placeholder,
select::placeholder,
textarea::placeholder {
  color: #C2C2C2;
}

textarea {
  height: 200px;
}

.form__item {
  display: flex;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid #DDDDDD;
}
.form__item:last-child {
  border-bottom: 1px solid #DDDDDD;
}
@media screen and (max-width: 767px) {
  .form__item {
    flex-direction: column;
    margin: 0 auto;
    row-gap: 16px;
    max-width: 500px;
    padding: 27px 0;
  }
}
.form__item dt {
  width: 32.967032967%;
}
.form__item dt label {
  cursor: pointer;
}
.form__item dt span {
  position: relative;
  padding-right: 52px;
}
@media screen and (max-width: 767px) {
  .form__item dt span {
    padding-right: 48px;
  }
}
.form__item dt span::after {
  position: absolute;
  content: "必須";
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  padding: 5px 0;
  background-color: #EE5A6D;
  border-radius: 4px;
  font-size: 12px;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .form__item dt {
    width: 100%;
    max-width: 500px;
  }
}
.form__item dd {
  width: 67.032967033%;
}
@media screen and (max-width: 767px) {
  .form__item dd {
    width: 100%;
    max-width: 500px;
  }
}

.wpcf7-form-control-wrap {
  height: 100%;
  display: block;
}

.wpcf7-not-valid-tip {
  margin-top: 10px;
}

.form__btn {
  margin: 72px auto 0;
  max-width: 360px;
}
@media screen and (max-width: 767px) {
  .form__btn {
    margin: 69px auto 0;
    width: 273px;
  }
}
.form__btn [type=submit] {
  color: #1391E6;
  letter-spacing: 0.08em;
  border: 1px solid #1391E6;
  border-radius: 28px;
  background-color: #FFFFFF;
  transition: background 0.3s, color 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .form__btn [type=submit] {
    padding: 6px 0;
  }
}
.form__btn [type=submit]:hover {
  background-color: #1391E6;
  color: #FFFFFF;
}

/* ------------------- reserve-top ----------------------------------------*/
.section-top__bread .large-text {
  color: #393939;
}

/* ------------------- reserve-lead ----------------------------------------*/
.reserve-lead {
  margin-top: 86px;
}
@media screen and (max-width: 767px) {
  .reserve-lead {
    margin-top: 66px;
  }
}

.reserve-lead__inner {
  max-width: 900px;
}
@media screen and (max-width: 767px) {
  .reserve-lead__inner {
    max-width: 600px;
    padding: 0 20px;
  }
}

.reserve-lead__heading {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .reserve-lead__heading {
    font-size: 20px;
  }
}

.reserve-lead__tel {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .reserve-lead__tel {
    margin-top: 38px;
  }
}

.reserve-lead__time {
  font-size: 12px;
  color: #1391E6;
  margin-top: 7px;
  padding-left: 45px;
}

.reserve-lead__text {
  margin-top: 29px;
}

.reserve-lead__mail {
  margin-top: 44px;
}
@media screen and (max-width: 767px) {
  .reserve-lead__mail {
    margin-top: 39px;
  }
}

.reserve-lead__text.reserve-lead__text--mail {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .reserve-lead__text.reserve-lead__text--mail {
    margin-top: 30px;
  }
}

/* ------------------- reserve-form ----------------------------------------*/
.reserve-form {
  padding: 157px 0 160px;
}
@media screen and (max-width: 767px) {
  .reserve-form {
    padding: 87px 0 100px;
  }
}

.form__form-container.reserve-form__form-container {
  margin-top: 66px;
}

.wpcf7-form-control-wrap,
.wpcf7-form-control,
.wpcf7-list-item {
  display: block;
  height: 100%;
}

.wpcf7-form-control.wpcf7-radio,
.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  align-items: center;
  -moz-column-gap: 31px;
       column-gap: 31px;
  row-gap: 24px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .wpcf7-form-control.wpcf7-radio,
.wpcf7-form-control.wpcf7-checkbox {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}

.radio__body .wpcf7-list-item-label {
  cursor: pointer;
}

.radio__body [type=radio]:checked + .wpcf7-list-item-label {
  cursor: auto;
}

@media screen and (max-width: 767px) {
  .checkbox__body {
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.checkbox__body label {
  cursor: pointer;
}

.form__item dd.radio__body,
.form__item dd.checkbox__body {
  height: auto;
  padding: 7px 0;
}

[type=radio],
[type=checkbox] {
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.wpcf7-list-item-label {
  padding-left: 32px;
  position: relative;
  font-size: 14px;
}
.wpcf7-list-item-label::after, .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7-list-item-label::after {
  width: 24px;
  height: 24px;
  left: 0;
  border: 1px solid #1391E6;
}

[type=radio]:checked + span::before {
  width: 12px;
  height: 12px;
  background-color: #1391E6;
  left: 7px;
}

.wpcf7-form-control.wpcf7-checkbox span label .wpcf7-list-item-label::after, .wpcf7-form-control.wpcf7-checkbox span label .wpcf7-list-item-label::before {
  border-radius: 0;
}

[type=checkbox]:checked + span::before {
  width: 8px;
  height: 16px;
  background-color: #FFFFFF;
  top: calc(50% - 3px);
  left: 8px;
  border: 2px solid #1391E6;
  border-top: none;
  border-left: none;
  transform: translateY(-50%) rotate(45deg);
}

.form__item dt .checkbox__heading-main span {
  padding-right: 65px;
}

.checkbox__heading-detail {
  font-size: 11px;
  color: #888888;
  margin-top: 10px;
}

.select__body {
  position: relative;
}
.select__body::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 20px;
  top: 10px;
  transform: rotate(45deg);
  border: 2px solid #000000;
  border-top: none;
  border-left: none;
}

.form__item.date {
  padding: 10px 0 30px;
}

.date__body-wrapper {
  width: 67.032967033%;
}
@media screen and (max-width: 767px) {
  .date__body-wrapper {
    max-width: 500px;
    width: 100%;
    margin-top: -20px;
  }
}

.form__item dt.date__heading {
  margin-top: 20px;
}

.date__body-wrapper .date__body {
  width: 100%;
  margin-top: 21px;
}

[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  position: absolute;
}

[type=date] {
  display: flex;
  align-items: center;
}

/* ------------------- header ----------------------------------------*/
.header__item.is-top a::before {
  background-image: url(../img/icon-top-blue.png);
}

/* ------------------- top ----------------------------------------*/
.top {
  padding-top: 40px;
  padding-bottom: 0px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .top {
    margin-top: 40px;
  }
}

.top__inner,
.top-items__inner {
  max-width: 1284px;
  padding: 0 62px;
  height: 520px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top__inner,
.top-items__inner {
    padding: 0 30px;
    height: 447px;
  }
}
@media screen and (max-width: 376px) {
  .top__inner,
.top-items__inner {
    padding: 0 15px;
    height: 447px;
  }
}

.top__swiper,
.top__swiper-wrapper,
.top__swiper-slide {
  height: 520px;
}
@media screen and (max-width: 767px) {
  .top__swiper,
.top__swiper-wrapper,
.top__swiper-slide {
    height: 447px;
  }
}

.top__swiper {
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .top__swiper {
    border-radius: 0;
  }
}

.top__swiper-slide {
  position: relative;
}
.top__swiper-slide::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.top__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top__swiper-button-prev,
.top__swiper-button-next {
  position: absolute;
  width: 48px;
  height: 48px;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);
  z-index: 20;
  border: 1px solid transparent;
  transition: border 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .top__swiper-button-prev,
.top__swiper-button-next {
    width: 32px;
    height: 32px;
  }
}
.top__swiper-button-prev::after,
.top__swiper-button-next::after {
  opacity: 0;
  visibility: hidden;
}
.top__swiper-button-prev::before,
.top__swiper-button-next::before {
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #C2C2C2;
  border-top: none;
  border-right: none;
  transition: border 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .top__swiper-button-prev::before,
.top__swiper-button-next::before {
    width: 12px;
    height: 12px;
  }
}
.top__swiper-button-prev:hover,
.top__swiper-button-next:hover {
  border: 1px solid #1391E6;
}
.top__swiper-button-prev:hover::before,
.top__swiper-button-next:hover::before {
  border: 2px solid #1391E6;
  border-top: none;
  border-right: none;
}

.top__swiper-button-prev {
  left: 62px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top__swiper-button-prev {
    left: 29px;
    margin-top: -17px;
  }
}
@media screen and (max-width: 376px) {
  .top__swiper-button-prev {
    left: 15px;
    margin-top: -17px;
  }
}
.top__swiper-button-prev::before {
  transform: rotate(45deg);
  left: 19px;
}
@media screen and (max-width: 767px) {
  .top__swiper-button-prev::before {
    left: 13px;
  }
}

.top__swiper-button-next {
  right: 62px;
  transform: translateX(50%);
}
@media screen and (max-width: 767px) {
  .top__swiper-button-next {
    right: 29px;
    margin-top: -17px;
  }
}
@media screen and (max-width: 376px) {
  .top__swiper-button-next {
    right: 15px;
    margin-top: -17px;
  }
}
.top__swiper-button-next::before {
  transform: rotate(-135deg);
  left: 10px;
}
@media screen and (max-width: 767px) {
  .top__swiper-button-next::before {
    left: 6px;
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  left: 30px;
  bottom: 4px;
  width: 0;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    left: 10px;
    bottom: 20px;
    row-gap: 8px;
  }
}
@media screen and (max-width: 376px) {
  .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    left: 2px;
    bottom: 20px;
    row-gap: 8px;
  }
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 767px) {
  .swiper-pagination-bullet {
    width: 6px;
    height: 6px;
  }
}

.top__message {
  position: absolute;
  font-size: 32px;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2;
  left: 122px;
  bottom: 52px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .top__message {
    font-size: 20px;
    left: 40px;
    bottom: 40px;
  }
}
@media screen and (max-width: 376px) {
  .top__message {
    font-size: 20px;
    left: 30px;
    bottom: 40px;
  }
}
.top__message span {
  padding-bottom: 5px;
  border-bottom: 4px dotted #FFFFFF;
}

.top-items__inner {
  height: auto;
}

.top__items {
  display: flex;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top__items {
    margin-top: -30px;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 767px) {
  .top__items {
    flex-direction: column-reverse;
    margin-top: -24px;
  }
}

.news {
  width: 50.1724137931%;
  padding-left: 41px;
  margin-top: 23px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .news {
    max-width: 600px;
    width: 100%;
    margin: 50px auto 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .news {
    width: 100%;
    max-width: 500px;
    margin: 34px auto 0;
    padding-left: 0;
  }
}

.news__heading {
  display: flex;
  align-items: center;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .news__heading {
    padding-left: 17px;
  }
}

.news__title {
  font-size: 20px;
  letter-spacing: 0.1em;
  position: relative;
}
.news__title::after {
  position: absolute;
  content: "news";
  text-transform: uppercase;
  font-size: 12px;
  color: #1391E6;
  font-weight: 700;
  bottom: 0;
  right: -53px;
  letter-spacing: 0.1em;
}

.news__past {
  margin-left: auto;
  margin-top: 5px;
  font-size: 12px;
  color: #888888;
  padding-bottom: 2px;
  border-bottom: 1px solid #888888;
}
@media screen and (max-width: 767px) {
  .news__past {
    font-size: 11px;
    margin-top: 8px;
  }
}

.news__items {
  margin-top: 13px;
}
@media screen and (max-width: 767px) {
  .news__items {
    margin-top: 10px;
  }
}

.news__item {
  display: flex;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid #393939;
  border-bottom: 1px solid #393939;
  position: relative;
  transition: color 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .news__item {
    padding: 15px 0;
  }
}
.news__item::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 13px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border: 1px solid #393939;
  border-top: none;
  border-left: none;
  transition: border 0.3s, right 0.3s ease 0s;
}
.news__item::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 1px;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #393939;
  transition: background 0.3s, right 0.3s ease 0s;
}
.news__item:hover {
  color: #1391E6;
}
.news__item:hover::after {
  border: 1px solid #1391E6;
  border-top: none;
  border-left: none;
  right: 8px;
}
.news__item:hover::before {
  background-color: #1391E6;
  right: 7px;
}

.news__date {
  width: 80px;
  font-size: 12px;
  padding-left: 12px;
}
@media screen and (max-width: 767px) {
  .news__date {
    padding-left: 10px;
  }
}

.news__text {
  padding: 0 30px 0 24px;
  font-size: 14px;
}

.top__table {
  width: 49.8275862069%;
  padding-left: 60px;
  margin-top: -36px;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top__table {
    width: 100%;
    padding-left: 0;
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .top__table {
    width: 100%;
    max-width: 500px;
    padding-left: 0;
    margin: 0 auto;
  }
}
.top__table .table__container {
  width: 92.0849420849%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top__table .table__container {
    margin: 0 auto;
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .top__table .table__container {
    width: 100%;
  }
}

/* ------------------- concept ----------------------------------------*/
.concept {
  margin-top: 60px;
}

.concept__btn {
  width: 176px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .concept__btn {
    margin: 40px auto 0;
    width: 162px;
  }
}

/* ------------------- recommend ----------------------------------------*/
.recommend {
  padding: 121px 0 136px;
}
@media screen and (max-width: 767px) {
  .recommend {
    padding: 91px 0 96px;
  }
}

@media screen and (max-width: 374px) {
  .n-sp-show {
    display: block;
  }
}

.recommend__inner {
  max-width: 1042px;
}
@media screen and (max-width: 767px) {
  .recommend__inner {
    padding: 0 47px;
  }
}
@media screen and (max-width: 376px) {
  .recommend__inner {
    padding: 0 20px;
  }
}

.recommend__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 57px;
  margin: 59px auto 0;
}
@media screen and (max-width: 767px) {
  .recommend__items {
    margin: 37px auto 0;
  }
}

.item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item__heading {
  width: 177px;
  height: 32px;
}

.item__img {
  width: 220px;
  height: 220px;
  margin-top: 15px;
}

.item__lead-container {
  background-color: #1391E6;
  width: 276px;
  border-radius: 22px;
  margin-top: -20px;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .item__lead-container {
    margin-top: -23px;
  }
}

.item__lead {
  font-size: 20px;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  font-weight: 700;
  padding: 11px;
}

.item__arrow {
  position: relative;
  transform: translateX(-50%);
  height: 10px;
  width: 10px;
  background-color: #1391E6;
  border-top-left-radius: 50%;
  transform: rotate(210deg) skewY(30deg) scaleX(0.86666);
}
.item__arrow::before {
  content: "";
  height: 10px;
  width: 10px;
  top: 0;
  left: 0;
  background-color: #1391E6;
  position: absolute;
  transform: skewX(-45deg) translateX(50%);
}
.item__arrow::after {
  content: "";
  height: 10px;
  width: 10px;
  top: 0;
  left: 0;
  background-color: #1391E6;
  position: absolute;
  transform: skewY(-45deg) translateY(50%);
}

.item__text {
  padding: 25px 0px 0px 0px;
}
@media screen and (max-width: 767px) {
  .item__text {
    padding: 25px 27px 0 27px;
  }
}
.item__text span {
  color: #EE5A6D;
}

/* ------------------- guidance ----------------------------------------*/
.guidance {
  background-color: #DFF1FD;
  position: relative;
}

.guidance__inner {
  max-width: 1080px;
  padding-bottom: 82px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .guidance__inner {
    padding: 24px 20px 59px 20px;
  }
}

.guidance__contents {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 20px;
}
@media screen and (max-width: 767px) {
  .guidance__contents {
    grid-template-columns: repeat(auto-fit, minmax(335px, 1fr));
    margin-top: 36px;
  }
}
@media screen and (max-width: 374px) {
  .guidance__contents {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

.content {
  position: relative;
  width: 460px;
  height: 288px;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .content {
    width: 335px;
    height: 210px;
  }
}
@media screen and (max-width: 374px) {
  .content {
    width: 280px;
    height: 176px;
  }
}
.content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  z-index: 20;
  transition: background 0.3s ease 0s;
}
@media screen and (max-width: 767px) {
  .content::after {
    height: 100%;
  }
}
@media screen and (max-width: 376px) {
  .content::after {
    height: 100%;
  }
}
.content::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  outline: 2px solid transparent;
  z-index: 50;
  outline-offset: -9px;
  border-radius: 20px;
  transition: outline 0.3s ease 0s;
}
.content:hover::after {
  background-color: rgba(0, 0, 0, 0.4);
}
.content:hover::before {
  outline: 2px solid #FFFFFF;
}

.content__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.content__heading,
.content__text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.08em;
  line-height: 1.75;
  width: 100%;
  z-index: 30;
}

.content__heading {
  top: 76px;
  font-size: 28px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .content__heading {
    font-size: 20px;
    top: 60px;
  }
}
@media screen and (max-width: 374px) {
  .content__heading {
    top: 40px;
  }
}
.content__heading::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 2px;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
}

.content__text {
  top: 158px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .content__text {
    font-size: 12px;
    top: 128px;
  }
}
@media screen and (max-width: 374px) {
  .content__text {
    top: 100px;
  }
}

.guidance__text-container {
  margin-top: 60px;
  padding: 37px 40px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .guidance__text-container {
    margin-top: 19px;
    padding: 19px;
  }
}

.guidance__text {
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .guidance__text {
    line-height: 1.7142857143;
    font-size: 14px;
  }
}
.guidance__text span {
  color: #EE5A6D;
}

/* ------------------- blog ----------------------------------------*/
.blog {
  padding: 160px 0 163px;
}
@media screen and (max-width: 767px) {
  .blog {
    padding: 92px 0 103px;
  }
}

.blog__inner {
  max-width: 1088px;
}
@media screen and (max-width: 767px) {
  .blog__inner {
    padding: 0 20px;
  }
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 55px;
  margin-top: 79px;
}
@media screen and (max-width: 767px) {
  .cards {
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .cards {
    margin-top: 45px;
  }
}
.cards li {
  width: 300px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .cards li {
    width: 100%;
  }
}

.card {
  box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .card {
    box-shadow: none;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
.card img {
  transition: transform 0.3s ease 0s;
}
.card .card__heading {
  transition: color 0.3s ease 0s;
}
.card:hover img {
  transform: scale(1.05);
}
.card:hover .card__heading {
  color: #1391E6;
}

.card.card--new {
  position: relative;
}
.card.card--new::after {
  position: absolute;
  content: "new";
  text-transform: uppercase;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -20px;
  left: -10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #EE5A6D;
}
@media screen and (max-width: 767px) {
  .card.card--new::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .card.card--new .card__img {
    position: relative;
    overflow: visible;
  }
  .card.card--new .card__img::after {
    position: absolute;
    content: "new";
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -10px;
    left: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #EE5A6D;
  }
}

.card__img {
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  width: 100%;
  height: 188px;
}
@media screen and (max-width: 767px) {
  .card__img {
    border-radius: 0;
    height: 101px;
    width: 133px;
  }
}
@media screen and (max-width: 376px) {
  .card__img {
    height: auto;
    aspect-ratio: 133/101;
  }
}
.card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.card__body {
  padding: 0 24px 15px 24px;
  margin-top: -14px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .card__body {
    width: 60.2985074627%;
    padding: 9px 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: -12px;
  }
}

.card__category {
  background-color: #1391E6;
  color: #FFFFFF;
  border-radius: 14px;
  text-align: center;
  display: inline-block;
  font-size: 11px;
  padding: 6px 0.5rem;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border 0.3s ease 0s;
}
.card__category:hover {
  background-color: #FFFFFF;
  color: #1391E6;
  border: 1px solid #1391E6;
}
@media screen and (max-width: 767px) {
  .card__category {
    font-size: 10px;
    padding: 3px 0.5rem;
  }
}

.card__heading {
  line-height: 1.5;
  text-align: left;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .card__heading {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    font-size: 14px;
    line-height: 1.4285714286;
  }
}

.card__date {
  font-size: 11px;
  color: #888888;
  text-align: left;
  display: block;
  margin-top: 8px;
}

.blog__btn {
  width: 274px;
  margin: 66px auto 0;
}
@media screen and (max-width: 767px) {
  .blog__btn {
    width: 262px;
    margin: 40px auto 0;
  }
}/*# sourceMappingURL=style.css.map */