@charset "UTF-8";
/*===========================================================
# フォント
===========================================================*/
/*===========================================================
# 色
===========================================================*/
/*===========================================================
# レイアウト幅
===========================================================*/
/*===========================================================
# ブレークポイント
===========================================================*/
/*===========================================================
# リセットCSS
===========================================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
button,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

html {
  line-height: 1;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

li,
dd {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

/*===========================================================
# 基本設定
===========================================================*/
html {
  font-size: 62.5%;
}

body {
  background: #fff;
  color: #393939;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.5;
  font-weight: 500;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

/*===========================================================
# main
===========================================================*/
main {
  margin: 0 auto;
  margin-top: 80px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  main {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  main {
    margin-top: 60px;
  }
}

/*===========================================================
# common
===========================================================*/
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .is-sp {
    display: none;
  }
}
@media (min-width: 1201px) {
  .is-sp {
    display: none;
  }
}
.util-link {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1391e6;
  background: #fff;
  border: 1px solid #1391e6;
  border-radius: 24px;
  padding: 10px 46px;
  position: relative;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .util-link {
    padding: 8px 40px;
  }
}
.util-link:hover {
  background: #1391e6;
  color: #fff;
}
.util-link::after {
  content: "";
  position: absolute;
  background-image: url(../img/icon-arrow-blue-btn.svg);
  background-size: contain;
  right: 12px;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .util-link::after {
    right: 10px;
  }
}
.util-link:hover::after {
  background-image: url(../img/arrow-right-white.svg);
  right: 5px;
}
@media (max-width: 767px) {
  .util-link:hover::after {
    right: 2px;
  }
}

.ttl-content {
  text-align: center;
}

.util-ttl {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0 95px;
}
@media (max-width: 767px) {
  .util-ttl {
    font-size: 2rem;
    padding: 0 65px;
  }
}
.util-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background-image: url(../img/title-deco.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 72px;
  height: 20px;
}
@media (max-width: 767px) {
  .util-ttl::before {
    width: 50px;
  }
}
.util-ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: url(../img/title-deco.png) no-repeat center center/contain;
  width: 72px;
  height: 20px;
}
@media (max-width: 767px) {
  .util-ttl::after {
    width: 50px;
  }
}

/*===========================================================
# header
===========================================================*/
.header {
  background: #fff;
  height: 80px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.header img {
  width: 100%;
  height: inherit;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header {
    height: 60px;
  }
}
@media (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: inherit;
  width: 100%;
  padding: 0 37px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-inner {
    padding: 16px 20px;
    display: block;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding: 8px 20px;
    display: block;
  }
}

.header-logo {
  margin-top: 8px;
}

.header-logoLink {
  display: block;
  max-width: 270px;
  width: 100%;
}
.header-nav {
  margin-left: auto;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .header-nav {
    display: none;
  }
}

.header-navList {
  display: flex;
  align-items: center;
}

.header-navItem + .header-navItem {
  margin-left: 23px;
}

.header-navLink path {
  transition: all 0.3s ease 0s;
}

.header-navLink {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: inherit;
  transition: all 0.3s ease 0s;
}
.header-navLink.is-active {
  color: #1391e6;
}
.header-navLink.is-active path {
  fill: #1391e6;
}
.header-navLink:hover {
  color: #1391e6;
}
.header-navLink:hover path {
  fill: #1391e6;
}
.header-navLink:hover span::after {
  width: 20px;
}
.header-navLink.is-active span::after {
  width: 20px;
  background: #1391e6;
}
.header-navLink span {
  margin-top: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  position: relative;
}
.header-navLink span.is-active {
  color: #1391e6;
}
.header-navLink span.is-active::after {
  width: 20px;
  background: #1391e6;
}
.header-navLink span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #1391e6;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
}

.header-right {
  margin-left: 30px;
}

.header-address {
  font-size: 1.2rem;
  padding-left: 35px;
}

.header-rightBody {
  display: flex;
  align-items: center;
}

.header-tell {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 40px;
  color: #1391e6;
  margin-left: 4px;
}

/* drawer
-------------------------------------------*/
.drawer-icon {
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 300;
  display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .drawer-icon {
    display: block;
  }
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-open .drawer-icon__bar1 {
  transform: translateY(8px) rotate(-45deg);
  background: #fff;
}
.drawer-icon.is-open .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-open .drawer-icon__bar3 {
  transform: translateY(-8px) rotate(45deg);
  background: #fff;
}

.drawer-icon__bars {
  width: 28px;
  height: 18px;
  display: block;
  position: relative;
  transition: all 0.3s ease 0s;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 28px;
  height: 3px;
  border-radius: 50px;
  top: 0;
  left: 0;
  background: #1391e6;
  transition: all 0.3s ease 0s;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

/* drawer-content */
.drawer-content {
  padding: 15px 20px;
  display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .drawer-content {
    background: #0060a0;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 299;
  }
  .drawer-content.is-show {
    display: block;
  }
}
@media (max-width: 767px) {
  .drawer-content {
    background: #0060a0;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 299;
  }
  .drawer-content.is-show {
    display: block;
  }
}

.drawer-logoLink {
  display: inline-block;
}

.drawer-content__items {
  max-width: 255px;
  margin: 0 auto;
  padding-top: 54px;
}

.drawer-contentLink {
  color: #fff;
  width: 100%;
  height: inherit;
  display: block;
  padding-top: 11px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  border-top: 1px dashed #fff;
  position: relative;
}
.drawer-contentLink:nth-last-child(1) {
  border-bottom: 1px dashed #fff;
}
.drawer-contentLink path {
  fill: #fff;
}
.drawer-contentLink span {
  font-size: 1.4rem;
  padding-left: 14px;
}
.drawer-contentLink::after {
  content: "";
  position: absolute;
  top: 28%;
  right: 0;
  width: 16px;
  height: 16px;
  background: url(../img/icon-right.svg) no-repeat center center/contain;
}

/*===========================================================
# mv
===========================================================*/
.mv {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .mv {
    padding-top: 20px;
  }
}

.mv-inner {
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .mv-inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media (max-width: 767px) {
  .mv-inner {
    max-width: 335px;
    padding-left: 0;
    padding-right: 0;
  }
}

.swiper {
  border-radius: 20px;
  position: relative;
}

.swiper-slide {
  position: relative;
}

.swiper-slide::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 20px;
}

.mv-picture {
  max-width: 1160px;
  margin: 0 auto;
  border-radius: 20px;
  position: relative;
}
.mv-content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mv-contentTtl {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .mv-contentTtl {
    font-size: 2.4rem;
    letter-spacing: 0.2em;
  }
}

.mv-contentSubTtl {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 20px;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .mv-contentSubTtl {
    font-size: 1.2rem;
  }
}

.mv-text {
  max-width: 415px;
  width: 100%;
  position: absolute;
  left: 60px;
  bottom: 52px;
  z-index: 10;
}
@media (max-width: 767px) {
  .mv-text {
    left: 20px;
    bottom: 40px;
    max-width: 265px;
  }
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: -25px;
  bottom: 0;
}
@media (max-width: 767px) {
  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    left: -18px;
    bottom: 16px;
  }
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-top: 5px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-top: 3px;
    margin-bottom: 3px;
  }
}

.swiper-button-next {
  position: absolute;
  width: 66px;
  height: 66px;
  margin-top: -33px;
  background-image: url(../img/arrow-right.png);
  background-size: contain;
  color: transparent;
  top: 50%;
  right: -34px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .swiper-button-next {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    right: 15px;
  }
}
@media (max-width: 767px) {
  .swiper-button-next {
    width: 46px;
    height: 46px;
    margin-top: -23px;
    right: -20px;
  }
}
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  position: absolute;
  width: 66px;
  height: 66px;
  margin-top: -33px;
  background-image: url(../img/arrow-left.png);
  background-size: contain;
  color: transparent;
  top: 50%;
  left: -34px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .swiper-button-prev {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    left: 15px;
  }
}
@media (max-width: 767px) {
  .swiper-button-prev {
    width: 46px;
    height: 46px;
    margin-top: -23px;
    left: -20px;
  }
}
.swiper-button-prev::after {
  display: none;
}

/*===========================================================
# about-mv
===========================================================*/
.about-mv {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .about-mv {
    padding-top: 20px;
  }
}

.about-mv-staff {
  padding-top: 30px;
}
@media (max-width: 767px) {
  .about-mv-staff {
    padding-top: 20px;
  }
}

.about-mv-inner {
  position: relative;
}
@media (max-width: 767px) {
  .about-mv-inner {
    max-width: 335px;
    margin: 0 auto;
  }
}

.about-mv-picture {
  margin: 0 auto;
  border-radius: 12px;
  position: relative;
  width: 91%;
  height: 340px;
}
@media (max-width: 767px) {
  .about-mv-picture {
    height: 188px;
    width: 100%;
  }
}
.about-mv-picture img {
  height: inherit;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}

.about-mv-picture::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: inherit;
}

.about-mv-content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-mv-contentTtl {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
}
@media (max-width: 767px) {
  .about-mv-contentTtl {
    font-size: 2.4rem;
    letter-spacing: 0.2em;
  }
}

.about-mv-contentSubTtl {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 20px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .about-mv-contentSubTtl {
    font-size: 1.2rem;
    margin-top: 15px;
  }
}

/* breadcrumb
-------------------------------------------*/
.breadcrumb {
  margin-top: 14px;
  margin-left: 7%;
  margin-right: 7%;
  font-size: 1.2rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .breadcrumb {
    margin-top: 10px;
    margin-left: 5%;
    margin-right: 5%;
  }
}
.breadcrumb .home {
  color: #c2c2c2;
}
.breadcrumb span {
  padding-right: 4px;
}
.breadcrumb span:nth-child(n+2) {
  padding-left: 5px;
}

.breadcrumb-link {
  font-size: 1.2rem;
  font-weight: 500;
  color: #c2c2c2;
}

.breadcrumb-tag {
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 20px;
  margin-left: 6px;
  position: relative;
}
.breadcrumb-tag::before {
  content: ">";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 12px;
  height: 17px;
}

.page-contact-link {
  color: #c2c2c2;
}

/*===========================================================
# news
===========================================================*/
.news {
  height: 132px;
}
@media (max-width: 767px) {
  .news {
    height: 236px;
  }
}

.news-inner {
  padding: 0 100px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .news-inner {
    padding: 0 40px;
  }
}
@media (max-width: 767px) {
  .news-inner {
    padding: 0 20px;
  }
}

.news-content {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}
@media (max-width: 767px) {
  .news-content {
    display: block;
  }
}

.news-picture {
  max-width: 477px;
  width: 100%;
  position: relative;
  margin-top: -35px;
  z-index: 1;
  margin-left: 62px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .news-picture {
    margin-left: 15px;
    margin-top: -15px;
  }
}
@media (max-width: 767px) {
  .news-picture {
    height: 116px;
    margin-left: auto;
    margin-top: -25px;
  }
}

.news-pictureItem {
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.news-pictureItem img {
  width: 100%;
  position: relative;
  z-index: -1;
}

.news-message {
  max-width: 538px;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .news-message {
    margin-top: 40px;
  }
}

.news-head {
  display: flex;
  align-items: center;
  padding-left: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #393939;
}
@media (max-width: 767px) {
  .news-head {
    padding-left: 16px;
    padding-bottom: 5px;
  }
}

.news-headTtl {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-right: 50px;
  position: relative;
}
@media (max-width: 767px) {
  .news-headTtl {
    padding-right: 47px;
    letter-spacing: 0.08em;
  }
}
.news-headTtl::after {
  content: "NEWS";
  position: absolute;
  color: #1391e6;
  width: 37px;
  height: 17px;
  font-size: 1.2rem;
  right: 0;
  bottom: 0;
}
@media (max-width: 767px) {
  .news-headTtl::after {
    width: 34px;
    font-size: 1.1rem;
    height: 16px;
  }
}

.news-headItem {
  margin-left: auto;
}
@media (max-width: 767px) {
  .news-headItem {
    margin-top: 3px;
  }
}

.news-headLink {
  color: #888888;
  font-size: 1.2rem;
  font-weight: 500;
  border-bottom: 1px solid #888888;
}
@media (max-width: 767px) {
  .news-headLink {
    font-size: 1.1rem;
  }
}

.news-body {
  padding: 8px 12px;
  height: 40px;
  border-bottom: 1px solid #393939;
}
@media (max-width: 767px) {
  .news-body {
    padding: 12px 6px 12px 4px;
    height: 45px;
  }
}

.news-bodyLink {
  display: block;
  transition: all 0.3s ease 0s;
  position: relative;
  padding-right: 22px;
}
.news-bodyLink:hover::before {
  border-top-color: #1391e6;
  border-right-color: #1391e6;
  right: -10px;
}
.news-bodyLink:hover::after {
  background: #1391e6;
  right: -10px;
}
.news-bodyLink::before {
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -3px;
  width: 10px;
  height: 10px;
  border-top: 1px solid #393939;
  border-right: 1px solid #393939;
  transform: rotate(45deg);
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .news-bodyLink::before {
    right: 1px;
  }
}
.news-bodyLink::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  right: -3px;
  width: 13px;
  height: 1px;
  background: #393939;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .news-bodyLink::after {
    right: 1px;
  }
}
.news-bodyLink:hover .news-bodyDate {
  color: #1391e6;
}
.news-bodyLink:hover .news-bodyText {
  color: #1391e6;
}

.news-bodyItem {
  display: flex;
  align-items: center;
}

.news-bodyDate {
  font-size: 1.2rem;
  font-weight: 500;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .news-bodyDate {
    margin-left: 3px;
    letter-spacing: 0.02em;
  }
}

.news-bodyText {
  font-size: 1.4rem;
  font-weight: 500;
  margin-left: 24px;
  transition: all 0.3s ease 0s;
}

/*===========================================================
# medicalBtn
===========================================================*/
.medicalBtn {
  margin-top: 77px;
}
@media (max-width: 767px) {
  .medicalBtn {
    margin-top: 63px;
  }
}

.medicalBtn-inner {
  max-width: 998px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .medicalBtn-inner {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .medicalBtn-inner {
    padding: 0 20px;
  }
}

.medicalBtn-item + .medicalBtn-item {
  margin-top: 76px;
}
@media (max-width: 767px) {
  .medicalBtn-item + .medicalBtn-item {
    margin-top: 83px;
  }
}

.medicalBtn-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .medicalBtn-ttl {
    font-size: 2rem;
  }
}

.medicalBtn-tag {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  border-radius: 24px;
  padding: 8px 12px;
  margin-left: 20px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .medicalBtn-tag {
    margin-left: 22px;
  }
}

.-blue {
  background: #1391e6;
}

.-red {
  background: #ee5a6d;
}

.medicalBtn-list {
  margin-top: 29px;
  display: flex;
  flex-wrap: wrap;
}
.medicalBtn-list + .medicalBtn-list {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .medicalBtn-list {
    margin-top: 32px;
    justify-content: center;
  }
}

@media (min-width: 1201px) {
  .medicalBtn-listItem + .medicalBtn-listItem {
    margin-left: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .medicalBtn-listItem {
    width: 25%;
  }
  .medicalBtn-listItem + .medicalBtn-listItem {
    margin-left: 16px;
  }
}
@media (max-width: 767px) {
  .medicalBtn-listItem {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .medicalBtn-listItem + .medicalBtn-listItem {
    margin-top: 14px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .-special-listItem {
    width: 30%;
  }
  .-special-listItem:nth-child(3n+1) {
    margin-left: 0;
  }
  .-special-listItem:nth-child(n+4) {
    margin-top: 16px;
  }
}

.medicalBtn-link {
  width: 100%;
  text-align: center;
  display: inline-block;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #1391e6;
  border: 2px solid #1391e6;
  border-radius: 12px;
  padding: 18px 28px;
  transition: all 0.3s ease 0s;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .medicalBtn-link {
    padding: 18px 0;
  }
}
@media (max-width: 767px) {
  .medicalBtn-link {
    width: 100%;
    font-size: 2rem;
    padding: 14px 88px;
    text-align: center;
  }
}
.medicalBtn-link span {
  position: relative;
  top: 0; /* spanの位置 */
  transition: all 0.3s ease 0s;
}
.medicalBtn-link span::after {
  /* v矢印 */
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-left: 2px solid #1391e6;
  border-bottom: 2px solid #1391e6;
  bottom: -10px;
  left: 50%;
  transform: rotate(-45deg) translateX(-50%);
  opacity: 0; /* 消しておく */
}
.medicalBtn-link:hover span::after {
  opacity: 1; /* aタグhoverでv矢印表示 */
}
.medicalBtn-link:hover span {
  top: -10px; /* aタグhoverでspanタグ上に移動 */
}
.medicalBtn-link:hover {
  background: #dff1fd;
}

/*===========================================================
# concept
===========================================================*/
.concept {
  margin-top: 60px;
  height: 725px;
}
@media (max-width: 767px) {
  .concept {
    height: auto;
  }
}

.concept-inner {
  position: relative;
  overflow: hidden;
  height: inherit;
}
.concept-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 33%;
  background-image: url(../img/concept-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 725px;
  width: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  .concept-inner::before {
    background-image: url(../img/concept-bg_sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 310px;
    left: 2%;
  }
}

.concept-content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding-top: 180px;
}
@media (max-width: 767px) {
  .concept-content {
    display: block;
    padding-top: 110px;
  }
}

.concept-message {
  margin-left: 95px;
  width: 32%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .concept-message {
    margin-left: 40px;
    width: 40%;
  }
}
@media (max-width: 767px) {
  .concept-message {
    margin-left: 20px;
    margin-right: 20px;
    width: 89%;
  }
}

.concept-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5714285714;
  margin-top: 76px;
  position: relative;
}
@media (max-width: 767px) {
  .concept-ttl {
    margin-top: 30px;
    font-size: 2rem;
    line-height: 1.6;
  }
}
.concept-ttl::before {
  content: "CONCEPT";
  position: absolute;
  top: -40px;
  left: 0;
  width: 72px;
  height: 19px;
  color: #1391e6;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .concept-ttl::before {
    font-size: 1.1rem;
    width: 56px;
    height: 16px;
    top: -30px;
  }
}

.concept-text {
  margin-top: 40px;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media (max-width: 767px) {
  .concept-text {
    margin-top: 30px;
  }
}

.concept-linkBox {
  margin-top: 35px;
}
@media (max-width: 767px) {
  .concept-linkBox {
    text-align: center;
  }
}

.concept-picture {
  width: 50%;
  position: relative;
  max-height: 438px;
  height: 100%;
  overflow: hidden;
  border-radius: 0 20px 20px 0;
}
@media (max-width: 767px) {
  .concept-picture {
    margin-top: 40px;
    max-height: 230px;
    width: 90%;
  }
}
.concept-picture img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 438px;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (max-width: 767px) {
  .concept-picture img {
    height: 230px;
  }
}

/*===========================================================
# policy
===========================================================*/
.policy {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .policy {
    margin-top: 58px;
  }
}

.policy-inner {
  position: relative;
  overflow: hidden;
  height: 725px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .policy-inner {
    margin-top: 40px;
  }
}
.policy-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 33%;
  background-image: url(../img/concept-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 725px;
  width: 100%;
  z-index: -1;
}
@media (max-width: 767px) {
  .policy-inner::before {
    background-image: url(../img/concept-bg_sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 310px;
    left: 2%;
  }
}

.policy-content {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding-top: 180px;
}
@media (max-width: 767px) {
  .policy-content {
    display: block;
    padding-top: 110px;
  }
}

.policy-message {
  margin-left: 95px;
  width: 32%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .policy-message {
    margin-left: 40px;
    width: 40%;
  }
}
@media (max-width: 767px) {
  .policy-message {
    margin-left: 20px;
    margin-right: 20px;
    width: 89%;
  }
}

.policy-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5714285714;
  padding-top: 76px;
  position: relative;
}
@media (max-width: 767px) {
  .policy-ttl {
    padding-top: 28px;
    font-size: 2rem;
    line-height: 1.6;
  }
}
.policy-ttl::before {
  content: "POLICY";
  position: absolute;
  top: 32px;
  left: 0;
  width: 72px;
  height: 19px;
  color: #1391e6;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .policy-ttl::before {
    font-size: 1.1rem;
    width: 56px;
    height: 16px;
    top: -2px;
  }
}

.policy-text {
  margin-top: 35px;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media (max-width: 767px) {
  .policy-text {
    margin-top: 28px;
  }
}

.policy-picture {
  border-radius: 0 20px 20px 0;
  height: 100%;
  max-height: 438px;
  overflow: hidden;
  width: 50%;
}
@media (max-width: 767px) {
  .policy-picture {
    margin-top: 35px;
    max-height: 230px;
    width: 90%;
  }
}
.policy-picture img {
  height: 438px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  width: 100%;
}
@media (max-width: 767px) {
  .policy-picture img {
    height: 230px;
  }
}

/*===========================================================
# feature
===========================================================*/
.feature {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .feature {
    margin-top: 60px;
  }
}

.feature-content {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .feature-content {
    display: block;
  }
}

.feature-message {
  margin-right: 92px;
  width: 32%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .feature-message {
    margin-right: 40px;
    width: 40%;
  }
}
@media (max-width: 767px) {
  .feature-message {
    margin-left: 20px;
    margin-right: 20px;
    width: 89%;
  }
}

.feature-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5714285714;
  padding-top: 79px;
  position: relative;
}
@media (max-width: 767px) {
  .feature-ttl {
    padding-top: 32px;
    font-size: 2rem;
    line-height: 1.6;
  }
}
.feature-ttl::before {
  content: "FEATURE";
  position: absolute;
  top: 33px;
  left: 0;
  width: 72px;
  height: 19px;
  color: #1391e6;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .feature-ttl::before {
    font-size: 1.1rem;
    width: 56px;
    height: 16px;
    top: 0;
  }
}

.feature-text {
  margin-top: 36px;
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
@media (max-width: 767px) {
  .feature-text {
    margin-top: 28px;
  }
}

.feature-picture {
  border-radius: 20px 0px 0 20px;
  height: 100%;
  max-height: 438px;
  overflow: hidden;
  width: 50%;
}
@media (max-width: 767px) {
  .feature-picture {
    margin-top: 36px;
    max-height: 230px;
    width: 89%;
    margin-left: auto;
  }
}
.feature-picture img {
  height: 438px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  width: 100%;
}
@media (max-width: 767px) {
  .feature-picture img {
    height: 230px;
    width: 100%;
  }
}

/*===========================================================
# recommend
===========================================================*/
.recommend {
  margin-top: 120px;
}
@media (max-width: 767px) {
  .recommend {
    margin-top: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .recommend-inner {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .recommend-inner {
    padding: 0 18px;
  }
}

.recommend-list {
  margin-top: 55px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 966px;
  width: 100%;
}
@media (max-width: 767px) {
  .recommend-list {
    display: block;
    margin-top: 40px;
    max-width: 281px;
  }
}

.recommend-item {
  width: calc(33.3% - 41.3333333333px);
}
@media (max-width: 767px) {
  .recommend-item {
    width: 100%;
  }
}
.recommend-item + .recommend-item {
  margin-left: 62px;
}
@media (max-width: 767px) {
  .recommend-item + .recommend-item {
    margin-left: auto;
    margin-top: 60px;
  }
}

.recommend-pictureHead {
  max-width: 182px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .recommend-pictureHead {
    margin: 0 auto;
    max-width: 177px;
  }
}
.recommend-pictureBody {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .recommend-pictureBody {
    margin-top: 6px;
    width: 100%;
  }
}
.recommend-text {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  font-weight: 500;
  margin-top: 19px;
}
@media (max-width: 767px) {
  .recommend-text {
    margin-top: 20px;
  }
}

.text-attention {
  color: #ee5a6d;
}

/*===========================================================
# medical
===========================================================*/
.medical {
  margin-top: 140px;
  position: relative;
}
.medical::before {
  content: "";
  position: absolute;
  background: url(../img/deco-kirakira2-w.png) no-repeat center center/contain;
  bottom: 10%;
  left: 3%;
  width: 57px;
  height: 57px;
}
@media (max-width: 767px) {
  .medical::before {
    width: 25px;
    height: 25px;
    bottom: 5%;
  }
}
.medical::after {
  content: "";
  position: absolute;
  background: url(../img/deco-kirakira-w.png) no-repeat center center/contain;
  bottom: 7%;
  right: 1%;
  width: 126px;
  height: 138px;
}
@media (max-width: 767px) {
  .medical::after {
    width: 53px;
    height: 58px;
    bottom: 3%;
  }
}
@media (max-width: 767px) {
  .medical {
    margin-top: 100px;
  }
}

.medical-pictureTop {
  width: 100%;
}
@media (max-width: 767px) {
  .medical-pictureTop {
    height: 85px;
  }
}
.medical-pictureTop img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.medical-inner {
  background: #dff1fd;
  padding-bottom: 90px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .medical-inner {
    padding: 0 20px 94px 20px;
  }
}
@media (max-width: 767px) {
  .medical-inner {
    padding-top: 28px;
    padding-bottom: 95px;
  }
}

.medical-pictureList {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .medical-pictureList {
    display: block;
    margin-top: 36px;
    max-width: 335px;
  }
}

.medical-pictureItem + .medical-pictureItem {
  margin-left: 80px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .medical-pictureItem + .medical-pictureItem {
    margin-left: 50px;
  }
}
@media (max-width: 767px) {
  .medical-pictureItem + .medical-pictureItem {
    margin-left: auto;
    margin-top: 20px;
  }
}

.medical-pictureLink {
  position: relative;
  max-width: 460px;
  width: 100%;
  max-height: 288px;
  height: 100%;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .medical-pictureLink {
    max-width: 335px;
    max-height: 210px;
  }
}
.medical-pictureLink:hover::before {
  opacity: 1;
}
.medical-pictureLink::before {
  content: "";
  position: absolute;
  top: 2.5%;
  left: 2.5%;
  width: 95%;
  height: 95%;
  border-radius: 20px;
  border: 2px solid #fff;
  opacity: 0;
  z-index: 1;
}
.medical-pictureLink::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
}
.medical-pictureLink:hover::after {
  opacity: 0.4;
}
.medical-pictureLink img {
  transition: all 0.3s ease 0s;
}
.medical-pictureLink:hover img {
  transform: scale(1.1);
}

.medical-wrapper {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 92px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .medical-wrapper {
    top: 55px;
  }
}
@media (max-width: 767px) {
  .medical-wrapper {
    top: 62px;
  }
}

.medical-wrapperTtl {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-bottom: 16px;
  position: relative;
}
@media (max-width: 767px) {
  .medical-wrapperTtl {
    font-size: 2rem;
    padding-bottom: 20px;
  }
}
.medical-wrapperTtl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #fff;
}
@media (max-width: 767px) {
  .medical-wrapperTtl::after {
    width: 30px;
  }
}

.medical-wrapperSub {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .medical-wrapperSub {
    font-size: 1.2rem;
    margin-top: 16px;
  }
}

.medical-text {
  margin-top: 55px;
  max-width: 1000px;
  background: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  padding: 38px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .medical-text {
    margin-top: 18px;
    max-width: 335px;
    padding: 20px;
    line-height: 1.7142857143;
  }
}

/*===========================================================
# general medical
===========================================================*/
.general-medical {
  margin-top: 160px;
  position: relative;
}
.general-medical::before {
  content: "";
  position: absolute;
  background: url(../img/deco-kirakira2-w.png) no-repeat center center/contain;
  bottom: 4%;
  left: 3%;
  width: 57px;
  height: 57px;
}
@media (max-width: 767px) {
  .general-medical::before {
    width: 25px;
    height: 25px;
    bottom: 1.7%;
  }
}
.general-medical::after {
  content: "";
  position: absolute;
  background: url(../img/deco-kirakira-w.png) no-repeat center center/contain;
  bottom: 3.5%;
  right: 1%;
  width: 126px;
  height: 138px;
}
@media (max-width: 767px) {
  .general-medical::after {
    width: 53px;
    height: 58px;
    bottom: 1%;
    right: 2%;
  }
}
@media (max-width: 767px) {
  .general-medical {
    margin-top: 100px;
  }
}

.general-medical-inner {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .general-medical-inner {
    padding-bottom: 108px;
  }
}

.special-medical {
  margin-top: 157px;
  position: relative;
}
.special-medical::before {
  content: "";
  position: absolute;
  background: url(../img/deco-kirakira2-w.png) no-repeat center center/contain;
  bottom: 3%;
  left: 3%;
  width: 57px;
  height: 57px;
}
@media (max-width: 767px) {
  .special-medical::before {
    width: 25px;
    height: 25px;
    bottom: 1.1%;
  }
}
.special-medical::after {
  content: "";
  position: absolute;
  background: url(../img/deco-kirakira-w.png) no-repeat center center/contain;
  bottom: 2.5%;
  right: 1%;
  width: 126px;
  height: 138px;
}
@media (max-width: 767px) {
  .special-medical::after {
    width: 53px;
    height: 58px;
    bottom: 0.7%;
    right: 2%;
  }
}
@media (max-width: 767px) {
  .special-medical {
    margin-top: 100px;
  }
}

.special-medical-inner {
  padding-bottom: 70px;
  padding-top: 5px;
}
@media (max-width: 767px) {
  .special-medical-inner {
    padding-bottom: 110px;
    padding-top: 30px;
  }
}
.special-medical-inner::after {
  bottom: -0.8%;
}
@media (max-width: 767px) {
  .special-medical-inner::after {
    bottom: 0.1%;
  }
}

.general-medicalList {
  margin-top: 60px;
  padding: 0 140px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .general-medicalList {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .general-medicalList {
    padding: 0 20px;
    margin-top: 40px;
  }
}

.general-medicalItem {
  padding: 52px 60px 60px;
  background: #fff;
  border-radius: 20px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 42px;
  position: relative;
}
@media (max-width: 767px) {
  .general-medicalItem {
    padding: 20px 20px 20px 20px;
  }
}
.general-medicalItem::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 80px;
  top: 0;
  right: 60px;
  background: url(../img/tag-01.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .general-medicalItem::after {
    background: url(../img/tag-01-sp.svg) no-repeat center center/contain;
    right: 20px;
    width: 80px;
    height: 60px;
  }
}

.-special::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 80px;
  top: 0;
  right: 60px;
  background: url(../img/tag-02.svg) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .-special::after {
    background: url(../img/tag-02-sp.svg) no-repeat center center/contain;
    right: 20px;
    width: 80px;
    height: 60px;
  }
}

.general-medicalTtl {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .general-medicalTtl {
    font-size: 2rem;
  }
}
.general-medicalTtl span {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1391e6;
  vertical-align: middle;
  margin-left: 38px;
}
@media (max-width: 767px) {
  .general-medicalTtl span {
    display: block;
    margin-left: 0;
    margin-top: 20px;
  }
}

.general-medicalWrapper {
  margin-top: 40px;
  padding-top: 38px;
  border-top: 1px solid #c2c2c2;
  display: flex;
}
@media (max-width: 767px) {
  .general-medicalWrapper {
    display: block;
    margin-top: 16px;
    padding-top: 20px;
  }
}

.general-medicalTxt {
  width: calc(50% - 20px);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7142857143;
}
@media (max-width: 767px) {
  .general-medicalTxt {
    width: 100%;
  }
}

.general-medicalPicture {
  width: calc(50% - 20px);
  margin-left: 40px;
}
@media (max-width: 767px) {
  .general-medicalPicture {
    width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }
}
/*===========================================================
# blog
===========================================================*/
.blog {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .blog {
    margin-top: 96px;
  }
}

@media (max-width: 767px) {
  .blog-inner {
    padding: 0 20px;
  }
}

.blog-list {
  margin-top: 78px;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  place-items: center;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
@media (min-width: 768px) and (max-width: 1200px) {
  .blog-list {
    padding: 0 16px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .blog-list {
    display: block;
    margin-top: 48px;
  }
}

.blog-item {
  position: relative;
}
@media (max-width: 767px) {
  .blog-item {
    height: 101px;
  }
  .blog-item:not(:first-child) {
    margin-top: 10px;
  }
}

.blog-link {
  display: block;
  max-width: 300px;
  box-shadow: rgba(24, 26, 27, 0.16) 0px 3px 6px;
  border-radius: 20px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .blog-link {
    max-width: 100%;
    height: 100%;
    display: flex;
    border-radius: 0;
    box-shadow: none;
  }
  .blog-link:not(:first-child) {
    margin-top: 10px;
  }
}
.blog-link figure {
  border-radius: 20px 20px 0 0;
  height: 188px;
}
@media (max-width: 767px) {
  .blog-link figure {
    flex: 0 0 133px;
  }
}
.blog-link img {
  transition: all 0.3s ease 0s;
  height: 188px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .blog-link img {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .blog-link img {
    height: 101px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.blog-link:hover img {
  transform: scale(1.1);
}
.blog-link:hover .blog-text {
  color: #1391e6;
}

.new-stamp {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  top: -20px;
  left: -10px;
  background: #ee5a6d;
  color: #fff;
  border-radius: 50%;
  padding: 19px 13px;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 767px) {
  .new-stamp {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    padding: 13px 9px;
    top: -10px;
    left: -8px;
  }
}

.blog-wrapper {
  padding: 15px 24px 10px;
  position: relative;
}
@media (max-width: 767px) {
  .blog-wrapper {
    padding-top: 33px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
  }
}

.blog-wrapper_category {
  display: inline-block;
  background: #1391e6;
  color: #fff;
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 500;
  position: absolute;
  top: -24px;
  left: 24px;
}
@media (max-width: 767px) {
  .blog-wrapper_category {
    position: absolute;
    font-size: 1rem;
    padding: 2px 8px;
    top: 7px;
    left: 10px;
  }
}

.blog-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 4px;
  transition: all 0.5s ease 0s;
}
@media (max-width: 767px) {
  .blog-text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.4285714286;
    transition: all 0.5s ease 0s;
    padding-bottom: 8px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .blog-text {
    padding-bottom: 6px;
  }
}

.news-itemDate {
  font-size: 1.1rem;
  font-weight: 500;
  color: #888888;
}

.blog-linkBox {
  text-align: center;
  margin-top: 68px;
}
@media (max-width: 767px) {
  .blog-linkBox {
    margin-top: 40px;
  }
}

/*===========================================================
# gallery
===========================================================*/
.gallery {
  margin-top: 155px;
}
@media (max-width: 767px) {
  .gallery {
    margin-top: 100px;
  }
}

.gallery-inner {
  max-width: 999px;
  margin: 0 auto;
}

.gallery-list {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .gallery-list {
    margin-top: 36px;
  }
}

.gallery-item {
  width: calc(33.3% - 16px);
  max-height: 317px;
  max-width: 317px;
  width: 100%;
}
.gallery-item:not(:nth-child(3n+1)) {
  margin-left: 24px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .gallery-item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .gallery-item:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .gallery-item {
    width: calc(50% - 30px);
  }
  .gallery-item:nth-child(2n) {
    margin-left: 60px;
  }
  .gallery-item:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .gallery-item {
    width: calc(50% - 26px);
    max-height: 162px;
  }
  .gallery-item:nth-child(2n) {
    margin-left: 12px;
  }
  .gallery-item:nth-child(n+3) {
    margin-top: 12px;
  }
}
.gallery-item:nth-child(n+4) {
  margin-top: 24px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .gallery-item:nth-child(n+4) {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .gallery-item:nth-child(n+4) {
    margin-top: 12px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .gallery-item img {
    width: 100%;
    height: inherit;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .gallery-item img {
    height: 162px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 10px;
  }
}

/*===========================================================
# footer
===========================================================*/
.footer,
.footer-reserve_thanks,
.footer-archive_blog {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .footer,
.footer-reserve_thanks,
.footer-archive_blog {
    margin-top: 100px;
  }
}

@media (max-width: 767px) {
  .footer-archive_blog {
    margin-top: 90px;
  }
}

.footer-single_blog {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .footer-single_blog {
    margin-top: 90px;
  }
}

.footer-page_contact {
  margin-top: 70px;
}
@media (max-width: 767px) {
  .footer-page_contact {
    margin-top: 62px;
  }
}

.footer-page_reserve {
  margin-top: 66px;
}
@media (max-width: 767px) {
  .footer-page_reserve {
    margin-top: 70px;
  }
}

.footer-contact_thanks {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .footer-contact_thanks {
    margin-top: 90px;
  }
}

.footer-reserve_thanks {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .footer-reserve_thanks {
    margin-top: 90px;
  }
}

@media (max-width: 767px) {
  .archive-footer {
    margin-top: 90px;
  }
}

.contact-footer {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .contact-footer {
    margin-top: 93px;
  }
}

@media (max-width: 767px) {
  .reservation-thanks-footer {
    margin-top: 95px;
  }
}

.footer-wave {
  width: 100%;
  height: 32px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer-wave img {
    height: 32px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .footer-wave img {
    height: 32px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 53% 50%;
       object-position: 53% 50%;
  }
}

.footer-inner,
.footer-inner-contact_thanks,
.footer-inner-reserve_thanks,
.footer-inner-single_blog,
.reservation-thanks-footer-inner {
  background: #dff1fd;
  padding-top: 56px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .footer-inner,
.footer-inner-contact_thanks,
.footer-inner-reserve_thanks,
.footer-inner-single_blog,
.reservation-thanks-footer-inner {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .footer-inner-contact_thanks {
    padding-top: 15px;
  }
}

@media (max-width: 767px) {
  .footer-inner-reserve_thanks {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .footer-inner-single_blog {
    padding-top: 15px;
  }
}

@media (max-width: 767px) {
  .reservation-thanks-footer-inner {
    padding-top: 2px;
  }
}

.footer-info {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 38px 50px 35px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer-info {
    padding: 40px 20px;
  }
}
@media (max-width: 767px) {
  .footer-info {
    max-width: 355px;
    padding: 32px 10px 20px;
    border-radius: 8px;
  }
}

.footer-infoItems {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .footer-infoItems {
    display: block;
  }
}

.footer-infoContent {
  max-width: 477px;
}

.footer-infoLogo {
  max-width: 402px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer-infoLogo {
    max-width: 311px;
  }
}
.footer-infoAddress {
  margin-top: 7px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .footer-infoAddress {
    margin-top: 8px;
  }
}
.footer-infoAddress span {
  margin-left: 14px;
}

.footer-infoTell {
  text-align: center;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .footer-infoTell {
    margin-top: 15px;
  }
}

.footer-infoNumber {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1391e6;
  padding-left: 32px;
  position: relative;
  height: 44px;
}
.footer-infoNumber::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 28px;
  height: 28px;
  background: url(../img/icon_tel.svg) no-repeat center center/contain;
}

.footer-infoTime {
  text-align: center;
  font-size: 1.2rem;
  color: #1391e6;
}

.footer-infoBtnWrapper {
  margin-top: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer-infoBtnWrapper {
    margin-top: 20px;
  }
}

.footer-infoBtn + .footer-infoBtn {
  margin-left: 16px;
}
@media (max-width: 767px) {
  .footer-infoBtn + .footer-infoBtn {
    margin-left: 15px;
  }
}

.footer-infoLink {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  border-radius: 30px;
  text-align: center;
  transition: all 0.3s ease 0s;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-infoLink {
    font-size: 1.4rem;
  }
}
.footer-infoLink span {
  margin-left: 8px;
}
@media (max-width: 767px) {
  .footer-infoLink span {
    margin-left: 7px;
  }
}

.-reserve {
  border: 1px solid #1391e6;
  padding: 17px 60px;
  color: #fff;
  background: #1391e6;
}
@media (max-width: 767px) {
  .-reserve svg {
    width: 24px;
  }
}
@media (max-width: 767px) {
  .-reserve {
    padding: 8px 30px;
  }
}
.-reserve:hover {
  background: #0060a0;
  border: 1px solid #0060a0;
}

.-contact {
  border: 1px solid #1391e6;
  color: #1391e6;
  padding: 16px 46px;
}
@media (max-width: 767px) {
  .-contact svg {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .-contact {
    padding: 8px 18px;
  }
}
.-contact:hover path {
  fill: #fff;
}
.-contact:hover {
  background: #1391e6;
  color: #fff;
}

.footer-infoTimesheet {
  margin-top: 20px;
}
.footer-infoTimesheet img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}

.footer-infoAccess {
  margin-left: 35px;
  margin-top: 20px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer-infoAccess {
    margin-left: auto;
    margin-right: auto;
    margin-top: 22px;
  }
}
@media (max-width: 767px) {
  .footer-infoAccess {
    margin-left: auto;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .footer-infoIframe {
    max-width: 315px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .footer-infoIframe iframe {
    width: 315px;
    height: 315px;
  }
}

/* footer-sitemap
-------------------------------------------*/
.footer-sitemap,
.footer-sitemap-reserve,
.footer-sitemap-contact_thanks,
.footer-sitemap-reserve_thanks {
  padding-top: 40px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .footer-sitemap,
.footer-sitemap-reserve,
.footer-sitemap-contact_thanks,
.footer-sitemap-reserve_thanks {
    padding-top: 55px;
    padding-bottom: 58px;
  }
}

@media (max-width: 767px) {
  .footer-sitemap-reserve {
    padding-bottom: 75px;
  }
}

@media (max-width: 767px) {
  .footer-sitemap-contact_thanks {
    padding-top: 55px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .footer-sitemap-reserve_thanks {
    padding-bottom: 74px;
  }
}

@media (max-width: 767px) {
  .reservation-thanks-footer-sitemap {
    padding-bottom: 75px;
  }
}

.footer-sitemapContent {
  max-width: 832px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer-sitemapContent {
    display: block;
  }
}
@media (max-width: 767px) {
  .footer-sitemapContent {
    display: block;
    padding-left: 20px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .footer-sitemapItem:first-child {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .footer-sitemapItem + .footer-sitemapItem {
    margin-top: 36px;
  }
}
.footer-sitemapItem + .footer-sitemapItem {
  margin-left: 40px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer-sitemapItem + .footer-sitemapItem {
    margin-left: 20px;
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .footer-sitemapItem + .footer-sitemapItem {
    margin-left: auto;
  }
}

.sitemap-link {
  transition: all 0.3s ease 0s;
}
.sitemap-link:hover {
  opacity: 0.7;
}

.sitemap-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  color: #393939;
}

.sitemap-nav {
  margin-top: 20px;
}

.sitemap-navList + .sitemap-navList {
  margin-top: 18px;
}

.sitemap-navLink {
  font-size: 1.6rem;
  color: #393939;
  transition: all 0.3s ease 0s;
  padding-left: 12px;
  position: relative;
}
.sitemap-navLink:hover {
  opacity: 0.7;
}
.sitemap-navLink span::before {
  content: "";
  position: absolute;
  background: url(../img/icon-arrow-blue.svg) no-repeat center center/contain;
  width: 6px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.sitemap-navWrapper {
  display: flex;
}

.sitemap-navItem + .sitemap-navItem {
  margin-left: 20px;
}

/* footer-copy
-------------------------------------------*/
.footer-copy {
  height: 55px;
  background: #1391e6;
  text-align: center;
  padding-top: 18px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .footer-copy {
    height: 115px;
  }
}
@media (max-width: 767px) {
  .footer-copy {
    height: 115px;
    padding-top: 18px;
  }
}

.footer-copyTex {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
}

/* fixed-reserve
-------------------------------------------*/
.fixed-reserve {
  width: 92px;
  height: 120px;
  background: #1391e6;
  border-radius: 20px 0 0 20px;
  position: fixed;
  right: 0;
  top: 180px;
  z-index: 101;
  transition: all 0.3s ease 0s;
}
.fixed-reserve:hover {
  background: #0060a0;
}
@media (max-width: 767px) {
  .fixed-reserve {
    height: 60px;
    width: 100%;
    bottom: 0;
    left: 0;
    top: auto;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    padding: 10px 18px;
    z-index: 300;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .fixed-reserve {
    height: 70px;
    width: 100%;
    bottom: 0;
    left: 0;
    top: auto;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    z-index: 300;
  }
}

.fixed-Tell {
  display: none;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .fixed-Tell {
    display: block;
  }
}
@media (max-width: 767px) {
  .fixed-Tell {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .fixed-Number {
    display: inline-block;
    font-size: 2rem;
    color: #1391e6;
    padding-left: 26px;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
  }
  .fixed-Number::before {
    content: "";
    position: absolute;
    background: url(../img/icon_tel.svg) no-repeat center center/contain;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 767px) {
  .fixed-Number {
    display: inline-block;
    font-size: 2rem;
    color: #1391e6;
    padding-left: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
  }
  .fixed-Number::before {
    content: "";
    position: absolute;
    background: url(../img/icon_tel.svg) no-repeat center center/contain;
    top: 50%;
    transform: translateY(-50%);
    left: -2px;
    width: 20px;
    height: 20px;
  }
}

.fixed-Time {
  text-align: center;
}

.fixed-reserveLink {
  display: inline-block;
  text-align: center;
  padding: 21px 17px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .fixed-reserveLink {
    display: flex;
    align-items: center;
    background: #1391e6;
    border-radius: 10px;
    padding: 10px 30px 10px 20px;
    margin-left: 12px;
  }
}
@media (max-width: 767px) {
  .fixed-reserveLink {
    display: flex;
    align-items: center;
    background: #1391e6;
    border-radius: 10px;
    padding: 10px 10px 10px 15px;
    margin-left: 14px;
    width: 156px;
  }
}

.fixed-reservePicture img {
  width: 48px;
  height: 28px;
}
@media (max-width: 767px) {
  .fixed-reservePicture img {
    width: 45px;
    height: 24px;
  }
}

.fixed-reserveText {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.2857142857;
  font-weight: 500;
  margin-top: 12px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .fixed-reserveText span {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .fixed-reserveText span {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .fixed-reserveText {
    margin-left: 10px;
    font-size: 1.6rem;
    line-height: 0.8;
    letter-spacing: -0.02em;
    margin-top: auto;
  }
}
@media (max-width: 767px) {
  .fixed-reserveText {
    font-size: 1.6rem;
    line-height: 0.8;
    letter-spacing: -0.02em;
    margin-top: auto;
    margin-left: 10px;
  }
}

/* to-top
-------------------------------------------*/
.to-top {
  transition: all 0.3s ease 0s;
}

.to-topLink {
  position: fixed;
  bottom: 35px;
  right: 30px;
  visibility: hidden;
  z-index: 298;
}
.to-topLink.is-show {
  position: fixed;
  bottom: 35px;
  right: 20px;
  visibility: visible;
}
@media (max-width: 767px) {
  .to-topLink.is-show {
    right: 10px;
    bottom: 80px;
  }
}

@media (max-width: 767px) {
  .to-topLink-contact_thanks.is-show {
    bottom: 95px;
  }
}

/*===========================================================
# profile
===========================================================*/
.profile {
  margin-top: 78px;
}
@media (max-width: 767px) {
  .profile {
    margin-top: 58px;
  }
}

.profile-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .profile-inner {
    padding: 0 20px;
  }
}

.profile-content {
  margin-top: 56px;
  display: flex;
}
@media (max-width: 767px) {
  .profile-content {
    display: block;
    margin-top: 36px;
    padding: 0 20px;
  }
}

.profile-item {
  width: calc(50% - 40px);
}
@media (max-width: 767px) {
  .profile-item {
    width: 100%;
  }
}
.profile-item + .profile-item {
  margin-left: 80px;
}

.profile-messageTtl {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.5714285714;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .profile-messageTtl {
    font-size: 2rem;
    line-height: 1.6;
  }
}

.profile-messageText {
  margin-top: 36px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7142857143;
}
@media (max-width: 767px) {
  .profile-messageText {
    margin-top: 27px;
  }
}

.profile-messageName {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7142857143;
  text-align: right;
}
@media (max-width: 767px) {
  .profile-messageName {
    margin-top: 35px;
  }
}

.profile-career {
  margin-top: 54px;
}
@media (max-width: 767px) {
  .profile-career {
    margin-top: 34px;
  }
}

.profile-careerTtl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  padding-bottom: 5px;
  border-bottom: 1px solid #393939;
}

.profile-careerItem {
  display: flex;
}

.profile-careerText {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7142857143;
  margin-top: 12px;
}
.profile-careerText:nth-child(2) {
  margin-left: 16px;
}

.profile-license {
  margin-top: 26px;
}
@media (max-width: 767px) {
  .profile-license {
    margin-top: 34px;
  }
}

.profile-licenseTtl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  padding-bottom: 5px;
  border-bottom: 1px solid #393939;
}

.profile-licenseText {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7142857143;
  margin-top: 12px;
}

.profile-picture {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .profile-picture {
    margin-top: 40px;
  }
}
/*===========================================================
# slider
===========================================================*/
.slider {
  margin-top: 160px;
}
@media (max-width: 767px) {
  .slider {
    margin-top: 97px;
  }
}

.slider-inner {
  height: 230px;
  overflow: hidden; /* 画面はみ出しを防ぐ */
}
@media (max-width: 767px) {
  .slider-inner {
    height: 151px;
  }
}

.swiperStaff {
  width: 100%;
  max-width: 1280px;
  overflow: visible;
}

.swiperStaff-wrapper {
  /* スライドの動きを等速にする */
  transition-timing-function: linear;
  width: 100%;
}

.swiperStaff-slide {
  height: 230px;
}
@media (max-width: 767px) {
  .swiperStaff-slide {
    height: 150px;
  }
}
.swiperStaff-slide img {
  height: 100%;
}

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

.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin-top: 4px;
  margin-bottom: 4px;
}

/*===========================================================
# member
===========================================================*/
.member {
  margin-top: 164px;
  padding-bottom: 6px;
}
@media (max-width: 767px) {
  .member {
    margin-top: 100px;
    padding-bottom: 0;
  }
}

.member-inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .member-inner {
    max-width: 335px;
  }
}

.member-content {
  margin-top: 53px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .member-content {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .member-content {
    margin-top: 32px;
  }
}

.member-wrapper + .member-wrapper {
  margin-top: 55px;
}
@media (max-width: 767px) {
  .member-wrapper + .member-wrapper {
    margin-top: 35px;
  }
}

.member-job {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.08em;
  padding-bottom: 4px;
  border-bottom: 1px solid #707070;
}
.member-job:nth-child(n+2) {
  margin-top: 55px;
}
@media (max-width: 767px) {
  .member-job:nth-child(n+2) {
    margin-top: 35px;
  }
}

.member-item {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .member-item {
    display: block;
    margin-top: 36px;
  }
}

.member-card {
  max-width: 280px;
}
.member-card:not(:nth-child(3n+1)) {
  margin-left: 80px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .member-card:not(:nth-child(3n+1)) {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .member-card:not(:nth-child(3n+1)) {
    margin-left: 0;
  }
}
.member-card:nth-child(n+4) {
  margin-top: 60px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .member-card {
    width: calc(33.3% - 13.3333333333px);
  }
}
@media (max-width: 767px) {
  .member-card {
    max-width: 335px;
  }
  .member-card + .member-card {
    margin-top: 55px;
  }
}
.card-text {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-job {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.card-name {
  margin-left: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.card-table {
  margin-top: 15px;
  table-layout: fixed;
  width: 100%;
  /*borderの境界線を個別*/
  border-collapse: separate;
  /*borderの間隔を指定*/
  border-spacing: 1px;
}
@media (max-width: 767px) {
  .card-table {
    margin-top: 16px;
  }
}
.card-table th,
.card-table td {
  padding: 16px 0 16px 20px;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: left;
}
.card-table th {
  background: #dff1fd;
}
@media (max-width: 767px) {
  .card-table th {
    width: 140px;
  }
}
/*===========================================================
# staff blog
===========================================================*/
.content {
  margin-top: 78px;
}
@media (max-width: 767px) {
  .content {
    margin-top: 20px;
  }
}

.content-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .content-inner {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .content-inner {
    display: block;
  }
}

.content-primary {
  width: calc(100% - 300px - 30px);
}
@media (max-width: 767px) {
  .content-primary {
    width: 100%;
    max-width: 335px;
    margin: 0 auto;
  }
}

/* entry
-------------------------------------------*/
.entry-list {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .entry-list {
    margin-top: 60px;
  }
}

.entry-item {
  position: relative;
  display: flex;
  height: 153px;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .entry-item {
    height: 180px;
  }
}
@media (max-width: 767px) {
  .entry-item {
    height: 101px;
  }
}
.entry-item + .entry-item {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .entry-item + .entry-item {
    margin-top: 20px;
  }
}
.entry-item:hover img {
  transform: scale(1.1);
}
.entry-item:hover .entry-item-text {
  color: #1391e6;
}

.entry-item_tag {
  position: absolute;
  width: 40px;
  height: 40px;
  top: -10px;
  left: -10px;
  background: #ee5a6d;
  color: #fff;
  border-radius: 50%;
  padding: 10px 5px;
  font-size: 1.5rem;
  font-weight: 700;
  z-index: 1;
}
@media (max-width: 767px) {
  .entry-item_tag {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    padding: 8px 5px;
    top: -10px;
    left: -8px;
  }
}

.entry-item-picture {
  max-width: 244px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .entry-item-picture {
    max-width: 133px;
    height: 101px;
  }
}
.entry-item-picture img {
  transition: all 0.6s ease 0s;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .entry-item-picture img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 767px) {
  .entry-item-picture img {
    height: 101px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.entry-item-body {
  padding: 15px 0 12px 20px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .entry-item-body {
    padding: 10px 0 10px 10px;
  }
}
@media (max-width: 767px) {
  .entry-item-body {
    padding: 7px 0 5px 10px;
    height: 101px;
  }
}

.entry-item-category {
  display: inline-block;
  font-size: 1rem;
  color: #fff;
  padding: 2px 8px;
  background: #1391e6;
  border-radius: 50px;
}
@media (max-width: 767px) {
  .entry-item-category {
    padding: 2px 6px;
    font-size: 1rem;
  }
}

.entry-item-text {
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  min-height: 50px;
  transition: all 0.6s ease 0s;
}
@media (max-width: 767px) {
  .entry-item-text {
    margin-top: 6px;
    font-size: 1.4rem;
    line-height: 1.4285714286;
  }
}

.entry-item-published {
  margin-top: 14px;
  font-size: 1.2rem;
  color: #888888;
  display: block;
}
@media (max-width: 767px) {
  .entry-item-published {
    margin-top: -2px;
    font-size: 1.1rem;
  }
}

/* pagenation
-------------------------------------------*/
.pagenation {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .pagenation {
    text-align: left;
    margin-top: 61px;
    max-width: 334px;
  }
}

.pagenation-item + .pagenation-item {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .pagenation-item + .pagenation-item {
    margin-left: 4px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .pagenation-item:nth-child(n+5):nth-child(-n+7) {
    display: none;
  }
}
@media (max-width: 767px) {
  .pagenation-item:nth-child(n+5):nth-child(-n+7) {
    display: none;
  }
}

.pagenation a,
.pagenation span {
  font-size: 1.4rem;
  border-radius: 4px;
  display: inline-block;
  margin: 0 5px;
}
@media (max-width: 767px) {
  .pagenation a,
.pagenation span {
    font-size: 1.2rem;
    margin: 0 3px;
  }
}

.page-numbers {
  background: #fff;
  color: #1391e6;
  padding: 8px 8px;
  border: 1px solid #1391e6;
  transition: all 0.3s ease 0s;
  width: 34px;
  text-align: center;
}
@media (max-width: 767px) {
  .page-numbers {
    padding: 4px 6px;
    width: 30px;
  }
  .page-numbers:nth-child(n+7) {
    padding: 4px 4px;
  }
}
.page-numbers:hover {
  background: #1391e6;
  color: #fff;
}

.prev,
.next {
  width: 82px;
  background: #1391e6;
  color: #fff;
  border: 1px solid #1391e6;
}
@media (max-width: 767px) {
  .prev,
.next {
    width: 71px;
  }
}

.prev {
  padding: 8px 12px 8px 38px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .prev {
    padding: 8px 10px 8px 32px;
  }
}
@media (max-width: 767px) {
  .prev {
    padding: 4px 8px 4px 32px;
  }
}
.prev:hover::before {
  left: 10px;
}
.prev::before {
  content: "";
  position: absolute;
  background: url(../img/arrow-circle-left.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  transition: all 0.5s ease 0s;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .prev::before {
    left: 14px;
  }
}
@media (max-width: 767px) {
  .prev::before {
    left: 14px;
    width: 14px;
    height: 14px;
  }
}

.next {
  padding: 8px 38px 8px 12px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .next {
    padding: 8px 32px 8px 10px;
  }
}
@media (max-width: 767px) {
  .next {
    padding: 4px 32px 4px 8px;
  }
}
.next:hover::before {
  right: 10px;
}
.next::before {
  content: "";
  position: absolute;
  background: url(../img/arrow-circle-right.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  transition: all 0.5s ease 0s;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .next::before {
    right: 14px;
  }
}
@media (max-width: 767px) {
  .next::before {
    right: 14px;
    width: 14px;
    height: 14px;
  }
}

.current {
  background: #1391e6;
  color: #fff;
}

/* secondary
-------------------------------------------*/
.secondary {
  max-width: 300px;
  width: 100%;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .secondary {
    max-width: 335px;
    margin: 100px auto 0;
  }
}

/* widget-profile
-------------------------------------------*/
.widget-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  padding-left: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid #888888;
  position: relative;
}
@media (max-width: 767px) {
  .widget-ttl {
    padding-bottom: 10px;
  }
}
.widget-ttl::before {
  content: "";
  position: absolute;
  background-image: url(../img/sidebar-icon_1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 24px;
  height: 24px;
  top: 0;
  left: 0;
}

.widget-profile-picture {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .widget-profile-picture {
    margin-top: 22px;
  }
}
.widget-profile-ttl {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .widget-profile-ttl {
    margin-top: 16px;
  }
}

.widget-profile-text {
  font-size: 1.4rem;
  margin-top: 10px;
  line-height: 1.7142857143;
}

.widget-profile-link {
  margin-top: 12px;
  font-size: 1.4rem;
  color: #1391e6;
  padding-right: 20px;
  display: inline-block;
  position: relative;
  transition: all 0.3s ease 0s;
  margin-left: 2px;
}
.widget-profile-link:hover {
  opacity: 0.7;
}
.widget-profile-link::after {
  content: "";
  position: absolute;
  background-image: url(../img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 18px;
  height: 18px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

/* widget-recent
-------------------------------------------*/
.widget-recent {
  margin-top: 58px;
}
@media (max-width: 767px) {
  .widget-recent {
    margin-top: 56px;
  }
}

.widget-recent-ttl::before {
  background-image: url(../img/sidebar-icon_2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.widget-recent-item {
  position: relative;
  display: flex;
  margin-top: 20px;
  height: 91px;
}
@media (max-width: 767px) {
  .widget-recent-item {
    height: 101px;
  }
}
.widget-recent-item:hover img {
  transform: scale(1.1);
}
.widget-recent-item:hover .widget-recent-item-text {
  color: #1391e6;
}

.entry-item_tag--small {
  position: absolute;
  width: 25px;
  height: 25px;
  top: -10px;
  left: -10px;
  background: #ee5a6d;
  color: #fff;
  border-radius: 50%;
  padding: 5px 3px;
  font-size: 1rem;
  z-index: 1;
}
.widget-recent-item-picture {
  max-width: 120px;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .widget-recent-item-picture {
    max-width: 133px;
  }
}
.widget-recent-item-picture img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.6s ease 0s;
}

.widget-recent-item-body {
  padding: 0 0 0 10px;
  width: 100%;
}
@media (max-width: 767px) {
  .widget-recent-item-body {
    padding: 10px 10px 5px 10px;
  }
}

.widget-recent-item-category {
  display: inline-block;
  font-size: 1rem;
  color: #fff;
  padding: 2px 8px;
  background: #1391e6;
  border-radius: 50px;
}

.widget-recent-item-text {
  margin-top: 5px;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  transition: all 0.6s ease 0s;
}

.widget-recent-item-published {
  margin-top: 7px;
  font-size: 1.1rem;
  color: #888888;
  display: block;
}

/* widget-category
-------------------------------------------*/
.widget-category {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .widget-category {
    margin-top: 58px;
  }
}

.widget-category-ttl::before {
  background: url(../img/sidebar-icon_3.svg) no-repeat center center/contain;
}

.widget-category-list {
  margin-top: 12px;
}
@media (max-width: 767px) {
  .widget-category-list {
    margin-top: 10px;
  }
}

.widget-category-item + .widget-category-item {
  margin-top: 1px;
}
@media (max-width: 767px) {
  .widget-category-item + .widget-category-item {
    margin-top: auto;
  }
}

.widget-category-link {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.25;
  padding-left: 12px;
  position: relative;
  margin-left: 20px;
  transition: all 0.3s ease 0s;
}
.widget-category-link:hover {
  opacity: 0.7;
}
.widget-category-link::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  background: url(../img/icon-arrow-blue.svg) no-repeat center center/contain;
}

/*===========================================================
# singl-blog
===========================================================*/
/* content-entries
-------------------------------------------*/
.content-entry-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .content-entry-ttl {
    font-size: 2rem;
    line-height: 1.6;
  }
}

.content-entry-meta {
  margin-top: 18px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .content-entry-meta {
    margin-top: 16px;
  }
}

.content-entry-published {
  font-size: 1.6rem;
  color: #1391e6;
  padding-left: 20px;
  position: relative;
}
.content-entry-published::before {
  content: "";
  position: absolute;
  background: url(../img/single-blog_icon.svg) no-repeat center center/contain;
  width: 14px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.content-entry-category {
  font-size: 1.1rem;
  color: #fff;
  background: #1391e6;
  padding: 6px 12px;
  margin-left: 32px;
  border-radius: 50px;
}

.content-entry-body {
  margin-top: 56px;
}
.content-entry-body p {
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-top: 24px;
}
.content-entry-body p a {
  color: #1391e6;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .content-entry-body {
    margin-top: 56px;
  }
}
.content-entry-body h2 {
  margin-top: 65px;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: #1391e6;
  padding-left: 28px;
  position: relative;
}
@media (max-width: 767px) {
  .content-entry-body h2 {
    font-size: 1.8rem;
    padding-left: 22px;
  }
}
.content-entry-body h2::before {
  content: "";
  position: absolute;
  border-left: 8px solid #1391e6;
  width: 8px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media (max-width: 767px) {
  .content-entry-body h2::before {
    height: 40px;
    width: 6px;
    border-left: 6px solid #1391e6;
  }
}
.content-entry-body .wp-block-image {
  margin-top: 20px;
  max-height: 430px;
}
@media (max-width: 767px) {
  .content-entry-body .wp-block-image {
    max-height: 210px;
  }
}
.content-entry-body .wp-block-image img {
  max-height: 430px;
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .content-entry-body .wp-block-image img {
    max-height: 210px;
  }
}
.content-entry-body h3 {
  margin-top: 32px;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: #1391e6;
  padding-bottom: 6px;
  border-bottom: 1px solid #1391e6;
}
@media (max-width: 767px) {
  .content-entry-body h3 {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .content-entry-body h3 {
    font-size: 1.6rem;
  }
}
.content-entry-body h3 + p {
  margin-top: 16px;
}
.content-entry-body h4 {
  margin-top: 55px;
  letter-spacing: 0.08em;
  color: #1391e6;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .content-entry-body h4 {
    font-size: 1.4rem;
  }
}
.content-entry-body h4 + p {
  margin-top: 14px;
}

.content-entry-text-link {
  text-decoration: underline;
  color: #1391e6;
  transition: all 0.3s ease 0s;
}
.content-entry-text-link:hover {
  opacity: 0.7;
}

.content-entry-picture {
  margin-top: 25px;
  max-width: 670px;
  width: 100%;
  height: 419px;
}
@media (max-width: 767px) {
  .content-entry-picture {
    max-width: 335px;
    height: 209px;
  }
}
.content-entry-picture img {
  width: 100%;
  height: 100%;
}

.content-entry-list {
  margin-top: 14px;
  margin-left: 13px;
}
@media (max-width: 767px) {
  .content-entry-list {
    margin-top: 18px;
    margin-left: 14px;
  }
}

.content-entry-item {
  font-size: 1.6rem;
}
.content-entry-item span {
  font-size: 8px;
  vertical-align: middle;
  margin-right: 5px;
}
.content-entry-item + .content-entry-item {
  margin-top: 10px;
}

.content-entry-page-list {
  margin-top: 100px;
  height: 36px;
}
@media (max-width: 767px) {
  .content-entry-page-list {
    margin-top: 41px;
  }
}

.content-entry-page-item {
  display: flex;
  height: inherit;
  align-items: center;
  justify-content: center;
}
.page-link_prev,
.page-link_next {
  background: #1391e6;
  border: 1px solid #1391e6;
  border-radius: 4px;
}
.page-link_prev a,
.page-link_next a {
  font-size: 1.4rem;
  color: #fff;
}

.page-link_prev {
  padding: 8px 16px 8px 38px;
  position: relative;
}
@media (max-width: 767px) {
  .page-link_prev {
    padding: 8px 14px 8px 34px;
  }
}
.page-link_prev::before {
  content: "";
  position: absolute;
  background: url(../img/arrow-circle-left.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  transition: all 0.5s ease 0s;
}
@media (max-width: 767px) {
  .page-link_prev::before {
    left: 12px;
  }
}
.page-link_prev:hover::before {
  left: 10px;
}

.page-link_next {
  padding: 8px 38px 8px 16px;
  position: relative;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .page-link_next {
    padding: 8px 34px 8px 14px;
    margin-left: 12px;
  }
}
.page-link_next::before {
  content: "";
  position: absolute;
  background: url(../img/arrow-circle-right.svg) no-repeat center center/contain;
  width: 16px;
  height: 16px;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  transition: all 0.5s ease 0s;
}
@media (max-width: 767px) {
  .page-link_next::before {
    right: 12px;
  }
}
.page-link_next:hover::before {
  right: 10px;
}

.content-entry-archive {
  border: 1px solid #1391e6;
  background: #fff;
  border-radius: 4px;
  color: #1391e6;
  font-size: 1.4rem;
  padding: 8px 16px;
  transition: all 0.5s ease 0s;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .content-entry-archive {
    margin-left: 12px;
  }
}
.content-entry-archive:hover {
  background: #1391e6;
  color: #fff;
}
@media (max-width: 767px) {
  .content-entry-archive {
    padding: 8px 20px;
  }
}

/*===========================================================
# contact
===========================================================*/
.contact-message {
  max-width: 728px;
  width: 100%;
  margin: 78px auto 0;
  padding-bottom: 58px;
}
@media (max-width: 767px) {
  .contact-message {
    margin-top: 58px;
    padding: 0 20px 6px;
  }
}
.contact-message p {
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.contact-message p span {
  color: #ee5a6d;
}

.contact {
  margin-top: 98px;
}
@media (max-width: 767px) {
  .contact {
    margin-top: 88px;
    padding: 0 20px 10px;
  }
}

.contact-inner {
  max-width: 728px;
  width: 100%;
  margin: 0 auto;
}

.contact-content {
  margin-top: 72px;
}
@media (max-width: 767px) {
  .contact-content {
    margin-top: 65px;
  }
}

.contact-list {
  font-size: 1.6rem;
}

.contact-item {
  display: flex;
  align-items: center;
  padding: 31px 0;
  border-bottom: 1px solid #dddddd;
}
.contact-item:first-child {
  border-top: 1px solid #dddddd;
}
.contact-item + .contact-item {
  margin-top: -2px;
}
@media (max-width: 767px) {
  .contact-item + .contact-item {
    margin-top: 1px;
  }
}
@media (max-width: 767px) {
  .contact-item {
    display: block;
    padding: 24px 0;
  }
}

.contact-item-ttl {
  flex: 0 0 240px;
  width: 100%;
  display: inline-flex;
}
@media (max-width: 767px) {
  .contact-item-ttl {
    height: 30px;
    width: auto;
    display: inline-block;
  }
}

.contact-item-label {
  font-size: 1.6rem;
}

.contact-item-requireLabel {
  font-size: 1.2rem;
  vertical-align: middle;
  color: #fff;
  background: #ee5a6d;
  padding: 3px 6px;
  margin-left: 12px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .contact-item-requireLabel {
    margin-left: 8px;
  }
}

.checkbox-requireLabel {
  margin-left: 20px;
}

.contact-itemBox {
  flex: 0 1 auto;
  width: 100%;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .contact-itemBox {
    margin-top: 12px;
  }
}
.contact-itemBox input {
  background: #f6f6f6;
  border: none;
  border-radius: 4px;
  padding: 12px 16px;
  vertical-align: middle;
}
.contact-itemBox input[type=text], .contact-itemBox input[type=tel], .contact-itemBox input[type=email] {
  width: 100%;
  font-size: 1.6rem;
}
.contact-itemBox input[type=text]:focus, .contact-itemBox input[type=tel]:focus, .contact-itemBox input[type=email]:focus {
  outline: 2px solid #0060a0;
}
.contact-itemBox [type=tel] {
  letter-spacing: 0.08em;
}
.contact-itemBox textarea {
  width: 100%;
  height: 200px;
  resize: none;
  background: #f6f6f6;
  border: none;
  border-radius: 4px;
  padding: 12px 16px;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .contact-itemBox textarea {
    height: 160px;
  }
}
.contact-itemBox textarea:focus {
  outline: 2px solid #0060a0;
}
.contact-itemBox ::-moz-placeholder {
  color: #c2c2c2;
}
.contact-itemBox ::placeholder {
  color: #c2c2c2;
}

@media (max-width: 767px) {
  .contact-itemBox_textarea {
    margin-top: 8px;
  }
}

.contact-item-reserve-select {
  padding: 25px 0;
}
@media (max-width: 767px) {
  .contact-item-reserve-select {
    padding: 18px 0;
  }
}

.contact-button {
  text-align: center;
  display: block;
  margin: 65px auto 0;
  font-size: 1.6rem;
  color: #1391e6;
  letter-spacing: 0.08em;
  padding: 15px 155px;
  border-radius: 50px;
  border: 1px solid #1391e6;
  background: #fff;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .contact-button {
    margin-top: 64px;
    font-size: 1.4rem;
    padding: 8px 114px;
  }
}
.contact-button:hover {
  color: #fff;
  background: #1391e6;
}

.contact-button-reserve {
  text-align: center;
  display: block;
  margin: 60px auto 0;
  font-size: 1.6rem;
  color: #1391e6;
  letter-spacing: 0.08em;
  padding: 15px 155px;
  border-radius: 50px;
  border: 1px solid #1391e6;
  background: #fff;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .contact-button-reserve {
    margin-top: 66px;
    font-size: 1.4rem;
    padding: 8px 118px;
  }
}
.contact-button-reserve:hover {
  color: #fff;
  background: #1391e6;
}

/*===========================================================
# reserve
===========================================================*/
.reserve-message-list {
  max-width: 728px;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .reserve-message-list {
    max-width: 335px;
  }
}

.reserve-message-item {
  margin-top: 78px;
}
@media (max-width: 767px) {
  .reserve-message-item {
    margin-top: 58px;
  }
}
.reserve-message-item + .reserve-message-item {
  margin-top: 38px;
}
@media (max-width: 767px) {
  .reserve-message-item + .reserve-message-item {
    margin-top: 35px;
  }
}

.reserve-message-ttl {
  font-size: 2.8em;
  letter-spacing: 0.08em;
  font-weight: 700;
}
@media (max-width: 767px) {
  .reserve-message-ttl {
    font-size: 2rem;
  }
}

.reserve-message-infoTell {
  margin-top: 25px;
  text-align: left;
}

.reserve-message-infoTime {
  text-align: left;
  margin-left: 45px;
}

.reserve-message-text {
  font-size: 1.4rem;
  margin-top: 25px;
  line-height: 1.7142857143;
}

.contact-reserve {
  margin-top: 150px;
  padding-bottom: 65px;
}
@media (max-width: 767px) {
  .contact-reserve {
    margin-top: 95px;
    padding-bottom: 0;
  }
}

.contact-item-reserve {
  height: 100%;
  padding: 31px 0;
}
@media (max-width: 767px) {
  .contact-item-reserve {
    padding: 25px 0;
  }
}

/* radio
-------------------------------------------*/
.contact-item-radio {
  padding: 40px 0;
}
@media (max-width: 767px) {
  .contact-item-radio {
    padding: 18px 0;
  }
}

.contact-itemBox-radio {
  display: inline-flex;
  align-items: center;
  width: auto;
}
@media (max-width: 767px) {
  .contact-itemBox-radio {
    display: block;
    margin-top: 15px;
  }
}

.contact-radio + .contact-radio {
  margin-left: 32px;
}
@media (max-width: 767px) {
  .contact-radio + .contact-radio {
    margin-left: 36px;
  }
}
@media (max-width: 767px) {
  .contact-radio {
    display: inline-block;
  }
}
.contact-radio input[type=radio] {
  display: none;
}
.contact-radio input[type=radio]:checked + .contact-radio-label::after {
  opacity: 1;
}

.contact-radio-label {
  padding-left: 32px;
  font-size: 1.4rem;
  position: relative;
}
.contact-radio-label::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 24px;
  height: 24px;
  background: #fff;
  border: 1px solid #1391e6;
  border-radius: 50px;
}
.contact-radio-label::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #1391e6;
  border-radius: 50px;
  opacity: 0;
  transition: all 0.3s ease 0s;
}
.contact-radio-label:hover {
  cursor: pointer;
}

/* radio wpcf7
-------------------------------------------*/
.contact-radio {
  /* デフォルトのボタン */
  /* チェック前のボタン */
  /* チェック後のボタン */
}
.contact-radio .wpcf7-list-item.first {
  margin: 0;
}
.contact-radio .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}
.contact-radio .wpcf7-list-item {
  margin: 0 0 0 28px;
}
@media (max-width: 767px) {
  .contact-radio .wpcf7-list-item {
    margin: 0 0 0 35px;
  }
}
.contact-radio input[type=radio] {
  opacity: 0;
  position: absolute;
}
.contact-radio .wpcf7-list-item-label::before {
  content: "";
  background: #fff;
  border: 1px solid #1391e6;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  transition: background-color 0.3s;
}
.contact-radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #1391e6;
  box-shadow: inset 0 0 0 4px #fff;
}

/* checkbox
-------------------------------------------*/
.contact-item-checkbox {
  padding: 20px 0;
}
@media (max-width: 767px) {
  .contact-item-checkbox {
    padding: 25px 0;
  }
}

.checkbox-ttl {
  position: relative;
  display: inline-block;
}

.contact-item-checkbox_subtext {
  font-size: 1.1rem;
  color: #888888;
  margin-top: 5px;
}

.checkbox-list {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .checkbox-list {
    margin-top: 0;
  }
}

.checkbox-item + .checkbox-item {
  margin-left: 32px;
}
@media (max-width: 767px) {
  .checkbox-item + .checkbox-item {
    margin-left: 24px;
  }
}
@media (max-width: 767px) {
  .checkbox-item + .checkbox-item:nth-child(3n+4) {
    margin-left: 0;
    margin-top: 15px;
  }
}
.checkbox-item + .checkbox-item:nth-child(4n+5) {
  margin-left: 0;
}
@media (max-width: 767px) {
  .checkbox-item + .checkbox-item:nth-child(4n+5) {
    margin-left: 24px;
  }
}
.checkbox-item:nth-child(n+5) {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .checkbox-item:nth-child(n+5) {
    margin-top: 15px;
  }
}

/* checkbox wpcf7
-------------------------------------------*/
.checkbox-item .wpcf7-form-control-wrap {
  display: block;
}
.checkbox-item span.wpcf7-list-item {
  margin: 0 30px 0 0; /*項目右側の余白設定と、デフォルトの左側の余白を打ち消す*/
  position: relative;
}
@media (max-width: 767px) {
  .checkbox-item span.wpcf7-list-item {
    margin: 0 24px 0 0;
  }
  .checkbox-item span.wpcf7-list-item:nth-child(3n+3) {
    margin-right: 0;
  }
}
.checkbox-item span.wpcf7-list-item:nth-child(4n+4) {
  margin-right: 0;
}
@media (max-width: 767px) {
  .checkbox-item span.wpcf7-list-item:nth-child(4n+4) {
    margin-right: 24px;
  }
}
.checkbox-item span.wpcf7-list-item + .checkbox-item span.wpcf7-list-item {
  margin-left: 32px;
}
@media (max-width: 767px) {
  .checkbox-item span.wpcf7-list-item + .checkbox-item span.wpcf7-list-item {
    margin-left: 24px;
  }
}
@media (max-width: 767px) {
  .checkbox-item span.wpcf7-list-item + .checkbox-item span.wpcf7-list-item:nth-child(3n+4) {
    margin-left: 0;
    margin-top: 15px;
  }
}
.checkbox-item span.wpcf7-list-item + .checkbox-item span.wpcf7-list-item:nth-child(4n+5) {
  margin-left: 0;
}
@media (max-width: 767px) {
  .checkbox-item span.wpcf7-list-item + .checkbox-item span.wpcf7-list-item:nth-child(4n+5) {
    margin-left: 24px;
  }
}
.checkbox-item span.wpcf7-list-item:nth-child(n+5) {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .checkbox-item span.wpcf7-list-item:nth-child(n+5) {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  .checkbox-item span.wpcf7-list-item:nth-child(n+3) {
    margin-top: 15px;
  }
}
.checkbox-item .wpcf7-list-item-label {
  cursor: pointer; /*labelにhoverした時にカーソルを表示させる*/
  font-size: 1.4rem; /*項目のフォントサイズ*/
}
.checkbox-item input[type=checkbox] {
  opacity: 0; /*デフォルトのチェックボックスを見えなくする*/
  position: absolute;
}
.checkbox-item .wpcf7-list-item-label::before {
  /*チェックボックスのデザイン*/
  content: "";
  display: inline-block;
  border: 1px solid #1391e6;
  background: #fff;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  border-radius: 0;
}
@media (max-width: 767px) {
  .checkbox-item .wpcf7-list-item-label::before {
    margin-right: 8px;
  }
}
.checkbox-item .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  border-bottom: 4px solid #1391e6;
  border-left: 4px solid #1391e6;
  width: 25px;
  height: 14px;
  top: 0px;
  left: 0px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: 0.3s;
}
.checkbox-item input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* select
-------------------------------------------*/
select {
  width: 100%;
  font-size: 1.6rem;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #f6f6f6;
  border: none;
  border-radius: 4px;
  height: 48px;
  padding: 12px 16px;
  cursor: pointer;
  background-image: url(../img/select-arrow.svg);
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
select:focus {
  outline: 2px solid #0060a0;
}

.contact-item-select {
  padding: 30px 0;
}
@media (max-width: 767px) {
  .contact-item-select {
    padding: 22px 0;
  }
}

/* date
-------------------------------------------*/
.contact-item-reserve-date {
  padding: 25px 0;
}
@media (max-width: 767px) {
  .contact-item-reserve-date {
    padding: 25px 0;
  }
}

.contact-item-ttl-date {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .contact-item-ttl-date {
    margin-top: -1px;
  }
}

.contact-itemBox-contact-date {
  margin-top: 6px;
}
@media (max-width: 767px) {
  .contact-itemBox-contact-date {
    margin-top: 6px;
  }
}

.contact-date [type=date] {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/icon-calendar.svg);
  background-position: right 12px center;
  background-repeat: no-repeat;
  font-size: 1.6rem;
}
.contact-date input ::-moz-placeholder {
  color: #c2c2c2;
}
.contact-date input ::placeholder {
  color: #c2c2c2;
}
.contact-date + .contact-date {
  margin-top: 20px;
}
.contact-date input {
  max-width: 488px;
  width: 100%;
}
.contact-date input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}

[type=date]:focus {
  outline: 2px solid #0060a0;
}

.itemBox-reserve_textarea {
  margin-top: 0;
}
/*# sourceMappingURL=style.css.map */