@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Noto Sans", "Noto Sans JP", Arial, Helvetica, sans-serif, serif;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

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

p {
  font-size: 1.8rem;
}

header {
  position: fixed;
  background-color: rgba(120, 142, 125, 0.8);
  padding: 30px 40px;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 100;
}
header .logo a {
  font-size: 2.8rem;
  color: #fff;
}
header .header_nav {
  margin-left: auto;
}
header .header_nav_list {
  display: flex;
  align-items: center;
}
header .header_nav_list li:not(:last-of-type) {
  margin-right: 35px;
}
header .header_nav_list li:last-of-type a {
  color: #788e7d;
  background-color: #fff;
}
header .header_nav_list li:last-of-type a:hover {
  color: #fff;
  background-color: transparent;
}
header .header_nav_list a {
  font-size: 2rem;
  padding: 15px;
  color: #fff;
  font-style: italic;
  transition: all 0.4s ease;
}
header .header_nav_list a:hover {
  color: #788e7d;
  background-color: #fff;
}

.top_view {
  width: 100%;
  height: 100vh;
  position: relative;
}
.top_view .top_view_left, .top_view .top_view_right {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(50% + 260px);
  height: 100%;
}
.top_view .top_view_left::after, .top_view .top_view_right::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
}
.top_view .top_view_left {
  position: absolute;
  z-index: 11;
  top: 0;
  background-image: url("../img/top_view_left.jpg");
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 520px) 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 520px) 100%, 0 100%);
}
.top_view .top_view_left::after {
  background-color: rgba(255, 255, 255, 0.5);
}
.top_view .text {
  font-size: 8vw;
  color: #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 12;
  font-style: italic;
  letter-spacing: 0.2em;
}
.top_view .top_view_right {
  background: url("../img/top_view_right.jpg") no-repeat center/cover;
  margin-left: auto;
  position: absolute;
  right: 0;
  z-index: 10;
}
.top_view .top_view_right::after {
  background-color: rgba(51, 51, 51, 0.5);
}
.top_view .top_view_text {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 13;
  -webkit-clip-path: polygon(calc(50% + 260px) 0, 100% 0, 100% 100%, calc(50% - 260px) 100%);
          clip-path: polygon(calc(50% + 260px) 0, 100% 0, 100% 100%, calc(50% - 260px) 100%);
}
.top_view .top_view_text .text {
  color: #fff;
}

.concept {
  width: 100%;
  height: 600px;
  background: url("../img/concept.jpg") no-repeat center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.concept p {
  font-size: 3.6rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 4px 4px 10px black;
  z-index: 21;
  line-height: 2em;
}
.concept::after {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  z-index: 20;
}

main {
  margin: 80px 0;
}

.main_contents_container {
  margin: 80px;
  justify-content: space-around;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 80px 40px;
}
.main_contents_container .course_bg {
  background: no-repeat center/cover;
  background-image: url("../img/course.jpg");
}
.main_contents_container .course_bg .content_title {
  font-size: 5.6rem;
  font-family: "bitter";
  text-align: center;
  font-weight: normal;
  font-style: italic;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  position: relative;
  margin-top: 40px;
}
.main_contents_container .course_bg .content_title::before {
  content: "コース案内";
  font-size: 1.2rem;
  color: #5A5A5A;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main_contents_container .course_bg .sub_title {
  font-size: 1.2rem;
  color: #707070;
  display: block;
  text-align: center;
}
.main_contents_container .how_to_use_bg {
  background: no-repeat center/cover;
  background-image: url("../img/how_to_use.jpg");
}
.main_contents_container .how_to_use_bg .content_title {
  font-size: 5.6rem;
  font-family: "bitter";
  text-align: center;
  font-weight: normal;
  font-style: italic;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  position: relative;
  margin-top: 40px;
}
.main_contents_container .how_to_use_bg .content_title::before {
  content: "利用方法";
  font-size: 1.2rem;
  color: #5A5A5A;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main_contents_container .how_to_use_bg .sub_title {
  font-size: 1.2rem;
  color: #707070;
  display: block;
  text-align: center;
}
.main_contents_container .news_bg {
  background: no-repeat center/cover;
  background-image: url("../img/news.jpg");
}
.main_contents_container .news_bg .content_title {
  font-size: 5.6rem;
  font-family: "bitter";
  text-align: center;
  font-weight: normal;
  font-style: italic;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  position: relative;
  margin-top: 40px;
}
.main_contents_container .news_bg .content_title::before {
  content: "お知らせ";
  font-size: 1.2rem;
  color: #5A5A5A;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.main_contents_container .news_bg .sub_title {
  font-size: 1.2rem;
  color: #707070;
  display: block;
  text-align: center;
}
.main_contents_container .main_contents_box {
  height: 500px;
  max-width: 450px;
  margin: 0 auto;
}
.main_contents_container .main_contents_box a {
  color: #333;
  background-color: rgba(255, 255, 255, 0.5);
  display: block;
  width: 100%;
  height: 100%;
  padding: 40px;
  transition: ease all 0.4s;
}
.main_contents_container .main_contents_box a:hover {
  background-color: rgba(255, 255, 255, 0.9);
}
.main_contents_container .content_description {
  margin-bottom: 50%;
  transform: translateY(50%);
  font-size: 2rem;
  font-weight: bold;
}

.sub_contents_box {
  display: flex;
  height: 400px;
}
.sub_contents_box:nth-child(2) {
  flex-flow: row-reverse;
}

.sub_contents_img {
  width: 50%;
}

.sub_content_text {
  width: 50%;
  background-color: #788e7d;
}
.sub_content_text a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  color: #333;
  padding: 0 40px;
  width: 100%;
  height: 100%;
  transition: ease all 0.4s;
}
.sub_content_text a:hover {
  background-color: rgba(255, 255, 255, 0.5);
}
.sub_content_text p {
  font-size: 2rem;
}

.sub_content_title {
  font-size: 5.6rem;
  font-family: "bitter";
  font-weight: normal;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  margin-bottom: 40px;
}

.price_title {
  position: relative;
}
.price_title::before {
  content: "利用料金";
  position: absolute;
  font-size: 1.2rem;
  color: #5A5A5A;
  left: 50%;
  transform: translateX(-50%);
}

.access_title {
  position: relative;
}
.access_title::before {
  content: "アクセス";
  position: absolute;
  font-size: 1.2rem;
  color: #5A5A5A;
  left: 50%;
  transform: translateX(-50%);
}

.contact_title {
  position: relative;
}
.contact_title::before {
  content: "お問い合わせ";
  position: absolute;
  font-size: 1.2rem;
  color: #5A5A5A;
  left: 50%;
  transform: translateX(-50%);
}

.home_sub_image {
  margin: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 300px);
}

footer {
  background-color: #788e7d;
  padding: 40px 80px 10px 80px;
}
footer h3 {
  font-size: 2.4rem;
  margin-bottom: 30px;
}
footer .footer_address {
  margin-left: 40px;
}
footer .footer_address dt {
  margin-right: 10px;
  float: left;
  clear: left;
}
footer .footer_address dt, footer .footer_address dd {
  font-size: 1.8rem;
  margin-bottom: 15px;
}
footer .copylight {
  text-align: center;
  margin: 0 auto;
  font-size: 1.4rem;
  display: inline-block;
  width: 100%;
}
/*# sourceMappingURL=style.css.map */