@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

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

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1rem;
}

body {
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  -webkit-text-size-adjust: none;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
  color: #333;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

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

ul,
ol {
  list-style: none;
}

em,
i {
  font-style: normal;
}

/* フォントサイズ
-------------------------------------------*/
html {
  font-size: 52.5%;
}

@media screen and (min-width: 350px) {
  html {
    font-size: 62.5%;
  }
}

@media screen and (min-width: 414px) {
  html {
    font-size: 72.5%;
  }
}

@media screen and (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}

/* body
-------------------------------------------*/
body {
  text-align: left;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333333;
  width: 100%;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}

.wrapper {
  position: relative;
}

.wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 1;
  z-index: 999;
  animation: pageShow 0.6s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0s forwards;
  pointer-events: none;
}

@keyframes pageShow {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* コンテンツ幅
-------------------------------------------*/
.inner {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner {
    padding: 0 6%;
  }
}

.inner_s {
  width: 100%;
  max-width: 1075px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner_s {
    padding: 0 6%;
  }
}

.inner_l {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 991px) {
  .inner_l {
    padding: 0 6%;
  }
}

/*------------------------------------
clearfix 
------------------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clearfix {
  display: block;
}

/* End IE-mac */
.clear {
  clear: both;
}

/*------------------------------------
リンク 
------------------------------------*/
a {
  color: #333333;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  /* ホバーアクション */
  .hover {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .hover:hover {
    opacity: 0.6 !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*------------------------------------
テキスト
------------------------------------*/
.bold {
  font-weight: bold;
}

.txt_co_orange {
  color: #ff7f00;
}

.txt_center {
  text-align: center;
}

/*------------------------------------
スマホ　非表示
------------------------------------*/
@media screen and (min-width: 992px) {
  .disp_sp {
    display: none !important;
  }
}

/*------------------------------------
PC　非表示
------------------------------------*/
@media screen and (max-width: 991px) {
  .disp_pc {
    display: none !important;
  }
}

/*------------------------------------
margin
------------------------------------*/
.mt0 {
  margin-top: 0 !important;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

body.is_hidden {
  overflow: hidden;
}

/*------------------------------------
header
------------------------------------*/
@media screen and (min-width: 992px) {
  .header {
    position: fixed;
    width: 100%;
    top: 0;
    height: 90px;
    z-index: 100;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    background: #fff;
  }
  .header-wrap {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header-inner {
    max-width: 1320px;
    min-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .header-logo {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    background: #05693C;
    padding: 0 30px;
    max-width: 310px;
    height: 100%;
  }
  .header-logo img {
    max-width: 170px;
  }
  .header-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    padding-right: 15%;
    width: 80%;
  }
}

@media screen and (max-width: 1300px) and (min-width: 992px) {
  .header-nav {
    padding-right: 200px;
  }
}

@media screen and (min-width: 992px) {
  .header-contact {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 2px solid #05693C;
    background: #05693C;
    height: 60px;
    border-radius: 50px;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header-contact > span {
    display: block;
    text-align: center;
    color: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header-contact > span:nth-child(1) {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 1300px) and (min-width: 992px) {
  .header-contact > span:nth-child(1) {
    font-size: 1.2vw;
    /*font-size: 1.333vw;*/
  }
}

@media screen and (min-width: 992px) {
  .header-contact > span:nth-child(2) {
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 1;
  }
}

@media screen and (max-width: 1300px) and (min-width: 992px) {
  .header-contact > span:nth-child(2) {
    font-size: 0.833vw;
  }
}

@media screen and (min-width: 992px) {
  .header-contact:hover {
    background: #fff;
  }
  .header-contact:hover > span {
    color: #05693C;
  }
  .header .gnav {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .header .gnav > ul {
    display: flex;
    height: 100%;
    align-items: center;
  }
  .header .gnav > ul > li {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
  }
  .header .gnav > ul > li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: #05693C;
    width: calc(100% - 40px);
    margin: auto;
    height: 3px;
    opacity: 0;
  }
  .header .gnav > ul > li > a,
  .header .gnav > ul > li > div:nth-child(1) {
    display: inline-block;
    position: relative;
    color: #05693C;
    font-size: 15px;
    cursor: pointer;
    padding: 20px 20px 15px 20px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav > ul > li > a > span,
  .header .gnav > ul > li > div:nth-child(1) > span {
    display: block;
    text-align: center;
  }
  .header .gnav > ul > li > a > span:nth-child(1),
  .header .gnav > ul > li > div:nth-child(1) > span:nth-child(1) {
    font-size: 1.6rem;
    font-weight: 700;
    position: relative;
    line-height: 1;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 1300px) and (min-width: 992px) {
  .header .gnav > ul > li > a,
  .header .gnav > ul > li > div:nth-child(1) {
    padding: 20px 1vw 15px 1vw;
  }
  .header .gnav > ul > li > a > span:nth-child(1),
  .header .gnav > ul > li > div:nth-child(1) > span:nth-child(1) {
    font-size: 1.2vw;
    /*font-size: 1.333vw;*/
  }
}

@media screen and (min-width: 992px) {
  .header .gnav > ul > li > a > span:nth-child(1)::after,
  .header .gnav > ul > li > div:nth-child(1) > span:nth-child(1)::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0.2em;
    height: 8px;
    border-radius: 2px;
    background: #EBEDD9;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 0;
    z-index: -1;
  }
  .header .gnav > ul > li > a > span:nth-child(2),
  .header .gnav > ul > li > div:nth-child(1) > span:nth-child(2) {
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 1;
  }
}

@media screen and (max-width: 1300px) and (min-width: 992px) {
  .header .gnav > ul > li > a > span:nth-child(2),
  .header .gnav > ul > li > div:nth-child(1) > span:nth-child(2) {
    font-size: 0.833vw;
  }
}

@media screen and (min-width: 992px) {
  .header .gnav > ul > li > a:hover > span:nth-child(1)::after,
  .header .gnav > ul > li > div:nth-child(1):hover > span:nth-child(1)::after {
    width: 100%;
  }
  .header .gnav-mega {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: relative;
  }
  .header .gnav-mega > a,
  .header .gnav-mega > div:first-child {
    padding-right: 40px !important;
    position: relative;
  }
  .header .gnav-mega > a::after,
  .header .gnav-mega > div:first-child::after {
    content: "";
    position: absolute;
    border-right: 2px solid #05693C;
    border-top: 2px solid #05693C;
    right: 20px;
    top: -12px;
    bottom: 0;
    margin: auto;
    height: 8px;
    width: 8px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  .header .gnav-mega:hover .gnav-sub {
    top: 100%;
    visibility: visible;
    opacity: 1;
    z-index: -1;
  }
  .header .gnav-sub {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
  }
  .header .gnav-sub .inner {
    padding: 0;
  }
  .header .gnav-sub ul {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.05);
  }
  .header .gnav-sub ul li {
    position: relative;
  }
  .header .gnav-sub ul li + li {
    margin-top: 15px;
  }
  .header .gnav-sub ul li a {
    position: relative;
    display: block;
    width: 100%;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #05693C;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav-sub ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 7px;
    height: 7px;
    border-top: 2px solid #05693C;
    border-right: 2px solid #05693C;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav-sub ul li a:hover {
    opacity: 0.6;
  }
}

@media screen and (max-width: 991px) {
  .header {
    background: #fff;
    height: 50px;
    width: 100%;
  }
  .header_inner {
    width: 100%;
    height: 50px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
  }
  .header_logo {
    height: 25px;
  }
  .header_logo > img {
    height: 25px;
  }
}

@media screen and (min-width: 992px) {
  .index #header {
    height: 120px;
    box-shadow: none;
    background: none;
    background: #fff;
    position: relative;
  }
  .index #header .header-nav {
    justify-content: flex-end;
    padding-right: 220px;
  }
}

@media screen and (max-width: 1300px) and (min-width: 992px) {
  .index #header .header-nav {
    padding-right: 200px;
  }
}

@media screen and (min-width: 992px) {
  .index #header .header-logo {
    border-bottom-right-radius: 70px;
  }
}

.index .header.--fixed {
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.index .header.--fixed.active {
  opacity: 1;
  visibility: visible;
}

@keyframes headerShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (min-width: 992px) {
  .shop .header #nav_shop::after {
    opacity: 1;
  }
}

@media screen and (min-width: 992px) {
  .about .header #nav_about::after {
    opacity: 1;
  }
}

@media screen and (min-width: 992px) {
  .service .header #nav_service::after {
    opacity: 1;
  }
}

@media screen and (min-width: 992px) {
  .information .header #nav_information::after {
    opacity: 1;
  }
}

@media screen and (max-width: 991px) {
  .sp_nav {
    z-index: 101;
    position: relative;
  }
  .sp_nav_main {
    padding: 0 0 0 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .sp_nav_main.is_active {
    background: #262626;
  }
  .sp_nav_main.is_active .sp_nav_logo {
    opacity: 0;
  }
  .sp_nav_logo {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45%;
    background: #05693C;
    padding: 20px 3% 20px 0;
    max-width: 310px;
    border-bottom-right-radius: 70px;
  }
  .sp_nav_logo img {
    max-width: 120px;
    display: block;
    width: 100%;
  }
  .sp_nav_icons {
    padding-left: 15px;
    margin-bottom: 35px;
  }
  .sp_nav_icons > ul {
    display: flex;
    align-items: center;
  }
  .sp_nav_icons > ul > li:not(:last-child) {
    margin-right: 25px;
  }
  .sp_nav_icons > ul > li > a {
    display: block;
    position: relative;
  }
  .sp_nav_icons > ul > li > a::before {
    content: "";
    background: #fff;
    position: absolute;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .sp_nav_icons > ul > li > a > img {
    width: 38px;
    height: 38px;
  }
  .sp_nav_hum {
    position: fixed;
    right: 15px;
    top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px 0 #ccc;
    padding-top: 2px;
  }
  .sp_nav_hum.is_active {
    box-shadow: none;
    background: none;
  }
  .sp_nav_hum.is_active > span {
    color: #fff;
  }
  .sp_nav_hum > span {
    font-size: 0.8rem;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0.01em;
    line-height: 1;
    font-weight: 600;
    color: #05693C;
    padding-top: 5px;
    transform: scale(0.8);
  }
  .sp_nav_contact {
    display: flex;
    justify-content: center;
    background: #fff;
    color: #05693C;
    border-radius: 50px;
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 10px 20px;
    margin: 30px auto 0;
    width: 80%;
    max-width: 200px;
    font-weight: bold;
    text-align: center;
  }
}

@media screen and (max-width: 991px) and (min-width: 992px) {
  .sp_nav_contact {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .sp_nav_contact:hover {
    background: #ce922d;
    color: #fff;
  }
}

@media screen and (max-width: 991px) and (max-width: 991px) {
  .sp_nav_contact {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 991px) {
  .sp_nav #sp_menu_btn {
    width: 30px;
    height: 14px;
    display: block;
    z-index: 101;
    cursor: pointer;
    position: relative;
  }
  .sp_nav #sp_menu_btn span {
    width: 20px;
    height: 2px;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    background: #05693C;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .sp_nav #sp_menu_btn span:nth-of-type(1) {
    top: 0;
  }
  .sp_nav #sp_menu_btn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .sp_nav #sp_menu_btn span:nth-of-type(3) {
    bottom: 0;
  }
  .sp_nav .is_active #sp_menu_btn span {
    background: #fff;
  }
  .sp_nav .is_active #sp_menu_btn span:nth-of-type(1) {
    transform: translateY(0) rotate(-45deg);
  }
  .sp_nav .is_active #sp_menu_btn span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_nav .is_active #sp_menu_btn span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
  }
  .sp_nav #sp_menu_block {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    z-index: -1;
    background: #05693C;
    padding: 90px 30px 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .sp_nav #sp_menu_block > ul > li > a,
  .sp_nav #sp_menu_block > ul > li > div {
    color: #fff;
  }
  .sp_nav #sp_menu_block > ul > li > a > span,
  .sp_nav #sp_menu_block > ul > li > div > span {
    display: block;
  }
  .sp_nav #sp_menu_block > ul > li > a > span:nth-child(1),
  .sp_nav #sp_menu_block > ul > li > div > span:nth-child(1) {
    font-weight: 700;
    display: block;
    line-height: 1.5;
  }
  .sp_nav #sp_menu_block > ul > li > a > span:nth-child(2),
  .sp_nav #sp_menu_block > ul > li > div > span:nth-child(2) {
    padding-top: 5px;
    font-size: 1rem;
    display: block;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    line-height: 1;
    transform: scale(0.8);
    transform-origin: left;
  }
  .sp_nav #sp_menu_block > ul > li > ul {
    padding-top: 1em;
  }
  .sp_nav #sp_menu_block > ul > li > ul > li:not(:last-child) {
    margin-bottom: 10px;
  }
  .sp_nav #sp_menu_block > ul > li > ul > li > a {
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
    position: relative;
    padding-left: 10px;
    line-height: 1.4;
  }
  .sp_nav #sp_menu_block > ul > li > ul > li > a::before {
    content: '';
    position: absolute;
    top: 0.8em;
    left: 0;
    margin: auto;
    width: 5px;
    height: 1px;
    background: #fff;
  }
  .sp_nav #sp_menu_block > ul > li > ul > li > a > span {
    display: inline-block;
    padding-left: 25px;
    font-size: 1rem;
    white-space: nowrap;
  }
  .sp_nav #sp_menu_block > ul > li:not(:last-child) {
    margin-bottom: 30px;
  }
  .sp_nav #sp_menu_block .sp_nav_follow {
    padding-top: 30px;
  }
  .sp_nav #sp_menu_block .sp_nav_follow > span {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 3px;
  }
  .sp_nav #sp_menu_block .sp_nav_follow > div {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .sp_nav #sp_menu_block .sp_nav_follow > div > img {
    width: 15px;
    display: block;
  }
  .sp_nav #sp_menu_block.is_active {
    opacity: 1;
    pointer-events: all;
  }
}

/*------------------------------------
footer
------------------------------------*/
.footer {
  margin-top: 100px;
  background: #05693c;
  padding: 50px 0 70px;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .footer {
    padding: 30px 0;
    margin-top: 85px;
  }
}

.footer-main {
  display: flex;
  justify-content: flex-start;
}

@media screen and (min-width: 992px) and (max-width: 1259px) {
  .footer-main {
    justify-content: space-between;
  }
}

@media screen and (max-width: 991px) {
  .footer-main {
    flex-direction: column;
  }
}

.footer-inner {
  position: relative;
  max-width: 1240px;
  min-width: 960px;
  padding: 0 30px;
  margin: 0 auto;
}

@media screen and (max-width: 991px) {
  .footer-inner {
    width: 100%;
    display: block;
    padding: 0;
    min-width: 100%;
    padding: 0 6%;
  }
}

.footer-logo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 15px;
}

.footer-logo a {
  width: 100%;
}

@media screen and (max-width: 991px) {
  .footer-logo {
    justify-content: flex-start;
    margin-bottom: 30px;
  }
}

.footer-logo > a > img {
  display: block;
  max-width: 200px;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .footer-logo > a > img {
    max-width: 140px;
  }
}

.footer-nav {
  display: flex;
}

@media screen and (min-width: 1260px) {
  .footer-nav {
    padding-left: 150px;
  }
}

@media screen and (min-width: 1101px) and (max-width: 1259px) {
  .footer-nav {
    padding-left: 0;
    justify-content: center;
    width: 77%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1100px) {
  .footer-nav {
    padding-left: 0;
    justify-content: center;
    width: 80%;
  }
}

@media screen and (max-width: 991px) {
  .footer-nav {
    justify-content: space-between;
    padding-bottom: 30px;
  }
}

.footer-nav .item {
  width: 48%;
}

@media screen and (min-width: 992px) {
  .footer-nav-main {
    margin-right: 60px;
  }
}

@media screen and (max-width: 991px) {
  .footer-nav-main {
    margin-bottom: 25px;
  }
}

.footer-nav-main > li > a,
.footer-nav-main > li > div {
  position: relative;
  display: block;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 991px) {
  .footer-nav-main > li > a,
  .footer-nav-main > li > div {
    font-size: 1.4rem;
    margin-bottom: 0;
  }
}

.footer-nav-main > li > a > span,
.footer-nav-main > li > div > span {
  font-weight: 700;
  display: block;
  line-height: 1.5;
}

@media screen and (min-width: 992px) and (max-width: 1100px) {
  .footer-nav-main > li > a > span,
  .footer-nav-main > li > div > span {
    font-size: 1.333vw;
  }
}

.footer-nav-main > li > a > b,
.footer-nav-main > li > div > b {
  padding-top: 5px;
  font-size: 1rem;
  display: block;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  transform: scale(0.8);
  transform-origin: left;
}

.footer-nav-main > li:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  .footer-nav-main > li > a:hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 1100px) {
  .footer-nav-main:nth-child(2) {
    margin-right: 30px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1100px) {
  .footer-nav-main:nth-child(2) {
    margin-right: 15px;
  }
}

.footer-nav-sub {
  padding-top: 20px;
}

.footer-nav-sub > li > a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5;
  padding-left: 10px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

.footer-nav-sub > li > a::before {
  content: "";
  position: absolute;
  top: 0.8em;
  left: 0;
  margin: auto;
  width: 5px;
  height: 1px;
  background: #fff;
}

@media screen and (max-width: 991px) {
  .footer-nav-sub > li > a {
    font-size: 1.3rem;
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .footer-nav-sub > li > a:hover {
    opacity: 0.6;
  }
}

.footer-nav-sub > li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-nav-last > li > a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.5;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
}

@media screen and (min-width: 992px) {
  .footer-nav-last > li > a:hover {
    opacity: 0.6;
  }
}

.footer-nav-last > li > a.ico-list > span {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

.footer-nav-last > li > a.ico-list > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../img/common/icon_list.svg) left bottom no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
}

.footer-nav-last > li:not(:last-child) {
  margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .footer-nav-last > li:not(:last-child) {
    margin-bottom: 20px;
  }
}

.footer-insta {
  margin-bottom: 5px;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 991px) {
  .footer-insta {
    width: 18px;
    height: 18px;
  }
}

.footer-insta a {
  display: block;
}

.footer-insta a img {
  display: block;
  width: 100%;
}

.footer-copyright small {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  font-size: 1rem;
  display: block;
}

.footer-banner {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  margin-top: 20px;
}

.footer-banner a {
  color: #fff;
  font-size: 1.3rem;
}

@media screen and (max-width: 991px) {
  .footer-banner {
    max-width: 50%;
  }

  .footer-banner a {
    font-size: 1.1rem;
  }
}

.sumadeco-banner {
  margin: 0 auto;
  max-width: 1240px;
  padding: 30px 30px 0;
}

@media screen and (max-width: 991px) {
  .sumadeco-banner {
    padding: 30px 6%  0;
  }
}

.pagetop {
  background: #fff;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

@media screen and (max-width: 991px) {
  .pagetop {
    padding: 15px 0;
  }
}

.pagetop img {
  max-width: 75px;
}

@media screen and (max-width: 991px) {
  .pagetop img {
    max-width: 55px;
  }
}

.main {
  overflow: hidden;
  padding-top: 90px;
}

/*------------------------------------
TOPページ
------------------------------------*/
.index .main {
  padding-top: 30px;
}

@media screen and (max-width: 991px) {
  .index .main {
    padding-top: 90px;
  }
}

/* mv
-------------------------------------------*/
.topMv {
  margin-bottom: 100px;
}

@media screen and (max-width: 991px) {
  .topMv {
    overflow: hidden;
    margin-bottom: 80px;
  }
}

.topMv-wrap {
  position: relative;
}

@media screen and (max-width: 991px) {
  .topMv-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
}

.topMv-txt {
  z-index: 2;
  position: relative;
  pointer-events: none;
}

@media screen and (min-width: 992px) {
  .topMv-txt {
    padding-top: 75px;
  }
}

@media screen and (max-width: 991px) {
  .topMv-txt {
    padding-top: 20px;
  }
}

.topMv-txt p {
  font-size: 1.5rem;
  width: 25%;
  line-height: 2;
}

@media screen and (min-width: 992px) and (max-width: 1280px) {
  .topMv-txt p {
    width: 22%;
  }
}

@media screen and (max-width: 991px) {
  .topMv-txt p {
    font-size: 1.4rem;
    width: 90%;
  }
}

.topMv-scroll {
  font-size: 1.4rem;
  font-weight: 700;
  color: #05693c;
  padding-bottom: 140px;
  padding-top: 50px;
  text-align: center;
  width: 24%;
  position: relative;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.15em;
}

@media screen and (max-width: 991px) {
  .topMv-scroll {
    width: 100%;
    padding-top: 10px;
    font-size: 1rem;
    padding-bottom: 25px;
  }
}

.topMv-scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 2px;
  height: 130px;
  background: #05693c;
}

@media screen and (max-width: 991px) {
  .topMv-scroll::after {
    height: 20px;
    width: 1px;
  }
}

.topMv-followus {
  position: absolute;
  right: -60px;
  top: 25%;
  z-index: 2;
}

.topMv-ttl {
  margin-bottom: 35px;
  font-size: 4.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.6;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .topMv-ttl {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}

.topMv-img {
  position: relative;
  z-index: 1;
  max-width: 795px;
  width: 120%;
  margin-left: auto;
}

@media screen and (min-width: 992px) {
  .topMv-img {
    position: absolute;
    right: 0;
    top: 0;
  }
}

@media screen and (min-width: 992px) and (max-width: 1280px) {
  .topMv-img {
    margin-right: 50px;
    width: 70%;
  }
}

.topMv-img .slide-num {
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 25px;
  position: absolute;
  bottom: -40px;
  right: -25px;
  z-index: 2;
}

@media screen and (min-width: 992px) {
  .topMv-img .slide-num {
    bottom: -47px;
    right: -27px;
  }
}

@media screen and (max-width: 991px) {
  .topMv-img .slide-num {
    width: 60px;
    height: 60px;
    bottom: -35px;
  }
}

.topMv-img .slide-num::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 103px;
  height: 103px;
  background: url(../img/index/line_slide_num.svg) center center no-repeat;
  background-size: contain;
}

@media screen and (min-width: 992px) {
  .topMv-img .slide-num::after {
    top: -12px;
  }
}

@media screen and (max-width: 991px) {
  .topMv-img .slide-num::after {
    width: 45px;
    height: 45px;
    background: url(../img/index/line_slide_num_sp.svg) center center no-repeat;
    background-size: contain;
    right: -18px;
    bottom: -7px;
  }
}

@media screen and (max-width: 991px) {
  .topMv-img .slide-num {
    right: 15%;
    padding-bottom: 0;
  }
}

.topMv-img .slide-num > div {
  font-family: "Montserrat", sans-serif;
}

.topMv-img .slide-num > div.current-wrap {
  overflow: hidden;
  width: 55px;
  height: 50px;
  display: flex;
  align-items: center;
}

@media screen and (min-width: 992px) {
  .topMv-img .slide-num > div.current-wrap {
    margin-left: -2px;
    margin-top: -5px;
  }
}

@media screen and (max-width: 991px) {
  .topMv-img .slide-num > div.current-wrap {
    width: 40px;
    height: 40px;
    margin-left: -1px;
  }
}

.topMv-img .slide-num > div.current-wrap .current {
  font-size: 4.2rem;
  font-weight: 600;
  color: #05693c;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .topMv-img .slide-num > div.current-wrap .current {
    font-size: 2.9rem;
  }
}

.topMv-img .slide-num > div.current-wrap .current.active {
  animation: slideNumber 1s ease 0s forwards;
}

.topMv-img .slide-num > div.total {
  font-size: 2.7rem;
  font-weight: 600;
  color: #05693c;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  line-height: 1;
  padding-right: 10px;
}

@media screen and (min-width: 992px) {
  .topMv-img .slide-num > div.total {
    margin-bottom: -5px;
  }
}

@media screen and (max-width: 991px) {
  .topMv-img .slide-num > div.total {
    font-size: 1.7rem;
    padding-right: 0;
  }
}

.topMv-slide {
  position: relative;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

.topMv-slide.slick-initialized {
  opacity: 1;
}

@keyframes zoomIn {
  0% {
    transform: scale(1.7);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideNumber {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* 重要なお知らせ
-------------------------------------------*/
.topCaution {
  margin-bottom: 85px;
}

@media screen and (max-width: 991px) {
  .topCaution {
    margin-bottom: 80px;
  }
}

.topCaution .inner {
  max-width: 950px;
}

.topCaution-ttl {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #05693c;
  position: relative;
  padding-left: 30px;
}

@media screen and (max-width: 991px) {
  .topCaution-ttl {
    font-size: 1.7rem;
  }
}

.topCaution-ttl::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/index/icon_bell.svg) left center no-repeat;
  background-size: contain;
  width: 21px;
  height: 25px;
}

/* ABOUT
-------------------------------------------*/
.topAbout {
  margin-bottom: 140px;
}

@media screen and (max-width: 991px) {
  .topAbout {
    margin-bottom: 110px;
  }
}

.topAbout .inner {
  max-width: 1300px;
}

.topAbout-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .topAbout-main {
    flex-direction: column;
  }
}

.topAbout-main .item {
  width: 55%;
}

@media screen and (max-width: 991px) {
  .topAbout-main .item {
    width: 100%;
  }
}

.topAbout-main .item:nth-child(1) {
  position: relative;
}

@media screen and (max-width: 991px) {
  .topAbout-main .item:nth-child(1) {
    margin-bottom: 30px;
  }
}

.topAbout-main .item:nth-child(2) {
  width: 40%;
}

@media screen and (max-width: 991px) {
  .topAbout-main .item:nth-child(2) {
    width: 100%;
  }
  .topAbout-main .item:nth-child(2) .ttl > div {
    text-align: left;
  }
}

.topAbout-main .item:nth-child(2) > p {
  width: 70%;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .topAbout-main .item:nth-child(2) > p {
    width: 90%;
  }
}

@media screen and (max-width: 991px) {
  .topAbout-main .item:nth-child(2) > p {
    width: 100%;
  }
}

.topAbout-main .item:nth-child(2) .btn {
  margin: 30px auto 0 0;
}

@media screen and (max-width: 991px) {
  .topAbout-main .item:nth-child(2) .btn {
    margin: 20px auto 0;
  }
}

/* SEARCH
-------------------------------------------*/
.topSearch {
  padding: 50px 0;
  position: relative;
  background: url(../img/index/bg_search.png) left top repeat-y;
  background-size: 100%;
  margin-bottom: 80px;
}

.topSearch-btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #05693c;
  color: #fff;
  border: 2px solid #05693c;
  border-radius: 100px;
  line-height: 1.4;
  padding: 20px;
  margin: 30px auto 0;
  width: 90%;
  max-width: 300px;
  text-align: center;
  cursor: pointer;
}

.topSearch-btn > span {
  display: inline-block;
  position: relative;
  padding-left: 30px;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.topSearch-btn > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/common/icon_search.svg) left center no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
}

.topSearch-btn > p {
  font-size: 1.2rem;
}

/* SERVICE
-------------------------------------------*/
.topService {
  margin-bottom: 140px;
}

@media screen and (max-width: 991px) {
  .topService {
    margin-bottom: 80px;
  }
}

.topService .ttl {
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .topService .ttl {
    margin-bottom: 40px;
  }
  .topService .ttl span {
    margin-bottom: 32px;
  }
  .topService .ttl span img {
    max-width: 45%;
  }
  .topService .ttl div img {
    max-width: 86%;
  }
}

.topService-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .topService-list {
    width: 100%;
  }
}

.topService-list .item {
  max-width: 450px;
}

@media screen and (min-width: 992px) {
  .topService-list .item {
    width: 48%;
  }
  .topService-list .item:nth-child(n + 3) {
    margin-top: 60px;
  }
}

@media screen and (max-width: 991px) {
  .topService-list .item {
    width: 100%;
  }
  .topService-list .item:not(:last-child) {
    margin-bottom: 35px;
  }
}

.topService-list .item > a {
  display: block;
}

.topService-list .item > a > div {
  padding-top: 10px;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .topService-list .item > a > div {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.topService-list .item > p {
  font-size: 1.5rem;
  width: 95%;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .topService-list .item > p {
    width: 100%;
    font-size: 1.4rem;
  }
}

.aboutService {
  margin-bottom: 140px;
}

@media screen and (max-width: 991px) {
  .aboutService {
    margin-bottom: 80px;
  }
}

.aboutService .ttl {
  text-align: center;
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .aboutService .ttl {
    margin-bottom: 40px;
    letter-spacing: 0.15em;
    white-space: nowrap;
  }
  .aboutService .ttl span {
    margin-bottom: 32px;
  }
  .aboutService .ttl span img {
    max-width: 45%;
  }
  .aboutService .ttl div img {
    max-width: 86%;
  }
}

.aboutService-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .aboutService-list {
    width: 100%;
  }
}

.aboutService-list .item {
  max-width: 450px;
  width: 48%;
}

.aboutService-list .item:nth-child(n + 3) {
  margin-top: 60px;
}

@media screen and (max-width: 991px) {
  .aboutService-list .item:nth-child(n + 3) {
    margin-top: 8%;
  }
}

.aboutService-list .item > a {
  display: block;
}

.aboutService-list .item > a > div {
  padding-top: 10px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .aboutService-list .item > a > div {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.aboutService-list .item > p {
  font-size: 1.5rem;
  width: 95%;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .aboutService-list .item > p {
    width: 100%;
    font-size: 1.4rem;
  }
}

/* NEWS
-------------------------------------------*/
.topNews {
  margin-bottom: 140px;
}

@media screen and (max-width: 991px) {
  .topNews {
    margin-bottom: 80px;
  }
}

.topNews-wrap {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .topNews-wrap {
    width: 100%;
    flex-wrap: wrap;
    position: relative;
    padding-bottom: 80px;
  }
}

.topNews-wrap > .item:nth-child(1) {
  width: 25%;
}

@media screen and (max-width: 991px) {
  .topNews-wrap > .item:nth-child(1) {
    width: 100%;
    margin-bottom: 20px;
  }
}

.topNews-wrap > .item:nth-child(1) .ttl {
  padding-top: 30px;
}

.topNews-wrap > .item:nth-child(1) .ttl > div {
  font-size: 4rem;
  letter-spacing: 0.2em;
}

@media screen and (max-width: 991px) {
  .topNews-wrap > .item:nth-child(1) .ttl > div {
    font-size: 3rem;
    font-size: 2.9rem;
  }
}

.topNews-wrap > .item:nth-child(1) .btn {
  margin-right: auto;
  margin-left: 0;
}

@media screen and (max-width: 991px) {
  .topNews-wrap > .item:nth-child(1) .btn {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}

.topNews-wrap > .item:nth-child(2) {
  width: 75%;
  padding-left: 100px;
}

@media screen and (max-width: 991px) {
  .topNews-wrap > .item:nth-child(2) {
    width: 100%;
    padding: 0;
  }
}

/* インスタグラム
-------------------------------------------*/
.topInsta {
  margin-bottom: 140px;
}

@media screen and (max-width: 991px) {
  .topInsta {
    margin-bottom: 120px;
  }
}

.topInsta-lead {
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .topInsta-lead {
    margin-bottom: 25px;
  }
}

.topInsta-lead > p {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .topInsta-lead > p {
    text-align: left;
    width: 85%;
    margin: auto;
  }
}

.topInsta-ttl {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 15px;
}

.topInsta-ttl > span {
  display: block;
  position: relative;
  padding-left: 35px;
  font-size: 2.6rem;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  color: #05693c;
  letter-spacing: 0.1em;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .topInsta-ttl > span {
    font-size: 1.8rem;
    padding-left: 27px;
  }
}

.topInsta-ttl > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/common/icon_insta_g.svg) left center no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}

@media screen and (max-width: 991px) {
  .topInsta-ttl > span::before {
    width: 17px;
    height: 17px;
  }
}

.topInsta-ttl > div {
  font-size: 3rem;
  font-weight: 700;
  color: #05693c;
  letter-spacing: 0.2em;
  position: relative;
  padding: 0 50px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .topInsta-ttl > div {
    font-size: 2.2rem;
    padding: 0 40px;
  }
}

.topInsta-ttl > div::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(../img/index/line_insta_left.svg) left center no-repeat;
  background-size: contain;
  width: 45px;
  height: 45px;
}

@media screen and (max-width: 991px) {
  .topInsta-ttl > div::before {
    width: 40px;
    height: 40px;
  }
}

.topInsta-ttl > div::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  background: url(../img/index/line_insta_right.svg) left center no-repeat;
  background-size: contain;
  width: 45px;
  height: 45px;
}

@media screen and (max-width: 991px) {
  .topInsta-ttl > div::after {
    width: 40px;
    height: 40px;
  }
}

.topInsta-main {
  position: relative;
  padding-bottom: 50px;
}

.topInsta-main > * {
  position: relative;
}

.topInsta-main::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #ebedd9;
  width: 100%;
  height: 70%;
}

@media screen and (max-width: 991px) {
  .topInsta .btn {
    margin-top: 20px;
  }
}

/*------------------------------------
下層ページ
------------------------------------*/
/* 大見出し
-------------------------------------------*/
.subTitle {
  background: #edefdd;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
  margin-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .subTitle {
    padding: 0 0 30px;
    position: relative;
    margin-bottom: 30px;
  }
  .subTitle::before {
    content: "";
    position: absolute;
    top: -90px;
    left: 0;
    right: 0;
    margin: auto;
    background: #edefdd;
    width: 100%;
    height: 90px;
  }
}

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

.subTitle h1 > span {
  font-size: 3rem;
  font-weight: 700;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .subTitle h1 > span {
    font-size: 1.8rem;
  }
}

.subTitle h1 > b {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .subTitle h1 > b {
    font-size: 1.3rem;
  }
}

/* 店舗を探す
-------------------------------------------*/
.shopSearch-lead {
  margin-bottom: 65px;
}

.shopSearch-input {
  margin-bottom: 50px;
}

@media screen and (max-width: 991px) {
  .shopSearch-input {
    margin-bottom: 35px;
  }
}

@media screen and (min-width: 992px) {
  .shopSearch-input .js_ac {
    pointer-events: none;
  }
  .shopSearch-input .js_ac_box {
    height: auto;
    opacity: 1;
    visibility: visible;
  }
}

.shopSearch-input > dl {
  display: flex;
}

@media screen and (max-width: 991px) {
  .shopSearch-input > dl {
    flex-wrap: wrap;
  }
}

.shopSearch-input > dl:not(:last-child) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.shopSearch-input > dl:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: url(../img/common/dot_line.svg) left center repeat-x;
  background-size: contain;
}

.shopSearch-input > dl > dt {
  font-size: 1.5rem;
  width: 15em;
  padding-right: 15px;
}

@media screen and (max-width: 991px) {
  .shopSearch-input > dl > dt {
    width: 100%;
    font-size: 1.3rem;
    cursor: pointer;
  }
  .shopSearch-input > dl > dt > span {
    position: relative;
    padding-right: 15px;
  }
  .shopSearch-input > dl > dt > span::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: url(../img/common/icon_arrow_bottom.svg) right center no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
  }
}

.shopSearch-input > dl > dd {
  width: calc(100% - 15em);
}

@media screen and (max-width: 991px) {
  .shopSearch-input > dl > dd {
    width: 100%;
  }
}

.shopSearch-input > dl > dd ul {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .shopSearch-input > dl > dd ul {
    padding-top: 10px;
  }
}

@media screen and (max-width: 991px) {
  .shopSearch-input > dl > dd ul > li {
    width: 100%;
  }
}

.shopSearch-input > dl > dd ul > li:not(:last-child) {
  margin-right: 20px;
}

.shopSearch-result + .shopSearch-result {
  margin-top: 80px;
}

@media screen and (max-width: 991px) {
  .shopSearch-result + .shopSearch-result {
    margin-bottom: 55px;
  }
}

.shopSearch-result > h2 {
  display: inline-block;
  text-align: center;
  padding: 7px 10px;
  line-height: 1;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  background: #05693c;
  min-width: 165px;
}

@media screen and (max-width: 991px) {
  .shopSearch-result > h2 {
    font-size: 1.3rem;
    min-width: inherit;
  }
}

.shopList > a {
  display: block;
  padding: 25px 30px 25px 10px;
  position: relative;
}

.shopList > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: url(../img/common/dot_line.svg) left center repeat-x;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .shopList > a {
    padding: 20px 0;
  }
}

.shopList > a > h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.5;
  color: #05693c;
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .shopList > a > h3 {
    font-size: 1.7rem;
  }
}

.shopList > a > .flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

@media screen and (max-width: 991px) {
  .shopList > a > .flex {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 991px) {
  .shopList > a > .flex .item + .item {
    margin-top: 10px;
  }
}

.shopList > a > .flex .item .row01 {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .shopList > a > .flex .item .row01 {
    flex-direction: column;
  }
}

.shopList > a > .flex .item .row01 > div:nth-child(1) {
  margin-right: 15px;
}

@media screen and (max-width: 991px) {
  .shopList > a > .flex .item .row01 > div:nth-child(1) {
    margin-right: 0;
  }
}

.shopList > a > .flex .item .row03 {
  display: flex;
}

@media screen and (max-width: 991px) {
  .shopList > a > .flex .item .row03 {
    flex-direction: column;
  }
}

.shopList > a > .flex .item .row03 > div + div {
  margin-left: 30px;
}

@media screen and (max-width: 991px) {
  .shopList > a > .flex .item .row03 > div + div {
    margin-left: 0;
  }
}

.shopList > a > .flex .item:nth-child(1) {
  width: calc(100% - 250px);
  padding-right: 20px;
}

@media screen and (max-width: 991px) {
  .shopList > a > .flex .item:nth-child(1) {
    width: 100%;
    padding-right: 0;
  }
}

.shopList > a > .flex .item:nth-child(2) {
  width: 250px;
}

@media screen and (max-width: 991px) {
  .shopList > a > .flex .item:nth-child(2) {
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .shopList > a > .flex .item:nth-child(2) .tagList {
    justify-content: space-between;
  }
  .shopList > a > .flex .item:nth-child(2) .tagList > li {
    margin-top: 0;
    width: 48%;
    text-align: center;
    margin-right: 0 !important;
  }
  .shopList > a > .flex .item:nth-child(2) .tagList > li:nth-child(n + 3) {
    margin-top: 4%;
  }
}

@media screen and (max-width: 991px) {
  .shopList > a > .flex .item:nth-child(2) .tagList {
    margin-bottom: 15px;
  }
}

.shopList.--wide > a > .flex .item:nth-child(1) {
  width: 100%;
  padding-right: 0;
}

/* 店舗詳細
-------------------------------------------*/
.shopDetail-main {
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .shopDetail-main {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 991px) {
  .shopDetail-main .inner_s {
    padding: 0;
  }
}

@media screen and (max-width: 991px) {
  .shopDetail-main .bgTitle {
    margin: 0 6% 20px;
  }
}

.shopDetail-main .tagList {
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .shopDetail-main .tagList {
    padding: 0 5%;
    margin: 25px 0;
  }
}

.shopDetail-main .flex {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .shopDetail-main .flex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}

.shopDetail-main .flex > .item:nth-child(1) {
  width: 55%;
}

@media screen and (max-width: 991px) {
  .shopDetail-main .flex > .item:nth-child(1) {
    width: 100%;
    padding: 0 5%;
  }
}

.shopDetail-main .flex > .item:nth-child(2) {
  width: 45%;
  max-width: 435px;
  padding-left: 20px;
}

@media screen and (max-width: 991px) {
  .shopDetail-main .flex > .item:nth-child(2) {
    width: 100%;
    padding-left: 0;
  }
}

.shopDetail-main .flex > .item:nth-child(2) iframe {
  width: 100%;
  height: 100%;
}

.shopDetail-gmap {
  height: 370px;
}

@media screen and (max-width: 991px) {
  .shopDetail-gmap {
    height: 250px;
  }
}

.shopDetail-info {
  padding: 15px;
  border-bottom: 2px dotted #05693c;
}

@media screen and (max-width: 991px) {
  .shopDetail-info {
    padding: 10px 0;
  }
}

.shopDetail-info:first-child {
  padding-top: 0;
}

.shopDetail-info h3 {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #05693c;
  margin-bottom: 8px;
}

@media screen and (max-width: 991px) {
  .shopDetail-info h3 {
    font-size: 1.4rem;
  }
}

.shopDetail-info dl {
  display: flex;
  align-items: flex-start;
}

.shopDetail-info dl + dl {
  margin-top: 8px;
}

.shopDetail-info dl dt {
  width: 8em;
  margin-right: 20px;
  line-height: 1.5;
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .shopDetail-info dl dt {
    font-size: 1.4rem;
    width: 8em;
    margin-right: 10px;
  }
}

.shopDetail-info dl dd {
  font-size: 1.5rem;
  line-height: 1.5;
  width: calc(100% - 8em);
}

@media screen and (max-width: 991px) {
  .shopDetail-info dl dd {
    font-size: 1.4rem;
    width: calc(100% - 8em);
  }
}

.shopDetail-director {
  padding-top: 50px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .shopDetail-director {
    padding-top: 30px;
  }
}

.shopDetail-director h2 {
  padding-bottom: 10px;
}

.shopDetail-director h2::after,
.director-career dl:first-child::before,
.director-career dl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: url(../img/common/dot_line.svg) left center repeat-x;
  background-size: contain;
}

.shopDetail-director .flex {
  display: flex;
  justify-content: space-between;
  gap: 0 110px;
  margin-bottom: 100px;
  padding-top: 50px;
}

@media screen and (max-width: 991px) {
  .shopDetail-director .flex {
    flex-direction: column-reverse;
    gap: 35px 0;
    padding-top: 20px;
    margin-bottom: 60px;
  }
}

.shopDetail-director .flex .image {
  flex-shrink: 0; 
  position: relative;
}

@media screen and (max-width: 991px) {
  .shopDetail-director .flex .image {
    padding: 0 20%;
  }
}

.shopDetail-director .flex .image::after {
  content: '';
  position: absolute;
  top: 104px;
  left: 60px;
  width: 50vw;
  height: 354px;
  background: #EBEDD9;
  border-radius: 178px;
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .shopDetail-director .flex .image::after {
    top: 26.5%;
    left: 30%;
    height: 80%;
    width: 100vw;
  }
}

.director-appeal {
  margin-bottom: 40px;
  padding-left: 10px;
}

.director-appeal h3 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .director-appeal {
    margin-bottom: 20px;
    padding-left: 0;
  }

  .director-appeal h3 {
    font-size: 1.8rem;
  }
}

.director-career dl {
  display: flex;
  gap: 0 20px;
  position: relative;
}

.director-career dl:first-child::before {
  bottom: auto;
  top: 0;
}

.director-career dl dt {
  flex-basis: 135px;
  padding: 15px 0 15px 15px;
}

.director-career dl dd {
  padding: 15px 15px 15px 0;
}

@media screen and (max-width: 991px) {
  .director-career dl dt {
    flex-basis: 85px;
    padding: 15px 0;
  }

  .director-career dl dd {
    flex-basis: calc(100% - 105px);
    padding: 15px 0;
  }
}

.shopDetail-director h2,
.shopDetail-news h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #05693c;
  position: relative;
  padding-left: 10px;
}

@media screen and (max-width: 991px) {
  .shopDetail-director h2,
  .shopDetail-news h2 {
    font-size: 1.7rem;
    padding-left: 0;
  }
}

.shopDetail-news .btn {
  margin-top: 80px;
}

@media screen and (max-width: 991px) {
  .shopDetail-news .btn {
    margin-top: 35px;
  }
}

/* お問い合わせ
-------------------------------------------*/
.contactBlk-lead {
  padding: 0 20px 35px;
  margin-bottom: 35px;
  position: relative;
}

.contactBlk-lead::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: url(../img/common/dot_line.svg) left center repeat-x;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .contactBlk-lead {
    padding: 0 0 30px;
    margin-bottom: 30px;
  }
}

.contactBlk-lead > p {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .contactBlk-lead > p {
    font-size: 1.4rem;
  }
}

.contactBlk-lead > p > span {
  color: #f0a361;
}

.contactBlk-thanks p {
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .contactBlk-thanks p {
    font-size: 1.4rem;
    text-align: left;
  }
}

.contactBlk-thanks + .btn {
  margin-top: 60px;
}

@media screen and (max-width: 991px) {
  .contactBlk-thanks + .btn {
    margin-top: 40px;
    min-width: 150px;
  }
}

.contactBlk-main {
  padding: 0 20px;
}

@media screen and (max-width: 991px) {
  .contactBlk-main {
    padding: 0;
  }
}

.contactBlk-main + button.btn,
.contactBlk-main + .contactBlk-btns {
  margin-top: 60px;
}

@media screen and (max-width: 991px) {
  .contactBlk-main + button.btn,
  .contactBlk-main + .contactBlk-btns {
    margin-top: 40px;
  }
}

.mw_wp_form_input .contactBlk-main + .contactBlk-btns {
    margin-top: 0 !important;
}

.contactBlk-main .item + .item {
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item + .item {
    margin-top: 30px;
  }
}

.mw_wp_form_confirm .privacy,
.mw_wp_form_confirm .contactBlk-main .item dd {
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item .chkbox label > span {
    font-size: 1.4rem;
  }
}

.contactBlk-main .item ::-webkit-scrollbar {
  width: 5px;
}

.contactBlk-main .item ::-webkit-scrollbar-track {
  background-color: #fff;
}

.contactBlk-main .item ::-webkit-scrollbar-thumb {
  background: #05693c;
  border-radius: 100px;
}

.contactBlk-main .item.--privacy {
  width: 90%;
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item.--privacy {
    width: 100%;
  }
}

.contactBlk-main .item.--privacy > dl {
  flex-direction: column;
  align-items: flex-start;
}

.contactBlk-main .item.--privacy > dl > dt {
  width: 100%;
  margin-bottom: 10px;
}

.contactBlk-main .item.--privacy > dl > dd {
  width: 100%;
}

.contactBlk-main .item.--privacy .privacyBox {
  background: #fff;
  padding: 20px;
  height: 300px;
  overflow-y: auto;
  border: 1px solid #05693c;
  margin-bottom: 20px;
}

.mw_wp_form_confirm .item.--privacy .hisu,
.mw_wp_form_confirm .privacyBox {
  display: none;
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item.--privacy .privacyBox {
    height: 250px;
    padding: 15px;
  }
}

.contactBlk-main .item.--privacy .privacyBox-item > dl > dt,
.contactBlk-main .item.--privacy .privacyBox-item > dl > dd {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item.--privacy .privacyBox-item > dl > dt,
  .contactBlk-main .item.--privacy .privacyBox-item > dl > dd {
    font-size: 1.4rem;
  }
}

.contactBlk-main .item.--privacy .privacyBox-item + .privacyBox-item {
  margin-top: 20px;
}

.contactBlk-main .item.--privacy .chkbox label > span {
  color: inherit !important;
}

.contactBlk-main .item > dl {
  display: flex;
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item > dl {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.4rem;
  }
}

.contactBlk-main .item > dl > dt {
  width: 20%;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.6;
  padding-top: 10px;
}

.mw_wp_form_confirm .contactBlk-main .item > dl > dt {
  padding-top: 0;
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item > dl > dt {
    width: 100%;
    margin-bottom: 5px;
    padding-top: 0;
    font-size: 1.4rem;
  }
}

.contactBlk-main .item > dl > dt.hisu > span {
  position: relative;
  display: inline-block;
}

.contactBlk-main .item > dl > dt.hisu > span::after {
  content: "※";
  position: absolute;
  top: 0.2em;
  right: -1.5em;
  color: #f0a361;
  line-height: 1;
  display: flex;
  align-items: center;
}

.contactBlk-main .item > dl > dd {
  width: 70%;
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item > dl > dd {
    width: 100%;
    font-size: 1.4rem;
  }
}

.contactBlk-main .item > dl > dd select {
  margin-top: 5px;
  padding: 5px;
  font-size: 1.4rem;
  vertical-align: baseline;
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item > dl > dd select {
    font-size: 1.2rem;
  }
}

.contactBlk-main .item > dl > dd .chkList {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item > dl > dd .chkList {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (min-width: 992px) {
  /*.contactBlk-main .item > dl > dd .chkList .horizontal-item:nth-child(n + 3) {*/
  .contactBlk-main .item > dl > dd .chkList .horizontal-item:nth-child(n + 4) {
    margin-top: 10px;
  }
}

@media screen and (min-width: 992px) {
  .contactBlk-main .item > dl > dd .chkList .horizontal-item:nth-child(3), .contactBlk-main .item > dl > dd .chkList .horizontal-item.mwform-checkbox-field {
    /*width: 350px;*/
    margin-right: 20px;
  }
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item > dl > dd .chkList .horizontal-item:not(:last-child) {
    margin-bottom: 5px;
  }
}

.contactBlk-main .item > dl > dd .mwform-checkbox-field {
  display: flex;
  margin-left: 0;
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item > dl > dd .mwform-checkbox-field {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contactBlk-main .item > dl > dd .mwform-checkbox-field label:nth-child(1) {
  margin-right: 30px;
}

@media screen and (max-width: 991px) {
  .contactBlk-main .item > dl > dd .mwform-checkbox-field label:nth-child(1) {
    margin: 0 0 5px;
  }
}

.contactBlk-btns {
  display: flex;
  justify-content: center;
}

.contactBlk-btns ul {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .contactBlk-btns {
    flex-direction: column;
    align-items: center;
  }
  .contactBlk-btns ul {
    flex-direction: column;
    align-items: flex-start;
  }
}

.mw_wp_form_confirm .contactBlk-btns button {
  margin-right: 0;
  margin-left: 0;
}

.mw_wp_form_confirm .contactBlk-btns button:not(:last-child),
.contactBlk-btns li:not(:last-child) {
  margin-right: 20px;
}

@media screen and (max-width: 991px) {
  .contactBlk-btns li:not(:last-child) {
    margin: 0 0 15px;
  }
  .mw_wp_form_confirm .contactBlk-btns button:first-child {
    margin-top: 0;
  }
  .mw_wp_form_confirm .contactBlk-btns button:not(:last-child) {
    margin-right: 0;
    margin-bottom: 0;
  }
}

.contactBlk-btns li .btn {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .contactBlk-btns li .btn {
    min-width: 180px;
  }
}

.contactBlk-btns .btn.--modify {
  background: #fff;
  color: #05693c;
}

@media screen and (min-width: 992px) {
  .contactBlk-btns .btn.--modify:hover {
    opacity: 0.6;
  }
}

input,
textarea {
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}

.input_text {
  width: 100%;
  padding: 10px 15px;
  border: none;
  background: #f0f0f0;
  height: 45px;
  line-height: 45px;
  font-family: "Noto Sans JP", sans-serif;
}

textarea.input_text {
  width: 100%;
  height: 250px;
}

@media screen and (max-width: 991px) {
  textarea.input_text {
    height: 180px;
  }
}

/* プレースフォルダ設定 */
::-webkit-input-placeholder {
  color: #707070;
}

:-ms-input-placeholder {
  color: #707070;
}

::placeholder {
  color: #707070;
}

.input_text:focus::placeholder {
  color: transparent !important;
  transition: 0.1s;
}

.input_text:focus::-webkit-input-placeholder {
  color: transparent !important;
  transition: 0.1s;
}

.input_text:focus:-moz-placeholder {
  color: transparent !important;
  transition: 0.1s;
}

.input_text:focus::-moz-placeholder {
  color: transparent !important;
  transition: 0.1s;
}

/* お知らせ詳細
-------------------------------------------*/
.article-main {
  border-bottom: 2px dotted #05693c;
  padding: 0 20px 45px;
}

@media screen and (max-width: 991px) {
  .article-main {
    padding: 0 0 35px;
  }
}

.article-shopinfo {
  width: 100%;
  max-width: 1075px;
  margin: 0 auto 50px;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .article-shopinfo {
    padding: 0 4%;
    margin-bottom: 30px;
  }
}

.article-shopinfo .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #edefdd;
  padding: 10px 20px;
}

@media screen and (max-width: 991px) {
  .article-shopinfo .flex {
    align-items: flex-start;
    padding: 10px 12px;
  }
}

.article-shopinfo .flex .item:nth-child(1) {
  font-size: 1.8rem;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .article-shopinfo .flex .item:nth-child(1) {
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    letter-spacing: 0.02em;
  }
}

.article-shopinfo .flex .item:nth-child(1) > a {
  font-weight: 700;
  margin-right: 5px;
  font-weight: 600;
}

.article-shopinfo .flex .item:nth-child(2) > a {
  display: flex;
  justify-content: center;
  background: #fff;
  color: #05693c;
  border-radius: 50px;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 5px 20px;
  min-width: 130px;
  max-width: 200px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .article-shopinfo .flex .item:nth-child(2) > a {
    font-size: 1.1rem;
    min-width: inherit;
    padding: 5px 10px;
  }
}

.article .btn {
  margin-top: 65px;
}

@media screen and (max-width: 991px) {
  .article .btn {
    margin-top: 40px;
  }
}

.article-data {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.article-data .date {
  font-size: 1.4rem;
  font-weight: 600;
  margin-right: 20px;
  padding: 3px 20px 3px 0;
  border-right: 1px solid #05693c;
  font-family: "Montserrat", sans-serif;
  color: #05693c;
  line-height: 1.2;
}

@media screen and (max-width: 991px) {
  .article-data .date {
    font-size: 1.3rem;
    padding: 3px 10px 3px 0;
    margin-right: 10px;
  }
}

.article-data .category {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 5px 10px;
  background: #edefdd;
  color: #05693c;
  line-height: 1.2;
}

@media screen and (max-width: 991px) {
  .article-data .category {
    font-size: 1.3rem;
  }
}

.article h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .article h1 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
}

.article p + p {
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .article p + p {
    margin-top: 30px;
  }
}

.downloadBox {
  margin-top: 20px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .downloadBox {
    margin-top: 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

.downloadBox .btn {
  width: auto;
  margin: 0;
  padding: 7px 20px;
}

@media screen and (max-width: 991px) {
  .downloadBox .btn {
    font-size: 1.4rem;
  }
}

.downloadBox .link-bd + .btn {
  margin-left: 20px;
}

@media screen and (max-width: 991px) {
  .downloadBox .link-bd + .btn {
    margin: 10px 0 0;
  }
}

.link-bd {
  color: #05693c;
  text-decoration: underline;
}

@media screen and (min-width: 992px) {
  .link-bd:hover {
    text-decoration: none;
  }
}

/* プライバシーポリシー
-------------------------------------------*/
.privacyLead {
  padding: 0 20px 30px;
  border-bottom: 2px dotted #05693c;
}

@media screen and (max-width: 991px) {
  .privacyLead {
    padding: 0 0 20px;
  }
}

.privacyNav {
  padding: 60px 0;
}

@media screen and (max-width: 991px) {
  .privacyNav {
    padding: 35px 0 50px;
  }
}

.privacyNav > ul {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .privacyNav > ul {
    flex-direction: column;
    align-items: center;
  }
}

.privacyNav > ul li {
  max-width: 375px;
  width: 50%;
}

@media screen and (max-width: 991px) {
  .privacyNav > ul li {
    width: 80%;
  }
}

.privacyNav > ul li:not(:last-child) {
  margin-right: 30px;
}

@media screen and (max-width: 991px) {
  .privacyNav > ul li:not(:last-child) {
    margin: 0 0 20px;
  }
}

.privacyNav > ul li > a,
.privacyNav > ul li > div {
  border: 2px solid #05693c;
  background: #fff;
  border-radius: 50px;
  min-height: 100px;
  color: #05693c;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .privacyNav > ul li > a,
  .privacyNav > ul li > div {
    font-size: 1.4rem;
    min-height: 60px;
    line-height: 1.4;
    padding: 5px 0;
  }
}

.privacyNav > ul li.active > div,
.privacyNav > ul li.active > a {
  background: #05693c;
  color: #fff;
}

.privacyMain {
  padding: 0 20px;
}

.privacyMain + .privacyMain {
  margin-top: 70px;
}

.privacyMain > h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .privacyMain {
    padding: 0;
  }
}

.privacyMain .item + .item {
  margin-top: 35px;
}

.privacyMain .item > dl {
  width: 94%;
}

.privacyMain .item > dl > dt {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.6;
}

@media screen and (max-width: 991px) {
  .privacyMain .item > dl > dt {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
}

.privacyMain .item > dl > dd {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .privacyMain .item > dl > dd {
    font-size: 1.4rem;
  }
}

.privacyMain .mb {
  margin-bottom: 30px;
}

.list-no > li {
  position: relative;
  padding-left: 1.3em;
}

.list-no > li::before {
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.list-no > li:nth-child(1)::before {
  content: "1.";
}

.list-no > li:nth-child(2)::before {
  content: "2.";
}

.list-no > li:nth-child(3)::before {
  content: "3.";
}

.list-no > li:nth-child(4)::before {
  content: "4.";
}

.list-no > li:nth-child(5)::before {
  content: "5.";
}

.list-no > li:nth-child(6)::before {
  content: "6.";
}

.list-no > li:nth-child(7)::before {
  content: "7.";
}

.list-no02 > li {
  position: relative;
  padding-left: 2.2em;
}

.list-no02 > li::before {
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.list-no02 > li:nth-child(1)::before {
  content: "(1)";
}

.list-no02 > li:nth-child(2)::before {
  content: "(2)";
}

.list-no02 > li:nth-child(3)::before {
  content: "(3)";
}

.list-no02 > li:nth-child(4)::before {
  content: "(4)";
}

.list-no02 > li:nth-child(5)::before {
  content: "(5)";
}

.list-no02 > li:nth-child(6)::before {
  content: "(6)";
}

.list-no02 > li:nth-child(7)::before {
  content: "(7)";
}

.list-no02 > li:nth-child(8)::before {
  content: "(8)";
}

.list-no02 > li:nth-child(9)::before {
  content: "(9)";
}

.list-no02 > li:nth-child(10)::before {
  content: "(10)";
}

.list-no02 > li:nth-child(11)::before {
  content: "(11)";
}

.list-no02 > li:nth-child(12)::before {
  content: "(12)";
}

.list-no02 > li:nth-child(13)::before {
  content: "(13)";
}

.list-no02 > li:nth-child(14)::before {
  content: "(14)";
}

.list-no02 > li:nth-child(15)::before {
  content: "(15)";
}

.list-no02 > li:nth-child(16)::before {
  content: "(16)";
}

.list-no02 > li:nth-child(17)::before {
  content: "(17)";
}

.list-no02 > li:nth-child(18)::before {
  content: "(18)";
}

/* お知らせ
-------------------------------------------*/
.newsSearch {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}

@media screen and (max-width: 991px) {
  .newsSearch {
    flex-direction: column;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 991px) {
  .newsSearch .item:not(:last-child) {
    margin-bottom: 25px;
  }
}

.newsSearch .item dl {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .newsSearch .item dl {
    flex-direction: column;
    align-items: flex-start;
  }
}

.newsSearch .item dl dt {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #05693c;
  margin-right: 15px;
}

@media screen and (max-width: 991px) {
  .newsSearch .item dl dt {
    font-size: 1.3rem;
    margin-right: 0;
    padding-left: 5px;
  }
}

@media screen and (max-width: 991px) {
  .newsSearch .item dl dd {
    width: 100%;
  }
}

.newsSearch-list {
  display: flex;
}

@media screen and (max-width: 991px) {
  .newsSearch-list {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px 0;
  }
}

.newsSearch-list li {
  height: 35px;
}

.newsSearch-list li:not(:last-child) {
  margin-right: 10px;
}

@media screen and (max-width: 991px) {
  .newsSearch-list li:not(:last-child) {
    margin-right: 0;
  }
}

@media screen and (max-width: 991px) {
  .newsSearch-list li {
    width: 31%;
    height: 30px;
  }
}

.newsSearch-list li a {
  border: 1px solid #05693c;
  width: 100%;
  height: 100%;
  color: #05693c;
  padding: 0 20px;
  min-width: 130px;
  border-radius: 50px;
  display: block;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .newsSearch-list li a {
    min-width: inherit;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.newsSearch-list li.active a {
  background: #05693c;
  color: #fff;
}

/*------------------------------------
共通
------------------------------------*/
/* アコーディオン
-------------------------------------------*/
.js_ac_box {
  height: 0;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
  visibility: hidden;
  overflow: hidden;
}

.is_open + .js_ac_box {
  height: auto;
  opacity: 1;
  visibility: visible;
}

/* さらに表示
-------------------------------------------*/
.newsWrap {
  position: relative;
  padding-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .newsWrap {
    padding-bottom: 60px;
  }
}

.newsWrap .moreLink {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.moreLink {
  display: table;
  margin: 60px auto 0;
  position: relative;
  padding-right: 20px;
  cursor: pointer;
}

.moreLink::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #05693c;
  border-right: 2px solid #05693c;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  pointer-events: none;
}

.newsWrap .js_loading {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: table;
}

.newsWrap .js_loading.hide {
  display: none;
}

.js_more_items .item {
  opacity: 1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.js_more_items .item.hide {
  height: 0 !important;
  opacity: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  z-index: -1;
}

/* フォーム
-------------------------------------------*/
input[type="radio"],
input[type="checkbox"] {
  display: none;
}

.select {
  position: relative;
  border: 1px solid #05693c;
  overflow: hidden;
  width: 100%;
  height: 35px;
  text-align: center;
  border-radius: 50px;
}

@media screen and (max-width: 991px) {
  .select {
    height: 30px;
  }
}

.select::after {
  content: "";
  position: absolute;
  top: -3px;
  bottom: 0;
  margin: auto;
  right: 0.9em;
  padding: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #05693c;
  border-right: 2px solid #05693c;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  pointer-events: none;
}

.select select {
  display: block;
  width: 100%;
  height: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  appearance: none;
  color: #05693c;
  padding: 0 38px 0 15px;
  line-height: 35px;
  text-align: left;
}

@media screen and (max-width: 991px) {
  .select select {
    line-height: 30px;
    font-size: 1.4rem;
  }
}

/* チェックボックス */
.chkbox label > input {
  position: absolute;
}

.chkbox label > input:checked + span::after {
  opacity: 1;
}

.chkbox label > span {
  border-radius: 4px;
  padding: 0 0 0 30px;
  display: inline-block;
  position: relative;
  letter-spacing: 0.05em;
  user-select: none;
  font-size: 1.5rem;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .chkbox label > span {
    font-size: 1.3rem;
  }
}

.chkbox label > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #05693c;
}

.chkbox label > span::after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 7px;
  height: 11px;
  top: 50%;
  margin-top: -2px;
  left: 6px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #05693c;
  border-bottom: 2px solid #05693c;
}

/* tag
-------------------------------------------*/
.tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  margin-top: -5px;
}

.tagList li {
  background: #f7f3e4;
  border-radius: 2px;
  line-height: 1;
  padding: 5px 10px;
  font-size: 1.4rem;
  font-size: 500;
  margin-top: 5px;
  min-width: 105px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .tagList li {
    font-size: 1rem;
    padding: 5px 7px;
    letter-spacing: 0.01em;
  }
}

/* title
-------------------------------------------*/
.bgTitle {
  background: #edefdd;
  padding: 10px 15px;
  margin-bottom: 35px;
}

@media screen and (max-width: 991px) {
  .bgTitle {
    margin-bottom: 20px;
    padding: 8px 12px;
  }
}

.bgTitle > span {
  font-size: 2rem;
  font-weight: 700;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .bgTitle > span {
    font-size: 1.6rem;
  }
}

.bgTitle.--result {
  display: flex;
  align-items: center;
}

.bgTitle.--result > div {
  margin-left: 40px;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .bgTitle.--result > div {
    margin-left: 20px;
  }
}

/* ペットサロン
-------------------------------------------*/
.menuBlk {
  position: relative;
  padding-bottom: 100px;
}

@media screen and (max-width: 991px) {
  .menuBlk {
    padding-bottom: 80px;
  }
}

.menuBlk::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: calc(100% - 1em);
  background: #f9f0e3;
  z-index: 1;
}

.menuBlk-wrap {
  position: relative;
  z-index: 2;
}

.menuBlk-ttl {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .menuBlk-ttl {
    margin-bottom: 30px;
  }
}

.menuBlk-ttl > span {
  font-size: 3.5rem;
  font-weight: 700;
  color: #05693c;
  font-family: "Montserrat", sans-serif;
  padding: 0 5px 5px;
  line-height: 1;
  letter-spacing: 0.2em;
  position: relative;
}

.menuBlk-ttl > span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: url(../img/common/dot_line.svg) left center repeat-x;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .menuBlk-ttl > span {
    font-size: 2rem;
  }
}

.menuBlk-items .inner {
  max-width: 1150px;
}

@media screen and (max-width: 991px) {
  .menuBlk-items .inner {
    padding: 0 4%;
  }
}

.menuBlk-items .btn {
  margin-top: 70px;
  font-size: 2rem;
  padding: 30px 20px;
  max-width: 350px;
}

@media screen and (max-width: 991px) {
  .menuBlk-items .btn {
    max-width: 250px;
    margin-top: 40px;
    font-size: 1.5rem;
    padding: 15px;
  }
}

.menuBox {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}

@media screen and (max-width: 991px) {
  .menuBox {
    padding: 18px 15px;
  }
}

.menuBox + .menuBox {
  margin-top: 50px;
}

@media screen and (max-width: 991px) {
  .menuBox + .menuBox {
    margin-top: 35px;
  }
}

.menuBox .bgTitle {
  margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .menuBox .bgTitle {
    margin-bottom: 15px;
  }
}

.menuBox .bgTitle + p {
  padding-left: 10px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

@media screen and (max-width: 991px) {
  .menuBox .bgTitle + p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
}

.menuBox-list {
  display: flex;
  flex-wrap: wrap;
  padding-left: 10px;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .menuBox-list {
    justify-content: space-between;
    padding-left: 0;
    margin-bottom: 15px;
  }
}

.menuBox-list li {
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
  padding-left: 1.3em;
}

@media screen and (min-width: 992px) {
  .menuBox-list li {
    width: calc(100% / 5);
  }
}

@media screen and (max-width: 991px) {
  .menuBox-list li {
    font-size: 1.3rem;
    width: 48%;
  }
}

.menuBox-list li::before {
  content: "・";
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

@media screen and (min-width: 992px) {
  .menuBox-list li:nth-child(n + 6) {
    margin-top: 5px;
  }
}

.menuBox-list.--trimming li {
  display: flex;
  width: 40%;
}

@media screen and (max-width: 991px) {
  .menuBox-list.--trimming li {
    width: 100%;
  }
  .menuBox-list.--trimming li > span {
    white-space: nowrap;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-list.--trimming li:nth-child(even) {
    width: 60%;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-list.--trimming li:nth-child(odd) > span {
    width: 6em;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-list.--trimming li:nth-child(even) > span {
    width: 7em;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-list.--trimming li:nth-child(n + 6) {
    margin-top: 0;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-list.--trimming li:nth-child(n + 3) {
    margin-top: 5px;
  }
}

.menuBox-list.--trimming li > b {
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .menuBox-list.--trimming li > b {
    font-size: 1.2rem;
    letter-spacing: 0.01em;
  }
}

.menuBox-list.--single {
  justify-content: space-between;
}

.menuBox-list.--single li {
  display: flex;
  width: 48%;
}

@media screen and (max-width: 991px) {
  .menuBox-list.--single li {
    width: 100%;
  }
  .menuBox-list.--single li > span {
    white-space: nowrap;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-list.--single li:nth-child(odd) > span {
    width: 7em;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-list.--single li:nth-child(even) > span {
    width: 7em;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-list.--single li:nth-child(n + 6) {
    margin-top: 0;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-list.--single li:nth-child(n + 3) {
    margin-top: 5px;
  }
}

.menuBox-list.--single li > b {
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .menuBox-list.--single li > b {
    font-size: 1.2rem;
    letter-spacing: 0.01em;
  }
}

.menuBox-list.--stay li {
  display: flex;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .menuBox-list.--stay li {
    width: 100%;
  }
  .menuBox-list.--stay li > span {
    white-space: nowrap;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-list.--stay li > span {
    width: 9em;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-list.--stay li:nth-child(n + 6) {
    margin-top: 0;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-list.--stay li:not(:last-child) {
    margin-bottom: 3px;
  }
}

.menuBox-tbl {
  margin: 0;
  padding: 0px;
  width: 100%;
  border-top: 2px dotted #05693c;
  table-layout: fixed;
  word-wrap: break-word;
  white-space: normal;
}

.menuBox-tbl th,
.menuBox-tbl td {
  vertical-align: middle;
  border-bottom: 2px dotted #05693c;
  border-left: 2px dotted #05693c;
  padding: 25px 5px;
  text-align: center;
  line-height: 1.5;
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .menuBox-tbl th,
  .menuBox-tbl td {
    font-size: 1.4rem;
    padding: 15px 5px;
  }
}

.menuBox-tbl th:first-child,
.menuBox-tbl td:first-child {
  border-left: none;
}

.menuBox-tbl th.th01, .menuBox-tbl th.td01,
.menuBox-tbl td.th01,
.menuBox-tbl td.td01 {
  font-weight: 700;
  width: 210px;
}

@media screen and (max-width: 991px) {
  .menuBox-tbl th.th01, .menuBox-tbl th.td01,
  .menuBox-tbl td.th01,
  .menuBox-tbl td.td01 {
    width: 100px;
  }
}

.menuBox-tbl th.th-bg {
  background: #f7f3e4;
  padding: 30px 10px;
}

@media screen and (min-width: 992px) {
  .menuBox-tbl th.th-bg {
    height: 120px;
  }
  .menuBox-tbl th.th-bg.--low {
    height: 70px;
  }
}

@media screen and (max-width: 991px) {
  .menuBox-tbl th.th-bg {
    padding: 20px 0;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-tbl th.th-bg.--ozone {
    padding-top: calc(1.3em + 30px);
  }
}

.menuBox-tbl th.th-bg > b {
  display: block;
  text-align: center;
}

.menuBox-tbl th.th-bg > span {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  margin-top: 5px;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .menuBox-tbl th.th-bg > span {
    font-size: 1.2rem;
  }
}

.menuBox .flex {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .menuBox .flex {
    flex-direction: column;
  }
}

.menuBox .flex .item {
  width: 48%;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 991px) {
  .menuBox .flex .item {
    width: 100%;
  }
  .menuBox .flex .item + .item {
    margin-top: 30px;
  }
}

.menuBox .flex .item .menuBox-tbl {
  margin-top: auto;
}

.menuBox .list-caution {
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .menuBox .list-caution {
    margin-top: 20px;
  }
}

.menuBox-opt {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (min-width: 992px) {
  .menuBox-opt .item {
    width: 48%;
  }
  .menuBox-opt .item:nth-child(n + 3) {
    margin-top: 5%;
  }
}

@media screen and (max-width: 991px) {
  .menuBox-opt .item {
    width: 100%;
  }
  .menuBox-opt .item:not(:last-child) {
    margin-bottom: 25px;
  }
}

.menuBox-opt .item dl {
  padding-top: 10px;
  width: 95%;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .menuBox-opt .item dl {
    width: 100%;
  }
}

.menuBox-opt .item dl dt {
  text-align: center;
  color: #05693c;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .menuBox-opt .item dl dt {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.menuBox-opt .item dl dd p {
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .menuBox-opt .item dl dd p {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

.menuBox-benefits {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 10px;
}

@media screen and (max-width: 991px) {
  .menuBox-benefits {
    padding: 0;
  }
}

.menuBox-benefits .item {
  border: 2px dotted #05693c;
  padding: 15px;
  border-radius: 10px;
}

@media screen and (max-width: 991px) {
  .menuBox-benefits .item {
    padding: 10px;
  }
}

.menuBox-benefits .item dl dt {
  background: #F7F3E4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.menuBox-benefits .item dl dt > span {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: #05693c;
}

.menuBox-benefits .item dl dt > b {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1;
  display: block;
  padding-left: 5px;
  color: #05693c;
}

.menuBox-benefits .item dl dd {
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.8rem;
  color: #05693c;
  font-weight: 700;
  line-height: 1.8;
}

@media screen and (max-width: 991px) {
  .menuBox-benefits .item dl dd {
    min-height: inherit;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

@media screen and (min-width: 992px) {
  .menuBox-benefits {
    position: relative;
  }
  .menuBox-benefits .item {
    width: 31%;
  }
  .menuBox-benefits .item:nth-child(n + 4) {
    margin-top: 3.5%;
  }
  .menuBox-benefits::after {
    content: '';
    display: block;
    width: 31%;
    height: 0;
  }
}

@media screen and (max-width: 991px) {
  .menuBox-benefits .item {
    width: 100%;
  }
  .menuBox-benefits .item:not(:last-child) {
    margin-bottom: 25px;
  }
}

.menuBox.--opt .bgTitle {
  margin-bottom: 40px;
}

@media screen and (max-width: 991px) {
  .menuBox.--opt .bgTitle {
    margin-bottom: 15px;
  }
}

.menuBox.--caution h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 35px;
  color: #05693c;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .menuBox.--caution h3 {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }
}

.menuBox.--caution .list-dot {
  display: table;
  margin: auto;
}

.list-caution > li {
  position: relative;
  padding-left: 1.3em;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .list-caution > li {
    font-size: 1.3rem;
    line-height: 1.6;
  }
}

.list-caution > li::before {
  content: "※";
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.list-dot > li {
  position: relative;
  padding-left: 1.3em;
  font-size: 1.5rem;
}

@media screen and (max-width: 991px) {
  .list-dot > li {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .list-dot > li:not(:last-child) {
    margin-bottom: 5px;
  }
}

.list-dot > li::before {
  content: "・";
  position: absolute;
  display: block;
  left: 0;
  font-size: inherit;
}

.trimming .footer {
  margin-top: 0;
}

@media screen and (max-width: 991px) {
  .tbl-scroll {
    overflow-x: scroll;
  }
  .tbl-scroll table {
    width: 600px;
  }
}

/* 採用情報
-------------------------------------------*/
.reqruitInfo {
  position: relative;
  padding-bottom: 20px;
}

.reqruitInfo.--txt > a {
  position: relative;
}

.reqruitInfo.--txt > a::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -75px;
  margin: auto;
  background: url(../img/index/bg_recruitbtn.svg) left center no-repeat;
  background-size: contain;
  width: 220px;
  height: 70px;
}

@media screen and (max-width: 991px) {
  .reqruitInfo.--txt > a::before {
    background: url(../img/index/bg_recruitbtn_sp.svg) center center no-repeat;
    background-size: contain;
    width: 180px;
    height: 25px;
    top: -30px;
    left: 0;
    right: 0;
  }
}

.reqruitInfo > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 465px;
  background: #000;
  margin: auto;
  padding: 30px 10px;
  background: #05693c;
  color: #fff;
  border: 2px solid #05693c;
  border-radius: 100px;
}

@media screen and (max-width: 991px) {
  .reqruitInfo > a {
    max-width: 280px;
    margin: auto;
    padding: 20px 10px;
  }
}

@media screen and (min-width: 992px) {
  .reqruitInfo > a {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .reqruitInfo > a:hover {
    background: #fff;
  }
  .reqruitInfo > a:hover > span,
  .reqruitInfo > a:hover > div {
    color: #05693c;
  }
}

.reqruitInfo > a > span {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}

@media screen and (min-width: 992px) {
  .reqruitInfo > a > span {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
}

@media screen and (max-width: 991px) {
  .reqruitInfo > a > span {
    font-size: 2rem;
  }
}

.reqruitInfo > a > div {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1;
}

@media screen and (min-width: 992px) {
  .reqruitInfo > a > div {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
}

@media screen and (max-width: 991px) {
  .reqruitInfo > a > div {
    font-size: 2.4rem;
  }
}

/* ボタン
-------------------------------------------*/
.btn {
  display: flex;
  justify-content: center;
  background: #05693c;
  color: #fff;
  border: 2px solid #05693c;
  border-radius: 50px;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 10px 20px;
  margin: 30px auto 0;
  width: 100%;
  min-width: 160px;
  max-width: 200px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}

@media screen and (min-width: 992px) {
  .btn {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .btn:hover {
    background: #fff;
    color: #05693c;
  }
}

@media screen and (max-width: 991px) {
  .btn {
    font-size: 1.5rem;
    min-width: 150px;
  }
}

/* タイトル
-------------------------------------------*/
.ttl {
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .ttl {
    margin-bottom: 20px;
  }
}

.ttl > span {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  display: block;
  color: #05693c;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .ttl > span {
    font-size: 2.5vw;
  }
}

@media screen and (max-width: 991px) {
  .ttl > span {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
}

.ttl > div {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  line-height: 1.6;
  color: #05693c;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .ttl > div {
    font-size: 3.75vw;
  }
}

@media screen and (max-width: 991px) {
  .ttl > div {
    text-align: center;
    font-size: 2.9rem;
    letter-spacing: 0.2em;
  }
}

.pagettl {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0 60px;
}

@media screen and (max-width: 991px) {
  .pagettl {
    padding: 20px 0 22px;
  }
}

.pagettl-logo {
  margin-top: 5px;
  margin-left: -10px;
}

@media screen and (max-width: 991px) {
  .pagettl-logo {
    max-width: 90px;
    margin-left: 0;
  }
}

.pagettl.--wanjoy > span, .pagettl.--trimming > span, .pagettl.--clinic > span, .pagettl.--pethotel > span {
  position: relative;
  padding-left: 0;
  /*padding-left: 65px;*/
}

@media screen and (max-width: 991px) {
  .pagettl.--wanjoy > span, .pagettl.--trimming > span, .pagettl.--clinic > span, .pagettl.--pethotel > span {
    padding-left: 45px;
  }
}

.pagettl.--wanjoy > span::before, .pagettl.--trimming > span::before, .pagettl.--clinic > span::before, .pagettl.--pethotel > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 55px;
  height: 30px;
}

@media screen and (max-width: 991px) {
  .pagettl.--wanjoy > span::before, .pagettl.--trimming > span::before, .pagettl.--clinic > span::before, .pagettl.--pethotel > span::before {
    width: 34px;
    height: 20px;
  }
}

.pagettl.--wanjoy {
  line-height: .8;
}

@media screen and (max-width: 991px) {
  .pagettl.--wanjoy {
    line-height: 1.3;
    padding-bottom: 32px;
  }
  .pagettl.--wanjoy > span {
    padding-left: 0;
    /*padding-left: 43px;*/
    max-width: 87%;
  }
}

/*
.pagettl.--wanjoy > span::before {
  background-image: url(../img/wanjoy/icon_dog.svg);
}

@media screen and (max-width: 991px) {
  .pagettl.--wanjoy > span::before {
    background-image: url(../img/wanjoy/icon_dog_sp.svg);
  }
}
*/

.pagettl.--clinic > span {
  padding-left: 0;
  /*padding-left: 50px;*/
}

@media screen and (max-width: 991px) {
  .pagettl.--clinic > span {
    padding-left: 0;
    /*padding-left: 30px;*/
  }
}

/*
.pagettl.--clinic > span::before {
  background-image: url(../img/clinic/icon_clinic.svg);
}

@media screen and (max-width: 991px) {
  .pagettl.--clinic > span::before {
    background-image: url(../img/clinic/icon_clinic_sp.svg);
  }
}
*/

.pagettl.--trimming > span {
  padding-left: 0;
  /*padding-left: 50px;*/
}

@media screen and (max-width: 991px) {
  .pagettl.--trimming > span {
    padding-left: 0;
    /*padding-left: 35px;*/
  }
}

/*
.pagettl.--trimming > span::before {
  background-image: url(../img/trimming/icon_salon.svg);
}

@media screen and (max-width: 991px) {
  .pagettl.--trimming > span::before {
    background-image: url(../img/trimming/icon_salon_sp.svg);
  }
}
*/

.pagettl.--pethotel > span {
  padding-left: 0;
  /*padding-left: 50px;*/
}

@media screen and (max-width: 991px) {
  .pagettl.--pethotel > span {
    padding-left: 0;
    /*padding-left: 30px;*/
  }
}

/*
.pagettl.--pethotel > span::before {
  background-image: url(../img/pethotel/icon_hotel.svg);
}

@media screen and (max-width: 991px) {
  .pagettl.--pethotel > span::before {
    background-image: url(../img/pethotel/icon_hotel_sp.svg);
  }
}
*/

.pagettl > span {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .pagettl > span {
    font-size: 1.8rem;
  }
}

.pagettl > b {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #05693c;
  letter-spacing: 0.1em;
  padding-top: 5px;
}

@media screen and (max-width: 991px) {
  .pagettl > b {
    font-size: 1.3rem;
  }
}

/* 下層ページ
-------------------------------------------*/
.subpageMv {
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  .subpageMv {
    margin-top: 0;
  }
}

.subpageMv .inner {
  max-width: 1195px;
}

/* ONE JOY
-------------------------------------------*/
.wanjoyItems {
  margin-bottom: 130px;
}

@media screen and (max-width: 991px) {
  .wanjoyItems {
    margin-bottom: 70px;
  }
}

.wanjoyItems .inner {
  max-width: 1250px;
}

.wanjoyItems-ttl {
  position: relative;
  margin-bottom: 30px;
}

@media screen and (max-width: 991px) {
  .wanjoyItems-ttl {
    margin-bottom: 20px;
  }
}

.wanjoyItems-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
}

@media screen and (max-width: 991px) {
  .wanjoyItems-ttl::before {
    width: 70px;
    height: 70px;
  }
}

.wanjoyItems-ttl.--point01::before {
  background-image: url(../img/wanjoy/iocn_counseling.svg);
}

.wanjoyItems-ttl.--point02::before {
  background-image: url(../img/wanjoy/icon_lesson.svg);
}

.wanjoyItems-ttl.--point03::before {
  background-image: url(../img/wanjoy/icon_kindergarten.svg);
}

.wanjoyItems-ttl.--point04::before {
  background-image: url(../img/wanjoy/icon_party.svg);
}

@media screen and (max-width: 991px) {
  .wanjoyItems-ttl.--youtube {
    display: table;
    margin: 0 auto 20px;
  }
}

.wanjoyItems-ttl.--youtube::before {
  background-image: url(../img/wanjoy/icon_youtube.svg);
  width: 60px;
  height: 40px;
}

@media screen and (max-width: 991px) {
  .wanjoyItems-ttl.--youtube::before {
    width: 40px;
    height: 27px;
  }
}

.wanjoyItems-ttl.--youtube > div {
  border-bottom: none;
  font-size: 2.9rem;
  font-weight: bold;
  line-height: 1.5;
  color: #05693c;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 0;
  letter-spacing: 0.2em;
  margin-left: 70px;
}

.wanjoyItems-ttl.--youtube > div::after {
  content: none;
}

@media screen and (max-width: 991px) {
  .wanjoyItems-ttl.--youtube > div {
    text-align: left;
    margin-left: 45px;
    font-size: 2.1rem;
  }
}

.wanjoyItems-ttl.--youtube + p {
  padding-left: 0;
}

.wanjoyItems-ttl + p {
  padding-left: 15px;
}

.wanjoyItems-ttl > div {
  margin-left: 90px;
  padding-bottom: 10px;
  padding-left: 10px;
  position: relative;
}

.wanjoyItems-ttl > div::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5px;
  margin: auto;
  width: 100%;
  height: 2px;
  background: url(../img/common/dot_line.svg) left center repeat-x;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .wanjoyItems-ttl > div {
    margin-left: 75px;
  }
}

.wanjoyItems-ttl > div > span {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .wanjoyItems-ttl > div > span {
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
}

.wanjoyItems-ttl > div > div {
  font-size: 2.9rem;
  font-weight: bold;
  line-height: 1.5;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .wanjoyItems-ttl > div > div {
    text-align: left;
    font-size: 1.8rem;
  }
}

.wanjoyItems .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .wanjoyItems .flex {
    flex-direction: column-reverse;
  }
}

.wanjoyItems .flex .item {
  width: 48%;
}

@media screen and (max-width: 991px) {
  .wanjoyItems .flex .item {
    width: 100%;
  }
  .wanjoyItems .flex .item + .item {
    margin-bottom: 25px;
  }
}

.wanjoyItems-block:not(:last-child) {
  margin-bottom: 110px;
}

@media screen and (max-width: 991px) {
  .wanjoyItems-block:not(:last-child) {
    margin-bottom: 60px;
  }
}

.wanjoyItems-block.--youtube {
  position: relative;
  padding-bottom: 60px;
}

@media screen and (max-width: 991px) {
  .wanjoyItems-block.--youtube {
    padding-bottom: 0;
  }
}

.wanjoyItems-block.--youtube::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 55vw;
  height: 320px;
  background: #ebedd9;
  border-top-left-radius: 170px;
  border-bottom-left-radius: 170px;
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .wanjoyItems-block.--youtube::after {
    top: 160px;
    bottom: inherit;
    height: 200px;
    width: 95%;
  }
}

@media screen and (max-width: 991px) {
  .wanjoyItems-block.--youtube .inner {
    padding: 0;
  }
  .wanjoyItems-block.--youtube .flex .item:nth-child(1) img {
    width: 90%;
    margin: 0 0 35px auto;
    display: block;
  }
  .wanjoyItems-block.--youtube .flex .item:nth-child(1) p {
    padding: 0 5%;
  }
  .wanjoyItems-block.--youtube .flex .item:nth-child(1) .btn {
    max-width: 250px;
  }
}

@media screen and (min-width: 992px) {
  .wanjoyItems-block:nth-child(1) {
    margin-bottom: 50px;
  }
  .wanjoyItems-block:nth-child(2) .flex {
    align-items: flex-end;
  }
  .wanjoyItems-block:nth-child(3) .flex {
    align-items: flex-start;
  }
  .wanjoyItems-block:nth-child(4) {
    margin-bottom: 60px;
  }
  .wanjoyItems-block.--youtube .flex .item:nth-child(1) {
    width: 48%;
  }
  .wanjoyItems-block.--youtube .flex .item:nth-child(2) {
    width: 52%;
  }
  .wanjoyItems-block.--youtube .flex .item .btn {
    max-width: 250px;
    margin: 30px auto 0 0;
  }
}

@media screen and (min-width: 992px) {
  .wanjoyItems-block:nth-child(odd) .flex .item:nth-child(1) {
    padding-right: 90px;
    padding-left: 60px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) and (min-width: 992px) {
  .wanjoyItems-block:nth-child(odd) .flex .item:nth-child(1) {
    padding-left: 0;
    padding-right: 20px;
  }
}

@media screen and (min-width: 992px) {
  .wanjoyItems-block:nth-child(even) .flex {
    flex-direction: row-reverse;
  }
  .wanjoyItems-block:nth-child(even) .flex .item:nth-child(1) {
    padding-left: 50px;
    padding-right: 100px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1200px) and (min-width: 992px) {
  .wanjoyItems-block:nth-child(even) .flex .item:nth-child(1) {
    padding-left: 20px;
    padding-right: 0;
  }
}

.eventBox {
  background: #edefdd;
  padding: 40px 0;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .eventBox {
    padding: 35px 0;
  }
}

.eventBox-main {
  width: 80%;
  max-width: 615px;
  background: #fff;
  border-radius: 30px;
  padding: 30px;
  margin: auto;
}

@media screen and (max-width: 991px) {
  .eventBox-main {
    width: 100%;
    padding: 25px 20px;
  }
}

.eventBox-main dd > p {
  text-align: center;
  font-weight: 700;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .eventBox-main dd > p {
    line-height: 1.6;
    font-size: 1.6rem;
  }
}

.eventBox-main dd .btn {
  margin-top: 20px;
}

.eventBox-ttl {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 20px;
}

.eventBox-ttl > div {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .eventBox-ttl > div {
    padding: 0 20px 10px;
  }
}

.eventBox-ttl > div::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: -95px;
  margin: auto;
  background: url(../img/wanjoy/icon_event_left.svg) left center no-repeat;
  background-size: contain;
  width: 80px;
  height: 35px;
}

@media screen and (max-width: 991px) {
  .eventBox-ttl > div::before {
    width: 60px;
    height: 28px;
    left: -25px;
    top: -10px;
    bottom: inherit;
    background-image: url(../img/wanjoy/icon_event_left_sp.svg);
  }
}

.eventBox-ttl > div::after {
  content: "";
  position: absolute;
  bottom: 10px;
  right: -100px;
  margin: auto;
  background: url(../img/wanjoy/icon_event_right.svg) left center no-repeat;
  background-size: contain;
  width: 80px;
  height: 35px;
}

@media screen and (max-width: 991px) {
  .eventBox-ttl > div::after {
    width: 60px;
    height: 28px;
    right: -25px;
    top: -10px;
    bottom: inherit;
    background-image: url(../img/wanjoy/icon_event_right_sp.svg);
  }
}

.eventBox-ttl > div > span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: #05693c;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 991px) {
  .eventBox-ttl > div > span {
    font-size: 1.3rem;
  }
}

.eventBox-ttl > div > b {
  font-size: 2.8rem;
  color: #05693c;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.2em;
  position: relative;
}

.eventBox-ttl > div > b::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: url(../img/common/dot_line.svg) left center repeat-x;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .eventBox-ttl > div > b {
    font-size: 2.4rem;
  }
}

/* ペット医療
-------------------------------------------*/
.clinicList .bgTitle {
  margin-bottom: 5px;
}

.clinicList-item + .clinicList-item {
  margin-top: 65px;
}

.clinicLead .clinicText {
  margin-bottom: 80px;
}

.clinicLead .insuranceText p {
  margin-bottom: 60px;
}

.clinicLead .insuranceText p.txt_center {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .clinicList-item + .clinicList-item {
    margin-top: 50px;
  }

  .clinicLead .clinicText {
    margin-bottom: 40px;
  }

  .clinicLead .insuranceText p {
    margin-bottom: 30px;
  }

  .clinicLead .insuranceText .ttl > div img {
    max-width: 26%;
  }
}

/* ABOUT
-------------------------------------------*/
.aboutLead,
.wanjoyLead,
.clinicLead,
.trimmingLead {
  margin-bottom: 120px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .aboutLead,
  .wanjoyLead,
  .clinicLead,
  .trimmingLead {
    margin-bottom: 60px;
  }
}

.aboutLead .ttl,
.wanjoyLead .ttl,
.clinicLead .ttl,
.trimmingLead .ttl {
  text-align: center;
}

@media screen and (min-width: 992px) {
  .aboutLead .pagettl,
  .wanjoyLead .pagettl,
  .clinicLead .pagettl {
    padding-bottom: 45px;
  }
  .wanjoyLead .pagettl.--pethotel,
  .wanjoyLead .pagettl.--trimming {
    padding-bottom: 65px;
  }
}

.aboutLead dl > dd > p,
.wanjoyLead dl > dd > p,
.clinicLead dl > dd > p,
.trimmingLead dl > dd > p {
  font-size: 1.5rem;
  line-height: 2.2;
}

@media screen and (max-width: 991px) {
  .aboutLead dl > dd > p,
  .wanjoyLead dl > dd > p,
  .clinicLead dl > dd > p,
  .trimmingLead dl > dd > p {
    text-align: left;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 991px) {
  .wanjoyLead {
    margin-bottom: 30px;
  }
}

.wanjoyLead dl {
  margin-top: -20px;
}

@media screen and (max-width: 991px) {
  .clinicLead {
    margin-bottom: 30px;
  }
}

.clinicLead dl dd p {
  margin-bottom: 80px;
}

@media screen and (max-width: 991px) {
  .clinicLead dl dd p {
    margin-bottom: 50px;
  }
}

.aboutItems {
  margin-bottom: 130px;
}

@media screen and (max-width: 991px) {
  .aboutItems {
    margin-bottom: 70px;
  }
}

.aboutItems .ttl {
  white-space: nowrap;
}

.aboutItems .ttl > span {
  font-size: 1.8rem;
}

@media screen and (max-width: 991px) {
  .aboutItems .ttl > span {
    text-align: left;
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 991px) {
  .aboutItems .ttl > div {
    text-align: left;
  }
}

.aboutItems .flex {
  display: flex;
}

@media screen and (max-width: 991px) {
  .aboutItems .flex {
    flex-direction: column;
  }
}

.aboutItems .flex .item {
  width: 50%;
}

@media screen and (max-width: 991px) {
  .aboutItems .flex .item {
    width: 100%;
  }
}

.aboutItems-medical {
  position: relative;
  padding-bottom: 230px;
}

@media screen and (max-width: 991px) {
  .aboutItems-medical {
    padding-bottom: 60px;
  }
}

.aboutItems-medical::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 50vw;
  height: 320px;
  background: #ebedd9;
  border-top-left-radius: 170px;
  border-bottom-left-radius: 170px;
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .aboutItems-medical::before {
    top: 50px;
    bottom: inherit;
    height: 200px;
    width: 95%;
  }
}

@media screen and (max-width: 991px) {
  .aboutItems-medical .flex {
    flex-direction: column-reverse;
  }
}

@media screen and (min-width: 992px) {
  .aboutItems-medical .flex .item:nth-child(1) {
    padding: 0 80px 0 50px;
  }
}

@media screen and (max-width: 991px) {
  .aboutItems-medical .flex .item:nth-child(1) {
    padding-top: 80px;
  }
}

.aboutItems-medical .flex .item:nth-child(2) {
  position: relative;
}

@media screen and (min-width: 992px) {
  .aboutItems-medical .flex .item:nth-child(2) img {
    position: absolute;
    right: -60px;
    top: 0;
  }
}

@media screen and (max-width: 1280px) and (min-width: 992px) {
  .aboutItems-medical .flex .item:nth-child(2) img {
    right: -30px;
  }
}

@media screen and (max-width: 991px) {
  .aboutItems-medical .flex .item:nth-child(2) img {
    width: 90%;
    margin-left: auto;
    display: block;
  }
}

.aboutItems-training {
  position: relative;
  padding-bottom: 20px;
}

.aboutItems-training::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 50vw;
  height: 320px;
  background: #ebedd9;
  border-top-left-radius: 170px;
  border-bottom-left-radius: 170px;
  z-index: -1;
}

@media screen and (max-width: 991px) {
  .aboutItems-training::before {
    bottom: 50px;
    height: 150px;
    width: 50%;
  }
}

.aboutItems-training .flex {
  flex-direction: row-reverse;
  margin-bottom: 130px;
}

@media screen and (max-width: 991px) {
  .aboutItems-training .flex {
    flex-direction: column-reverse;
    margin-bottom: 45px;
  }
}

@media screen and (min-width: 992px) {
  .aboutItems-training .flex .item:nth-child(1) {
    padding: 0 50px 0 80px;
  }
}

@media screen and (max-width: 991px) {
  .aboutItems-training .flex .item:nth-child(1) {
    margin-top: 35px;
  }
}

.aboutItems-training .flex .item:nth-child(2) {
  position: relative;
}

@media screen and (min-width: 992px) {
  .aboutItems-training .flex .item:nth-child(2) img {
    position: absolute;
    left: -30px;
    top: 0;
  }
}

@media screen and (max-width: 991px) {
  .aboutItems-training .flex .item:nth-child(2) img {
    display: block;
    width: 90%;
  }
}

.aboutItems-training .img {
  display: flex;
  justify-content: center;
}

.aboutItems-training .img img {
  max-width: 860px;
  width: 100%;
}

.companyBlk {
  margin-bottom: 90px;
}

@media screen and (max-width: 991px) {
  .companyBlk {
    margin-bottom: 70px;
  }
}

.companyBlk .ttl {
  text-align: center;
  margin-bottom: 55px;
}

@media screen and (max-width: 991px) {
  .companyBlk .ttl {
    margin-bottom: 35px;
  }
  .companyBlk .ttl > span {
    font-size: 2rem;
  }
}

.companyBlk-tbl dl {
  padding: 30px;
  display: flex;
  position: relative;
}

.companyBlk-tbl dl::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: url(../img/common/dot_line.svg) left center repeat-x;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .companyBlk-tbl dl {
    padding: 15px 0;
    align-items: center;
  }
}

.companyBlk-tbl dl:nth-child(1)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: url(../img/common/dot_line.svg) left center repeat-x;
  background-size: contain;
}

.companyBlk-tbl dl dt {
  width: 20%;
  padding-right: 20px;
  color: #05693c;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .companyBlk-tbl dl dt {
    width: 30%;
    padding-right: 15px;
    line-height: 1.5;
  }
}

.companyBlk-tbl dl dd {
  width: 80%;
  color: #05693c;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .companyBlk-tbl dl dd {
    width: 70%;
  }
}

/* ニュース
-------------------------------------------*/
.newsList {
  position: relative;
}

.newsList::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: url(../img/common/dot_line.svg) left center repeat-x;
  background-size: contain;
}

.newsList .item {
  display: block;
  padding: 25px 30px 25px 10px;
  position: relative;
}

.newsList .item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 2px;
  background: url(../img/common/dot_line.svg) left center repeat-x;
  background-size: contain;
}

@media screen and (max-width: 991px) {
  .newsList .item {
    padding: 20px 30px 20px 0;
  }
}

.newsList .item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #05693c;
  border-right: 2px solid #05693c;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.newsList .row01 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.newsList .row01 .date {
  font-size: 1.4rem;
  font-weight: 600;
  margin-right: 20px;
  padding: 3px 20px 3px 0;
  border-right: 1px solid #05693c;
  font-family: "Montserrat", sans-serif;
  color: #05693c;
  line-height: 1.2;
}

@media screen and (max-width: 991px) {
  .newsList .row01 .date {
    font-size: 1.3rem;
    padding: 3px 10px 3px 0;
    margin-right: 10px;
  }
}

.newsList .row01 .category {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 5px 10px;
  background: #edefdd;
  color: #05693c;
  line-height: 1.2;
}

@media screen and (max-width: 991px) {
  .newsList .row01 .category {
    font-size: 1.3rem;
  }
}

.newsList .row02 .txt {
  font-size: 1.5rem;
  color: #05693c;
}

@media screen and (max-width: 991px) {
  .newsList .row02 .txt {
    font-size: 1.4rem;
  }
}

/*===================================
  
  animation設定

===================================*/
/* 下からふわっと */
.fade_b {
  opacity: 0;
}

.fade_b.started,
.started .fade_b {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@media screen and (min-width: 992px) {
  .delay01-pc {
    animation-delay: .3s;
  }
}

/* コピー画像調整 */
@media screen and (min-width: 992px) {
  .clinicLead .pagettl > span,
  .wanjoyLead .pagettl > span {
    margin-left: -40px;
  }
  .wanjoyLead .pagettl.--trimming > span,
  .wanjoyLead .pagettl.--pethotel > span {
    margin-left: -28px;
  }
}

@media screen and (max-width: 991px) {
  .topMv-ttl img {
    max-width: 76%;
  }
  .topAbout .delay01-pc h2 div img {
    max-width: 73%;
  }
  .topService h2 span img {
    max-width: 42%;
  }

  .aboutLead .pagettl > span {
    max-width: 66%;
  }
  .aboutLead .ttl > div img {
    max-width: 83%;
  }
  .aboutItems-medical .ttl > div img {
    max-width: 69%;
  }
  .aboutItems-training .ttl > div img {
    max-width: 57%;
  }

  .clinicLead .pagettl.--clinic > span {
    max-width: 38%;
  }
  .clinicLead .ttl > div img {
    max-width: 83%;
  }

  .wanjoyLead .ttl > div img {
    max-width: 72%;
  }
  .wanjoyLead .pagettl.--trimming > span {
    max-width: 42%;
  }
  .wanjoyLead .ttl.--trimming > div img {
    max-width: 72%;
  }
  .wanjoyLead .pagettl.--pethotel {
    padding-bottom: 40px;
  }
  .wanjoyLead .pagettl.--pethotel > span {
    max-width: 41%;
  }
  .wanjoyLead .ttl.--pethotel > div img {
    max-width: 56%;
  }
  .wanjoyItems-ttl > div > div img {
    max-width: 89%;
  }
}
