/* ==================================
Reset
================================== */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
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,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

span,
small,
strong,
em,
b,
i {
  color: inherit;
}
/* ==================================
Common
================================== */
html {
  font-size: 100%;
}
body {
  color: #736357;
  font-family: "Noto Sans JP", sans-serif;
}
li {
  list-style: none;
}
.container {
  width: 100%;
  background-image: url(../images/background.png);
  background-size: 100%;
  background-position: center;
  background-repeat: repeat-y;
}
a {
  text-decoration: none;
}
hr {
  margin: 0;
}
/* ==================================
Common
================================== */
.mainvisual {
  display: flex;
  width: 100%;
  height: 80vh;
  background-image: url(../images/mainvisual.jpg);
  background-position: center;
  justify-content: center;
  align-items: center;
}
.mainvisual img {
  display: block;
  width: 80%;
  max-width: 700px;
  margin: 0 auto;
}
.about {
  padding-top: 80px;
}
.about_content {
  display: flex;
  margin-bottom: 40px;
}
.about_content._reverse {
  flex-direction: row-reverse;
}
.aboutImg {
  margin-top: 40px;
}
.aboutImg img {
  max-width: 400px;
}
.aboutBody {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.aboutTtl img {
  width: 60%;
}
.about p {
  line-height: 3rem;
  margin-bottom: 40px;
}
.plan {
  margin: 0 auto;
  padding: 0 20px;
}
.planTtlContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.planTtl img {
  width: 100%;
}
.planTxt {
  line-height: 2.5rem;
  max-width: 800px;
  margin: 0 auto 60px;
}
.planGraph {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.planGraphTtl {
  color: #000;
  font-size: 1.5rem;
  margin-bottom: 60px;
  position: relative;
}
.planGraphTtl::before {
  content: "";
  display: block;
  border: 16px solid transparent;
  border-top-width: 12px;
  border-bottom-width: 12px;
  border-left-color: #000;
  position: absolute;
  top: 6px;
  left: -24px;
}
.planGraphSub {
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 20px;
}
.planGraphImg {
  text-align: center;
}
.planGraphImg img {
  width: 80%;
  max-width: 700px;
}
.swiper {
  margin-bottom: 80px;
}
.planImage img {
  width: 100%;
}
.maps {
  padding-bottom: 120px;
}
.maps img {
  display: block;
  width: 80%;
  max-width: 980px;
  margin: 0 auto 80px;
}
.locationList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: space-evenly;
}
.locationList::after {
  content: "";
  display: block;
  height: 33%;
  width: 33%;
}
.locationList_item {
  margin-bottom: 12px;
  width: 33%;
}
.locationList_item .number {
  font-size: 0.875rem;
  width: 25px;
  text-align: center;
  display: inline-block;
  color: #fff;
  background-color: #000;
  padding: 3px 0;
  margin-right: 10px;
}
.detail {
  display: flex;
  margin: 0 auto 40px;
  max-width: 1280px;
}
.detailImg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
}
.detail img {
  width: 100%;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
}
.detailBody {
  width: 60%;
  padding: 0 2rem;
}
.detailBody p {
  padding-bottom: 2rem;
}
.detailTxt {
  padding: 0;
  line-height: 2;
}
.detailBtn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.detailBtn a {
  font-family: "BIZ UD";
  font-weight: bold;
  letter-spacing: 0.1rem;
  display: block;
  width: 80%;
  height: 60px;
  color: #fff;
  background-color: #736357;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s;
}
.detailBtn a:hover {
  opacity: 0.7;
}
.footer {
  color: #fff;
  background-color: #736357;
  font-size: 0.75rem;
  text-transform: uppercase;
  text-align: center;
  padding: 4px;
}
@media screen and (max-width: 920px) {
  .locationList_item {
    width: 50%;
  }
}
@media screen and (max-width: 792px) {
  .about {
    padding-top: 80px;
  }
  .about_content {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .about_content._reverse {
    flex-direction: column;
  }
  .aboutImg img {
    width: 100%;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
  }
  .maps {
    padding-bottom: 20px;
  }
  .maps img {
    width: 100%;
  }
  .locationList {
    padding: 0 10px;
  }
  .detail {
    flex-direction: column;
  }
  .detailImg {
    width: 100%;
  }
  .detailBody {
    width: 100%;
  }
  .detailTxt {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .locationList_item {
    width: 100%;
  }
}
