@charset "UTF-8";
/* --------------------------------------------
/	丸山眼科CSS設定
/　　※Scssで書き出しているため、直接
/  　このファイルを修正しないように！！
---------------------------------------------- */
/* Reset.css */
body {
  /* Safari: 勝手にフォントサイズを大きくしない */
  -webkit-text-size-adjust: 100%;
  /* Safari: ゴシック体にする
    font-family: sans-serif; */
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
     v2.0 | 20110126
     License: none (public domain)
  */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  vertical-align: middle;
}

/* Setting */
/*  ---- 表示 */
@media (max-width: 599px) {
  .sp-none {
    display: none;
  }
  .sptab-none {
    display: none;
  }
}
@media (min-width: 1025px) {
  .pc-none {
    display: none;
  }
  .tabpc-none {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .sptab-none {
    display: none;
  }
  .tabpc-none {
    display: none;
  }
  .pc-none {
    display: none;
  }
}
img {
  max-width: 100%;
  height: auto;
}

a img {
  opacity: 1;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

a:hover img {
  opacity: 0.75;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon.eot?8zb7zi");
  src: url("../fonts/icomoon.eot?8zb7zi#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?8zb7zi") format("truetype"), url("../fonts/icomoon.woff?8zb7zi") format("woff"), url("../fonts/icomoon.svg?8zb7zi#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-angle-left:before {
  content: "\e902";
}

.icon-angle-right:before {
  content: "\e903";
}

@media (min-width: 600px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
/*  layout
---------------------------------------- */
body {
  font-family: "BIZ UDPGothic", sans-serif;
  color: #031e0b;
  line-height: 1.3;
}
@media (max-width: 599px) {
  body {
    font-size: 1.0625rem;
  }
}

.cont-area {
  padding-block: 100px;
}

.inner-box {
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .inner-box {
    width: 90%;
  }
}

.incont-box {
  max-width: 1024px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .incont-box {
    width: 90%;
  }
}

.bk-light {
  background: url("../img/bk_light.jpg");
  z-index: -1;
}

.bk-dark {
  background: url("../img/bk_dark.jpg") center center;
  background-size: cover;
  z-index: -1;
}

.bk-gry {
  background: #eceeec;
}

/* header
---------------------------------------------- */
.head-area {
  position: relative;
  height: 100svh;
  background: url("../img/slide-img.jpg") no-repeat left bottom;
  background-size: cover;
}
@media (max-width: 599px) {
  .head-area {
    background-position: 30% 100%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .head-area {
    background-position: 40% 100%;
  }
}

#site-header {
  width: 100%;
  padding: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  z-index: 40;
  position: fixed;
}

#site-header.UpMove {
  position: fixed;
  width: 100%;
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
#site-header.DownMove {
  position: fixed;
  width: 100%;
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-id {
  font-family: "BIZ UDPMincho", serif;
  color: #1b883b;
  font-size: 2.25rem;
  line-height: 1;
}
.site-id img {
  width: 200px;
}
.site-id a {
  text-decoration: none;
  color: #1b883b;
}

@media (max-width: 599px) {
  #site-header {
    padding: 0.5em;
  }
  #site-header.DownMove {
    background: rgba(255, 255, 255, 0.6);
  }
  .site-id {
    font-size: 1.875rem;
    letter-spacing: -0.1rem;
  }
  .site-id img {
    width: 180px;
  }
}
.openbtn {
  position: relative;
  width: 70px;
  height: 70px;
  cursor: pointer;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 13px;
  height: 1px;
  background: #031e0b;
}
.openbtn span:nth-of-type(1) {
  top: 22px;
  width: 60%;
}
.openbtn span:nth-of-type(2) {
  top: 29px;
  width: 40%;
}

.openbtn.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 35%;
}
.openbtn.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 35%;
}

.nav-area {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 30;
  top: 0px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  display: none;
  transition: 0.5s;
}
.nav-area ul {
  width: 70%;
  margin-inline: auto;
  margin-top: 150px;
}
@media (max-width: 1024px) {
  .nav-area ul {
    width: 90%;
  }
}
@media (max-width: 599px) {
  .nav-area ul {
    margin-top: 100px;
  }
}
@media (min-width: 1025px) {
  .nav-area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  .nav-area ul li {
    width: 48%;
  }
}
.nav-area li {
  font-size: 1.125rem;
  text-indent: -1em;
  padding-left: 1em;
}
.nav-area li:not(:last-child) {
  margin-bottom: 1.5em;
}
@media (max-width: 1024px) {
  .nav-area li:not(:last-child) {
    margin-bottom: 0;
    line-height: 1.3;
  }
}
.nav-area li a {
  text-decoration: none;
  color: #031e0b;
  width: 100%;
  display: inline-block;
  padding: 10px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.nav-area li a span::before {
  font-family: "icomoon" !important;
  content: "\e903";
  margin-right: 8px;
}

@media (hover: hover) {
  .nav-area li a:hover {
    background: #edf8f8;
  }
}
@media (hover: none) {
  .nav-area li a:hover {
    background: #edf8f8;
  }
}
.nav-area.is-open {
  display: block;
  animation: appear 0.5s ease;
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
.scroll-arrow {
  font-family: "M PLUS 1p", sans-serif;
  position: absolute;
  display: inline-block;
  bottom: 10.5vh;
  right: 1em;
  font-size: 0.875rem;
  writing-mode: vertical-lr;
}
.scroll-arrow::after {
  content: "";
  position: absolute;
  top: 3.2em;
  left: 50%;
  width: 1px;
  height: 4em;
  background: #031e0b;
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
}
.site-catch {
  position: absolute;
  top: 15%;
  right: 10%;
  font-family: "BIZ UDPMincho", serif;
  font-size: 3.125rem;
  color: #0f491f;
  writing-mode: vertical-rl;
  z-index: 10;
}
.site-catch span {
  color: #24a98c;
}
.site-catch p:last-child {
  margin-top: 2em;
  margin-right: 0.5em;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .site-catch {
    font-size: 2.75rem;
  }
}
@media (max-width: 599px) {
  .site-catch {
    font-size: 2.125rem;
    top: 15%;
  }
}

.wd-horizon {
  text-combine-upright: all;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 3.25rem;
  margin-inline: 5px;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .wd-horizon {
    font-size: 3rem;
  }
}
@media (max-width: 599px) {
  .wd-horizon {
    font-size: 2.25rem;
  }
}

.fig-paralle {
  width: 6.875em;
  height: 100vh;
  transform: skewX(-15deg);
  background: #fff;
  position: absolute;
  right: 25vw;
}
@media (max-width: 599px) {
  .fig-paralle {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .fig-paralle {
    right: 8vw;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1300px) {
  .fig-paralle {
    right: 10vw;
  }
}

/*  footer
---------------------------------------------- */
.footer-id {
  color: #1b883b;
  font-size: 3.375rem;
  font-family: "BIZ UDPMincho", serif;
  line-height: 1;
  margin-bottom: 1.5em;
}
.footer-id img {
  width: 300px;
}
@media (max-width: 599px) {
  .footer-id {
    font-size: 2.375rem;
    letter-spacing: -0.1em;
  }
  .footer-id img {
    width: 260px;
  }
}

.site-footer {
  text-align: center;
  padding: 60px 0 30px;
}
.site-footer__pcBtn {
  width: 20%;
  margin: 0 auto 2em;
}
.site-footer__pcBtn img {
  width: 1em;
  margin-right: 0.5em;
}
@media (max-width: 599px) {
  .site-footer {
    padding-bottom: 90px;
  }
  .site-footer__pcBtn {
    display: none;
  }
}

.spfoot-nav {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 100;
}
@media (min-width: 600px) {
  .spfoot-nav {
    display: none;
  }
}
.spfoot-nav__btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.spfoot-nav__btn li {
  width: 50%;
}
.spfoot-nav__btn li a {
  display: inline-block;
  width: 100%;
  height: auto;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  outline: none;
  position: relative;
  padding: 20px 0;
  color: #fff;
  background: #031e0b;
  border: 2px #031e0b solid;
  z-index: 2;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.spfoot-nav__btn li a:hover {
  background: #fff;
  color: #031e0b;
  border: 2px #031e0b solid;
}
.spfoot-nav__btn li a:hover::before, .spfoot-nav__btn li a:hover::after {
  width: 0;
  background: #031e0b;
}
.spfoot-nav__btn li a::before {
  top: 0;
  width: 50%;
  height: 100%;
  background: #031e0b;
  right: 0;
}
.spfoot-nav__btn li a::after {
  top: 0;
  width: 50%;
  height: 100%;
  background: #031e0b;
  left: 0;
}
.spfoot-nav__btn li a::before, .spfoot-nav__btn li a::after {
  position: absolute;
  display: block;
  z-index: -1;
  content: "";
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.spfoot-nav__btn li:not(:last-child) a {
  border-right: 1px #fff solid;
}
.spfoot-nav__btn li img {
  width: 1em;
}

.spfoot-nav3B {
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 100;
}
@media (min-width: 600px) {
  .spfoot-nav3B {
    display: none;
  }
}
.spfoot-nav3B__btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}
.spfoot-nav3B__btn li {
  width: 33.3333333333%;
}
.spfoot-nav3B__btn li a {
  display: inline-block;
  width: 100%;
  height: auto;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  outline: none;
  font-size: 1rem;
  position: relative;
  padding: 20px 0;
  color: #fff;
  background: #031e0b;
  border: 2px #031e0b solid;
  z-index: 2;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.spfoot-nav3B__btn li a:hover {
  background: #fff;
  color: #031e0b;
  border: 2px #031e0b solid;
}
.spfoot-nav3B__btn li a:hover::before, .spfoot-nav3B__btn li a:hover::after {
  width: 0;
  background: #031e0b;
}
.spfoot-nav3B__btn li a::before {
  top: 0;
  width: 50%;
  height: 100%;
  background: #031e0b;
  right: 0;
}
.spfoot-nav3B__btn li a::after {
  top: 0;
  width: 50%;
  height: 100%;
  background: #031e0b;
  left: 0;
}
.spfoot-nav3B__btn li a::before, .spfoot-nav3B__btn li a::after {
  position: absolute;
  display: block;
  z-index: -1;
  content: "";
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.spfoot-nav3B__btn li:not(:last-child) a {
  border-right: 1px #fff solid;
}
.spfoot-nav3B__btn li img {
  width: 0.7em;
  margin-right: 5px;
}

.site-c {
  font-size: 0.875rem;
}

/* title
--------------------------------------------*/
.title-area {
  width: 100%;
  height: 12.5rem;
  position: relative;
}
.title-area h2 {
  width: 80%;
  font-family: "BIZ UDPMincho", serif;
  font-size: 3.25rem;
  padding-left: 2rem;
  padding-bottom: 1.2rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .title-area h2 {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .title-area h2 {
    width: 100%;
    font-size: 2.875rem;
    padding-left: 1rem;
  }
  .title-area h2 span {
    letter-spacing: -0.1em;
  }
}
.title-area p {
  font-size: 12.5rem;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  position: absolute;
  top: -6.5rem;
  right: 0;
  z-index: 0;
}
@media (max-width: 599px) {
  .title-area p {
    font-size: 9.375rem;
    top: 0;
  }
}

@media (max-width: 599px) {
  #tit-flow > .title-area p {
    top: -3.5rem;
  }
}
.tit-light h2 {
  border-bottom: 1px #24a98c solid;
}
.tit-light h2 span {
  color: #24a98c;
}
.tit-light p {
  color: rgba(255, 255, 255, 0.8);
}

.tit-dark h2 {
  border-bottom: 1px #fff solid;
  color: #fff;
}
.tit-dark p {
  color: rgba(255, 255, 255, 0.4);
}

.wline-titL {
  color: #0f491f;
  padding-bottom: 0.8rem;
  position: relative;
}
.wline-titL::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 180px;
  height: 3px;
  background: #24a98c;
}
.wline-titL::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90px;
  height: 3px;
  background: #031e0b;
}

.wline-titC {
  width: 180px;
  margin: 0 auto;
  display: block;
  position: relative;
}
.wline-titC::before {
  content: "";
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  width: 180px;
  height: 3px;
  background: #24a98c;
}
.wline-titC::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90px;
  height: 3px;
  background: #031e0b;
}

.col-tit {
  color: #fff;
  text-align: center;
}
.col-tit span {
  display: inline-block;
  width: 100%;
  padding-block: 8px;
  background: #0f491f;
  border-radius: 20px;
}

.tit-osusume {
  width: 100%;
  color: #0f491f;
  font-size: 2rem;
  background: #fff;
  margin-bottom: 2em;
  padding-block: 2em;
}
.tit-osusume h3 {
  font-weight: 700;
  text-align: center;
  padding-bottom: 1rem;
}
@media (max-width: 599px) {
  .tit-osusume {
    font-size: 1.875rem;
  }
  .tit-osusume h3 {
    font-weight: 400;
  }
}

.tit-qa {
  margin-bottom: 5rem;
}
.tit-qa h2 {
  font-size: 2.375rem;
  font-family: "BIZ UDPMincho", serif;
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.tit-qa h2 span {
  color: #24a98c;
}
@media (max-width: 599px) {
  .tit-qa h2 {
    font-size: 2rem;
  }
  .tit-qa h2 span {
    letter-spacing: -0.1em;
  }
}

.tit-caution {
  font-size: 2rem;
  font-family: "BIZ UDPMincho", serif;
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 2em;
  position: relative;
}
.tit-caution::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 8em;
  height: 1px;
  bottom: 0;
  background: #031e0b;
}

.tit-style {
  font-size: 1.125rem;
  padding: 0.5em 1em 0.5em 2em;
  margin-bottom: 1.5em;
  margin-top: 3em;
  background: #fff;
  border: 1px #031e0b solid;
  position: relative;
}
.tit-style::before {
  position: absolute;
  content: "";
  width: 1.2em;
  height: 2px;
  top: 50%;
  left: 0;
  background: #24a98c;
}

.tit-style2 {
  color: #24a98c;
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 10px;
  padding-left: 1em;
  border-left: 4px #24a98c solid;
}

.tit-style3 {
  padding: 0.8em 1em;
  background: #fff;
  margin-bottom: 1.5em;
  border-left: 4px #24a98c solid;
  font-size: 1.375rem;
  color: #24a98c;
}
.tit-style3 span {
  font-size: 1rem;
  color: #031e0b;
}
@media (min-width: 600px) {
  .tit-style3 span {
    margin-left: 1em;
  }
}

.for-suggestion__title {
  font-family: "BIZ UDPMincho", serif;
  margin-bottom: 5em;
}
.for-suggestion__title h2 {
  color: #24a98c;
  font-size: 2.875rem;
  margin-bottom: 1.5rem;
}
.for-suggestion__title p {
  color: #24a98c;
  font-size: 1.5rem;
}
.for-suggestion__body {
  width: 56%;
  line-height: 1.5;
}
.for-suggestion__body p:not(:last-child) {
  margin-bottom: 1.5em;
}
@media (max-width: 1024px) {
  .for-suggestion {
    padding-bottom: 380px;
  }
  .for-suggestion__title h2 {
    font-size: 2.5rem;
  }
  .for-suggestion__body {
    width: 90%;
    margin: 0 auto;
  }
}
@media (max-width: 599px) {
  .for-suggestion__title {
    margin-bottom: 3em;
  }
  .for-suggestion__title h2 {
    font-size: 2.375rem;
    text-indent: -0.5em;
  }
}

.bk-imgw {
  background: url("../img/bk_suggestion.jpg") no-repeat right bottom;
}
@media (max-width: 1024px) {
  .bk-imgw {
    background-position: 80% 100%;
  }
}
@media (min-width: 1025px) {
  .bk-imgw {
    padding-block: 150px;
  }
}

.box-kitai {
  background: #fff;
  margin-bottom: 80px;
  box-shadow: 0 0 5px rgba(11, 22, 14, 0.3);
}
.box-kitai__tit {
  margin-bottom: 1em;
}
.box-kitai figure {
  display: block;
  background: url("../img/img-kitai.jpg") no-repeat center center;
  background-size: cover;
}
.box-kitai div {
  padding: 30px 20px;
}
.box-kitai .box-kitai__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin-left: 2em;
}
.box-kitai .box-kitai__list li {
  width: 48%;
  list-style: disc outside;
}
@media (min-width: 600px) {
  .box-kitai {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    width: 60%;
  }
  .box-kitai div {
    width: 50%;
  }
  .box-kitai figure {
    width: 50%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .box-kitai {
    width: 100%;
  }
}
@media (max-width: 599px) {
  .box-kitai figure {
    width: 100%;
    height: 200px;
  }
}

.future-Area {
  margin-bottom: 80px;
}
@media (min-width: 600px) {
  .future-Area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    width: 1200px;
    margin: 80px auto;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .future-Area {
    width: 90%;
  }
}

.future-box {
  border: 2px #0f491f solid;
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem;
}
.future-box figure {
  text-align: center;
}
.future-box h4 {
  background: #24a98c;
  color: #fff;
  text-align: center;
  padding-block: 6px;
  margin-bottom: 1rem;
}
@media (min-width: 1025px) {
  .future-box {
    width: 272px;
  }
  .future-box figure img {
    width: 78px;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .future-box {
    width: 48%;
    margin-bottom: 20px;
  }
  .future-box figure img {
    width: 22%;
  }
}
@media (max-width: 599px) {
  .future-box {
    width: 90%;
    margin: 0 auto 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .future-box figure {
    width: 22%;
  }
  .future-box div {
    width: 70%;
  }
}

.cont-point {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 5px rgba(11, 22, 14, 0.3);
  margin-bottom: 80px;
}
.cont-point div {
  padding: 20px;
}
.cont-point figure {
  display: block;
  background: url("../img/img-point.jpg") no-repeat center center;
  background-size: cover;
}
.cont-point__tit {
  font-size: 2rem;
  margin-bottom: 1em;
}
@media (min-width: 1025px) {
  .cont-point {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .cont-point div {
    width: 60%;
    line-height: 1.6;
    padding: 30px 40px;
  }
  .cont-point figure {
    width: 38%;
  }
}
@media screen and (min-width: 600px) and (max-width: 1024px) {
  .cont-point div {
    line-height: 1.5;
    padding: 1.25em;
  }
  .cont-point__tit {
    font-size: 1.5rem;
  }
  .cont-point figure {
    width: 100%;
    height: 280px;
  }
}
@media (max-width: 599px) {
  .cont-point__tit {
    font-size: 1.625rem;
  }
  .cont-point figure {
    width: 100%;
    height: 280px;
  }
}

.mech-box {
  width: 90%;
  margin: 0 auto;
  box-shadow: 0 0 5px rgba(11, 22, 14, 0.3);
  background: #fff;
}
.mech-box__tit {
  font-size: 2rem;
  margin-bottom: 1em;
}
@media (max-width: 1024px) {
  .mech-box__tit {
    font-size: 1.625rem;
    margin-top: 1rem;
  }
  .mech-box .boxw6 {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1025px) {
  .mech-box {
    width: 1200px;
    padding: 3em 5em;
    box-shadow: 0 0 5px rgba(11, 22, 14, 0.3);
  }
}

.img-m22-sp {
  text-align: center;
  margin-bottom: 1.5em;
}
@media (min-width: 1025px) {
  .img-m22-sp {
    display: none;
  }
}

@media (max-width: 1024px) {
  .caption-area {
    text-align: center;
    padding-bottom: 30px;
  }
}
@media (min-width: 1025px) {
  .caption-area {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}

.caption-box {
  width: 270px;
}
.caption-box p {
  font-size: 0.875rem;
  text-align: left;
}
.caption-box img {
  margin-bottom: 0.5em;
}
@media (max-width: 1024px) {
  .caption-box {
    margin: 0 auto 30px;
  }
}

.step-box {
  padding: 20px 30px 20px 20px;
  box-shadow: 0 0 5px rgba(11, 22, 14, 0.3);
  margin-bottom: 2em;
  background: linear-gradient(135deg, #edf8f8 0%, #edf8f8 30%, #fff 30%, #fff 100%);
}
.step-box__tit {
  border: 1px #7d8e84 solid;
  background: #fff;
  font-weight: 700;
  padding: 5px 0 5px 10px;
  font-size: 1.125rem;
}
.step-box__tit:first-letter {
  font-size: 2.25rem;
  vertical-align: middle;
  margin-right: 0.5rem;
  font-weight: 400;
  font-family: "M PLUS 1p", sans-serif;
}
.step-box__cont {
  width: 100%;
}
@media (max-width: 599px) {
  .step-box__tit {
    margin-bottom: 1em;
  }
  .step-box__cont img {
    width: 90%;
    margin: 10px auto 0;
    display: block;
  }
}
@media (min-width: 600px) {
  .step-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .step-box__tit {
    width: 35%;
    padding: 10px 0 10px 20px;
  }
  .step-box__cont {
    width: 60%;
  }
  .step-box__cont img {
    width: 40%;
  }
}

.cont-case {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  align-items: flex-start;
}

.syorei-tit {
  width: 34%;
  padding: 50px 50px;
  margin-left: 3em;
  background: #fff;
  box-shadow: 0 0 5px rgba(11, 22, 14, 0.3);
}
.syorei-tit h2 {
  font-size: 2.5rem;
  text-align: center;
  font-family: "BIZ UDPMincho", serif;
  margin-bottom: 1rem;
}
.syorei-tit h2 span {
  color: #24a98c;
}
.syorei-tit div {
  margin-bottom: 4em;
}
.syorei-tit p {
  font-size: 1.125rem;
  line-height: 1.7;
}
@media (min-width: 1025px) {
  .syorei-tit {
    max-width: 420px;
  }
}
@media (max-width: 1024px) {
  .syorei-tit {
    width: 90%;
    margin: 0 auto;
    padding: 30px;
  }
  .syorei-tit h2 {
    font-size: 2.375rem;
  }
}
@media (max-width: 1024px) and (max-width: 599px) {
  .syorei-tit h2 {
    font-size: 2rem;
    letter-spacing: -0.1em;
  }
}
@media (max-width: 1024px) {
  .syorei-tit div {
    margin-bottom: 2em;
  }
}
@media (max-width: 1024px) {
  .syorei-tit p {
    line-height: 1.5;
  }
}

.caseslider-area {
  width: 60%;
}
@media (max-width: 1024px) {
  .caseslider-area {
    width: 90%;
    margin: 80px auto 0;
  }
}

.case-slide {
  width: 80%;
}
.case-slide img {
  width: 70%;
}
@media (max-width: 1024px) {
  .case-slide {
    width: 90%;
    margin: 0 auto;
  }
  .case-slide img {
    width: 100%;
  }
}

.case-info {
  width: 70%;
  background: #edf8f8;
  margin-top: 4px;
  padding: 10px 10px 6px;
  font-size: 0.8125rem;
}
@media (max-width: 1024px) {
  .case-info {
    width: 100%;
  }
}
.case-info dt {
  width: 6em;
  float: left;
  clear: left;
  padding-bottom: 0.3em;
}
.case-info dd {
  padding: 0 0 0.3em 6em;
}

.buttonArrow {
  position: absolute;
  bottom: 0;
  display: block;
  width: 70px;
  height: 70px;
  border: 1px #031e0b solid;
  background: #fff;
  cursor: pointer;
}
.buttonArrow i {
  position: absolute;
  left: 24px;
  top: 18px;
  font-size: 2rem;
}

.buttonArrow.prev {
  left: -230px;
}

.buttonArrow.next {
  left: -161px;
}

@media (max-width: 1024px) {
  .buttonArrow {
    width: 50px;
    height: 50px;
    top: -60px;
  }
  .buttonArrow i {
    left: 12px;
    top: 8px;
  }
  .buttonArrow.prev {
    left: 0;
  }
  .buttonArrow.next {
    left: 49px;
  }
}
.faq-box {
  border-bottom: 1px #031e0b solid;
}
.faq-box dt {
  padding: 2em;
  background: #eceeec;
  border-top: 1px #031e0b solid;
  font-size: 1.25rem;
}
.faq-box dt span {
  display: inline-block;
  width: 90%;
  padding-left: 2em;
  text-indent: -2em;
}
@media (max-width: 1024px) {
  .faq-box dt {
    padding: 1em;
  }
}
.faq-box dd {
  padding: 1em 2em 2em;
  background: #eceeec;
}
@media (max-width: 1024px) {
  .faq-box dd {
    padding: 1em 1em 2em;
  }
}
.faq-box dd div {
  padding: 2em;
  background: #fff;
}

.accordion-btn {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.accordion-btn::after {
  position: absolute;
  top: inherit;
  right: 2em;
  font-family: "icomoon" !important;
  content: "\e901";
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 1024px) {
  .accordion-btn::after {
    right: 1em;
  }
}
.accordion-btn.close::after {
  font-family: "icomoon" !important;
  content: "\e906";
}

.accordion-panel {
  display: none;
}

.yoyaku-area {
  text-align: center;
  color: #fff;
  background: url("../img/bk_yoyaku.jpg") center center;
  background-size: cover;
}
.yoyaku-area__tit {
  font-size: 2.25rem;
  margin: 0 auto 3rem;
  padding-bottom: 0.8em;
  border-bottom: 1px #fff solid;
}
.yoyaku-area div {
  font-size: 2rem;
}
.yoyaku-area div li:first-child {
  margin-bottom: 1em;
}
.yoyaku-area__intit {
  padding: 0.3em 0.5em;
  color: #031e0b;
  border: 1px #fff solid;
  background: rgba(255, 255, 255, 0.4);
}
@media (min-width: 600px) {
  .yoyaku-area__intit {
    margin-right: 2em;
    display: grid;
    place-content: center;
  }
}
@media (max-width: 1024px) {
  .yoyaku-area__intit {
    width: 86%;
    margin: 0 auto 1rem;
  }
}
.yoyaku-area__tel a {
  color: #fff;
  text-decoration: none;
}
.yoyaku-area__web a {
  font-size: 1.375rem;
}
@media (max-width: 599px) {
  .yoyaku-area__web {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 600px) {
  .yoyaku-area__tit {
    width: 15em;
  }
  .yoyaku-area div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .yoyaku-area div.yoyaku-method {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
  }
}

.ico-yoyaku {
  padding: 0.3em 0.5em;
  background: #031e0b;
}
@media (min-width: 600px) {
  .ico-yoyaku {
    margin-right: 2em;
  }
}
@media (max-width: 1024px) {
  .ico-yoyaku {
    width: 86%;
    margin: 0 auto 1rem;
  }
}

.bkW-box {
  width: 90%;
  margin: 0 auto;
  padding: 2em 1em 0.1em;
  box-shadow: 0 0 5px rgba(11, 22, 14, 0.3);
  background: #fff;
}
@media (min-width: 1025px) {
  .bkW-box {
    width: 1200px;
    padding: 2em;
  }
}

.flex-area {
  width: 100%;
}
@media (min-width: 1025px) {
  .flex-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
  }
}

.cosme-pdbox {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 5px rgba(11, 22, 14, 0.3);
  margin: 0 auto 1.5em;
  text-align: center;
  padding: 1.5em 0 2.5em;
}
.cosme-pdbox figure {
  width: 60%;
  margin: 0 auto;
}
.cosme-pdbox dt {
  font-weight: bold;
  color: #24a98c;
  margin-bottom: 0.5em;
  font-size: 1.25rem;
}
@media (min-width: 1025px) {
  .cosme-pdbox {
    width: 46%;
  }
}

.bk-imgak {
  background: url("../img/bk-pc-rosette.jpg") right bottom no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .bk-imgak {
    background: url("../img/bk-sp-rosette.jpg") center bottom no-repeat;
    background-size: cover;
  }
}

.cont-roset__tit {
  text-align: center;
}
.cont-roset__tit h2 {
  font-family: "BIZ UDPMincho", serif;
  font-size: 2.625rem;
  margin-bottom: 2rem;
}
.cont-roset__tit h2 span {
  color: #24a98c;
}
@media (max-width: 599px) {
  .cont-roset__tit h2 span {
    letter-spacing: -0.1em;
  }
}
.cont-roset__tit p {
  font-size: 1.125rem;
}
.cont-roset__body {
  width: 90%;
  margin: 0 auto;
  padding: 3.125rem;
  background: rgba(255, 255, 255, 0.9);
}
.cont-roset__body p:not(:last-child) {
  margin-bottom: 2em;
}
@media (max-width: 1024px) {
  .cont-roset__tit {
    margin-bottom: 2rem;
  }
  .cont-roset__tit h2 {
    position: relative;
  }
  .cont-roset__tit h2::after {
    position: absolute;
    content: "";
    width: 50%;
    height: 1px;
    left: 50%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    background: #24a98c;
  }
}
@media screen and (max-width: 1024px) and (min-width: 600px) and (max-width: 1024px) {
  .cont-roset__tit {
    padding: 20px 0 30px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0) 100%);
  }
}
@media (min-width: 1025px) {
  .cont-roset {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  .cont-roset__tit {
    width: 40%;
    max-width: 420px;
  }
  .cont-roset__tit h2 {
    border-bottom: 1px #24a98c solid;
    padding-bottom: 1em;
  }
  .cont-roset__body {
    width: 60%;
    max-width: 680px;
  }
  .cont-roset .linkBtn {
    width: 50%;
    margin: 0 auto;
  }
}

.access-area {
  width: 100%;
  position: relative;
}
.access-area__box h2 {
  font-size: 1.875rem;
  text-align: center;
  font-family: "BIZ UDPMincho", serif;
  margin-bottom: 1rem;
}
.access-area dl {
  margin: 3em 0 2em;
}
.access-area dt::before {
  content: "■";
}
@media (max-width: 1024px) {
  .access-area {
    background: #eceeec;
    padding-block: 50px;
  }
  .access-area__box {
    width: 86%;
    margin: 0 auto;
  }
  .access-area dd {
    margin-bottom: 20px;
  }
}
@media (min-width: 1025px) {
  .access-area__box {
    width: 420px;
    padding: 30px 40px;
    background: #fff;
    box-shadow: 0 0 5px rgba(11, 22, 14, 0.3);
    position: absolute;
    z-index: 20;
    bottom: 5%;
    right: 5%;
  }
  .access-area dt {
    width: 6em;
    float: left;
    clear: left;
  }
  .access-area dd {
    padding: 0 0 1em 6em;
  }
  .access-area dd a {
    color: #031e0b;
  }
}

#gmap {
  width: 100%;
  height: 450px;
}
@media (max-width: 1024px) {
  #gmap {
    display: none;
  }
}

.def-list {
  margin-block: 2em;
  margin-left: 2em;
}
.def-list li {
  list-style: outside disc;
}
.def-list li:not(:last-child) {
  margin-bottom: 0.5em;
}

.hosoku-list li {
  padding-left: 1em;
  text-indent: -1em;
}
.hosoku-list li:not(:last-child) {
  margin-bottom: 0.5em;
}

.hosoku-p {
  padding-left: 1em;
  text-indent: -1em;
}

.explanation-box {
  width: 100%;
  padding: 1em;
  margin: 1em auto;
}
.explanation-box dt {
  font-weight: bold;
  color: #24a98c;
  margin-bottom: 0.5em;
}

.thin-grid {
  width: 100%;
  background: #fff;
}
.thin-grid th {
  background: #eceeec;
  padding-block: 10px;
  border: 1px #031e0b solid;
}
.thin-grid td {
  padding: 10px 20px;
  border: 1px #031e0b solid;
}
@media (max-width: 599px) {
  .thin-grid td {
    padding: 8px;
  }
}

.price-grid {
  width: 100%;
  background: #fff;
}
.price-grid th,
.price-grid td {
  border: 1px #031e0b solid;
  padding: 10px 30px;
}
.price-grid thead th {
  background: #eceeec;
}
.price-grid tbody th {
  text-align: left;
}
.price-grid tbody td {
  text-align: center;
}
.price-grid caption {
  text-align: right;
}
@media (max-width: 599px) {
  .price-grid th,
  .price-grid td {
    padding: 10px;
  }
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.img-box {
  box-shadow: 0 0 5px rgba(11, 22, 14, 0.3);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.img-box div {
  padding: 20px;
}

.cont-imgbox p:not(:last-child) {
  margin-bottom: 1.5rem;
}

.line-box {
  width: 100%;
  padding: 1.5em;
  border: 2px #24a98c solid;
  background: #fff;
}
.line-box p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .cont-imgbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }
  .boxw3 {
    width: 35%;
  }
  .boxw5 {
    width: 50%;
  }
  .boxw6 {
    width: 60%;
  }
  .boxw7 {
    width: 70%;
  }
}
.boxA {
  width: 100%;
}

@media (max-width: 1024px) {
  .cont-imgbox figure {
    text-align: center;
    margin-top: 50px;
  }
}
.main-btn {
  display: inline-block;
  width: 100%;
  height: auto;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  outline: none;
  position: relative;
  padding: 12px 0;
  color: #fff;
  background: #031e0b;
  border: 2px #031e0b solid;
  z-index: 2;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.main-btn:hover {
  background: #fff;
  color: #031e0b;
  border: 2px #031e0b solid;
}
.main-btn:hover::before, .main-btn:hover::after {
  width: 0;
  background: #031e0b;
}
.main-btn::before {
  top: 0;
  width: 50%;
  height: 100%;
  background: #031e0b;
  right: 0;
}
.main-btn::after {
  top: 0;
  width: 50%;
  height: 100%;
  background: #031e0b;
  left: 0;
}
.main-btn::before, .main-btn::after {
  position: absolute;
  display: block;
  z-index: -1;
  content: "";
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.linkarr::before {
  font-family: "icomoon" !important;
  content: "\e903";
  margin-right: 8px;
}

.linklogo::before {
  font-family: "icomoon" !important;
  content: "\e900";
  margin-right: 8px;
}

.linktel::before {
  font-family: "icomoon" !important;
  content: "\e907";
  margin-right: 8px;
}

.linktop::before {
  font-family: "icomoon" !important;
  content: "\e904";
}

/* ------------------------------------------------
 アニメーション
----------------------------------------------------- */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.smooth {
  animation-name: smoothAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  transform-origin: left;
  opacity: 0;
}

@keyframes smoothAnime {
  from {
    transform: translate3d(0, 100%, 0) skewY(12deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0) skewY(0);
    opacity: 1;
  }
}
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.smoothTrigger {
  opacity: 0;
}

.delay-time02 {
  animation-delay: 0.2s;
}

.delay-time04 {
  animation-delay: 0.4s;
}

.delay-time06 {
  animation-delay: 0.6s;
}

.delay-time1 {
  animation-delay: 1s;
}

.delay-time1-4 {
  animation-delay: 1.4s;
}

.delay-time2 {
  animation-delay: 2s;
}

.delay-time3 {
  animation-delay: 3s;
}

sup {
  font-size: 0.75rem;
}

.veratt {
  font-size: 1rem;
  vertical-align: text-top !important;
}

b {
  font-weight: 700;
}

.ud-line {
  text-decoration: underline;
}

.kyocho {
  font-weight: 700;
  color: #24a98c;
}

.al-c {
  text-align: center;
}

.al-r {
  text-align: right;
}

.al-l {
  text-align: left;
}

.bk-gry {
  background: #eceeec;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

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