@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Oswald:wght@300;400;500;600&display=swap");
@font-face {
  font-family: "hiraginow6";
  src: url(../font/W6.otf);
}
@font-face {
  font-family: "hiraginow3";
  src: url(../font/W3.otf);
}
html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}

body {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  font-family: "hiraginow3";
}

h1, h2, h3, h4, h5, h6, p, ul, li, dl, dt, dd, table, th, td, figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "hiraginow6";
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

.pc_only {
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    width: 100%;
    display: block;
  }
}

.en {
  font-family: "Hind", sans-serif;
}

.more_btn {
  padding: 14px 75px 14px 60px;
  border-radius: 30px;
  border: 1px solid #fff;
  font-weight: 200;
  font-size: 1.8rem;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  transition: all 1s;
}
.more_btn::after {
  content: "";
  background-image: url(../img/arrow.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin-left: 30px;
  position: absolute;
  top: 22px;
  right: 40px;
  transition: all 1s;
}
.more_btn:hover {
  border: 1px solid #fad040;
  background-color: #fad040;
  color: #202020;
  transition: all 1s;
}
.more_btn:hover::after {
  content: "";
  background-image: url(../img/arrow_b.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin-left: 60px;
  display: inline-block;
  position: absolute;
  top: 22px;
  right: 20px;
  transition: all 1s;
}

.more_btn_b {
  padding: 14px 85px 14px 70px;
  border-radius: 30px;
  border: 1px solid #202020;
  font-weight: 200;
  font-size: 1.8rem;
  color: #202020;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  transition: all 1s;
}
.more_btn_b::after {
  content: "";
  background-image: url(../img/arrow_b.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin-left: 30px;
  position: absolute;
  top: 22px;
  right: 40px;
  transition: all 1s;
}
.more_btn_b:hover {
  border: 1px solid #fad040;
  background-color: #fad040;
  color: #202020;
  transition: all 1s;
}
.more_btn_b:hover::after {
  content: "";
  background-image: url(../img/arrow_b.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 12px;
  height: 12px;
  margin-left: 60px;
  display: inline-block;
  position: absolute;
  top: 22px;
  right: 20px;
  transition: all 1s;
}

/*-----header-----*/
header {
  width: 100%;
  background-color: #149fc7;
  height: 80px;
  position: fixed;
  z-index: 100;
}
header .header_inner {
  height: 140px;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
header .header_inner h2 {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 200px;
}
@media screen and (max-width: 767px) {
  header .header_inner h2 {
    z-index: 200;
  }
}
header .header_inner h2 a img {
  width: 100%;
}
header .header_inner .header_nav {
  position: absolute;
  right: 80px;
  top: 30px;
}
@media screen and (max-width: 1080px) {
  header .header_inner .header_nav {
    display: none;
  }
}
header .header_inner .header_nav ul {
  display: flex;
}
header .header_inner .header_nav ul li {
  font-size: 1.6rem;
  margin-right: 30px;
  border-right: 1px solid #fff;
  padding: 0 30px 0 0;
  font-family: "hiraginow6";
}
header .header_inner .header_nav ul li:nth-child(3) {
  border-right: none;
}
header .header_inner .header_nav ul li a {
  color: #fff;
}
header .header_inner .toggle_wrap {
  width: 80px;
  height: 80px;
  z-index: 100;
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: #0068b7;
}
@media screen and (max-width: 767px) {
  header .header_inner .toggle_wrap {
    height: 80px;
  }
}
header .header_inner #nav_toggle {
  display: block;
  width: 40px;
  height: 40px;
  z-index: 50;
  position: absolute;
  top: 26px;
  right: 20px;
}
header .header_inner #nav_toggle div {
  position: relative;
}
header .header_inner #nav_toggle span {
  display: block;
  height: 2px;
  background: #fff;
  position: absolute;
  width: 100%;
  left: 0;
  transition: 0.5s ease-in-out;
}
header .header_inner #nav_toggle span:nth-child(1) {
  top: 0px;
}
header .header_inner #nav_toggle span:nth-child(2) {
  top: 12px;
}
header .header_inner #nav_toggle span:nth-child(3) {
  top: 24px;
}
header .header_inner .open #nav_toggle span:nth-child(1) {
  top: 12px;
  transform: rotate(135deg);
}
header .header_inner .open #nav_toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
header .header_inner .open #nav_toggle span:nth-child(3) {
  top: 12px;
  transform: rotate(-135deg);
}
header .header_inner nav {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  width: 100%;
  height: 100vh;
  padding: 60px 0;
  box-sizing: border-box;
  z-index: 50;
  background-color: #149fc7;
}
@media screen and (max-width: 767px) {
  header .header_inner nav {
    top: 70px;
    height: auto;
  }
}
@media screen and (max-width: 420px) {
  header .header_inner nav {
    width: 100%;
  }
}
header .header_inner nav .nav_inner {
  width: 670px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 767px) {
  header .header_inner nav .nav_inner {
    width: 90%;
    position: unset;
    top: unset;
    left: unset;
    transform: unset;
    -webkit-transform: unset;
    margin: 0 auto;
    height: auto;
  }
}
header .header_inner nav .nav_inner .ttl_wrap {
  display: block;
}
header .header_inner nav .nav_inner .ttl_wrap h2 {
  width: 300px;
  display: block;
  position: unset;
  margin: 0 auto 50px;
}
@media screen and (max-width: 767px) {
  header .header_inner nav .nav_inner .ttl_wrap h2 {
    display: none;
  }
}
header .header_inner nav .nav_inner .ttl_wrap h2 img {
  width: 100%;
}
header .header_inner nav .nav_inner .ttl_wrap h3 {
  width: 360px;
  display: block;
  position: unset;
  margin: 0 auto 40px;
}
@media screen and (max-width: 767px) {
  header .header_inner nav .nav_inner .ttl_wrap h3 {
    width: 70%;
    margin-bottom: 20px;
  }
}
header .header_inner nav .nav_inner .ttl_wrap h3 img {
  width: 100%;
}
header .header_inner nav .nav_inner .flex_wrap {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  header .header_inner nav .nav_inner .flex_wrap {
    display: block;
  }
}
header .header_inner nav .nav_inner .flex_wrap ul {
  margin: 0 60px;
}
@media screen and (max-width: 767px) {
  header .header_inner nav .nav_inner .flex_wrap ul {
    text-align: center;
    margin: 0 auto;
  }
}
header .header_inner nav .nav_inner .flex_wrap ul li {
  margin: 36px 0;
}
@media screen and (max-width: 767px) {
  header .header_inner nav .nav_inner .flex_wrap ul li {
    margin: 20px 0;
  }
}
header .header_inner nav .nav_inner .flex_wrap ul li a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #333333;
  position: relative;
  color: #f7f7f7;
  align-items: left;
  font-family: "hiraginow6";
}
header .header_inner nav .nav_inner .flex_wrap ul li a::after {
  position: absolute;
  bottom: -20px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
header .header_inner nav .nav_inner .flex_wrap ul li a:hover::after {
  visibility: visible;
  bottom: -10px; /*アニメーションが止まる位置*/
  opacity: 1;
}
header .header_inner nav .nav_inner .flex_wrap ul li a span {
  font-size: 3.2rem;
  font-weight: 300;
  margin-right: 30px;
  color: #8f8f8f;
}
header .header_inner nav .nav_inner .sns_wrap {
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
header .header_inner nav .nav_inner .sns_wrap a {
  margin: 0 20px;
}
header .header_inner nav .nav_inner .sns_wrap a img {
  width: auto;
  height: 24px;
}

/*----footer----*/
footer {
  width: 100%;
  background-color: #149fc7;
  padding: 60px 0 0;
}
footer .footer_wrap {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  footer .footer_wrap {
    width: 80%;
  }
}
footer .footer_wrap h2 {
  width: 330px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  footer .footer_wrap h2 {
    width: 90%;
  }
}
footer .footer_wrap h2 img {
  width: 100%;
  height: auto;
}
footer .flex_wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 30px auto 60px;
}
@media screen and (max-width: 767px) {
  footer .flex_wrap {
    display: block;
  }
}
footer .flex_wrap a {
  display: block;
  width: 48%;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  footer .flex_wrap a {
    width: 100%;
    margin-top: 20px;
  }
}
footer .flex_wrap a:hover {
  opacity: 0.6;
  transition: all 0.6s;
}
footer .flex_wrap a img {
  width: 100%;
}
footer .copy {
  text-align: center;
  color: #fff;
}

/*----top_mv----*/
.mv {
  width: 100%;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.mv .mv_wrap {
  width: 100%;
}
.mv .mv_wrap .pc_only {
  width: 100%;
  display: block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv .mv_wrap .pc_only {
    display: none;
  }
}
.mv .mv_wrap .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .mv .mv_wrap .sp_only {
    width: 100%;
    display: block;
  }
}
.mv .inner_wrap {
  width: 34%;
  position: absolute;
  top: 20%;
  left: 10%;
}
@media screen and (max-width: 1080px) {
  .mv .inner_wrap {
    width: 26%;
    left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .mv .inner_wrap {
    position: unset;
    display: block;
    width: 96%;
    margin: -60px auto 0;
  }
}
.mv .inner_wrap h2 {
  width: 100%;
}
.mv .inner_wrap h2 img {
  width: 100%;
}
.mv .inner_wrap h4 {
  position: absolute;
  right: -80px;
  top: 0;
  width: 2.2vw;
}
@media screen and (max-width: 767px) {
  .mv .inner_wrap h4 {
    display: none;
  }
}
.mv .inner_wrap h4 img {
  width: 100%;
}
.mv .bottom_wrap {
  width: 320px;
  position: absolute;
  bottom: 16px;
  left: 10%;
}
@media screen and (max-width: 1080px) {
  .mv .bottom_wrap {
    width: 26%;
    left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .mv .bottom_wrap {
    position: unset;
    display: block;
    width: 96%;
    margin: 0 auto;
  }
}
.mv .bottom_wrap .youtube {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  margin: 30px auto;
}
.mv .bottom_wrap .youtube iframe {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 1080px) {
  .mv .bottom_wrap {
    height: auto;
  }
}
.mv .bottom_wrap a {
  width: 80%;
}
.mv .bottom_wrap a .pc_only {
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .mv .bottom_wrap a .pc_only {
    display: none;
  }
}
.mv .bottom_wrap a .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .mv .bottom_wrap a .sp_only {
    width: 100%;
    display: block;
  }
}

.sns_area {
  width: 1000px;
  margin: 60px auto;
}
@media screen and (max-width: 1080px) {
  .sns_area {
    width: 90%;
  }
}
.sns_area .tw_wrap {
  width: 100%;
}
.sns_area .tw_wrap .tw_ttl_container {
  border-top: 2px solid #14a1c9;
  border-bottom: 2px solid #14a1c9;
  padding: 10px 0;
  position: relative;
}
.sns_area .tw_wrap .tw_ttl_container h3 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  width: 100%;
}
.sns_area .tw_wrap .tw_ttl_container h3::before {
  content: "";
  display: block;
  border-top: 1px solid #14a1c9;
  width: 530px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .sns_area .tw_wrap .tw_ttl_container h3::before {
    width: 80%;
  }
}
.sns_area .tw_wrap .tw_ttl_container h3::after {
  content: "";
  display: block;
  border-top: 1px solid #14a1c9;
  width: 530px;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .sns_area .tw_wrap .tw_ttl_container h3::after {
    width: 80%;
  }
}
.sns_area .tw_wrap .tw_ttl_container h3 img {
  height: 46px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sns_area .tw_wrap .tw_ttl_container h3 img {
    height: 36px;
  }
}
@media screen and (max-width: 420px) {
  .sns_area .tw_wrap .tw_ttl_container h3 img {
    height: 28px;
  }
}
.sns_area .tw_wrap .tw_ttl_container .qr {
  position: absolute;
  top: 14px;
  right: 0;
  display: block;
  width: 80px;
  height: 80px;
  transition: all 0.6s;
}
@media screen and (max-width: 1080px) {
  .sns_area .tw_wrap .tw_ttl_container .qr {
    display: none;
  }
}
.sns_area .tw_wrap .tw_ttl_container .qr:hover {
  opacity: 0.4;
  transition: all 0.6s;
}
.sns_area .tw_wrap .tw_ttl_container .qr img {
  width: 100%;
}
.sns_area .tw_wrap .tw_feedwrap {
  padding: 60px 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sns_area .tw_wrap .tw_feedwrap {
    display: block;
  }
}
.sns_area .tw_wrap .tw_feedwrap .tw_feed {
  width: 46%;
  height: 550px;
  background-color: #f2f2f2;
  overflow-y: scroll;
}
@media screen and (max-width: 767px) {
  .sns_area .tw_wrap .tw_feedwrap .tw_feed {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
  }
}

.sns_area .tiktok_wrap {
  width: 100%;
}
.sns_area .tiktok_wrap .tiktok_ttl_container {
  border-top: 2px solid #000000;
  border-bottom: 2px solid #000000;
  padding: 10px 0;
  position: relative;
}
.sns_area .tiktok_wrap .tiktok_ttl_container h3 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  width: 100%;
}
.sns_area .tiktok_wrap .tiktok_ttl_container h3::before {
  content: "";
  display: block;
  border-top: 1px solid #000000;
  width: 530px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .sns_area .tiktok_wrap .tiktok_ttl_container h3::before {
    width: 80%;
  }
}
.sns_area .tiktok_wrap .tiktok_ttl_container h3::after {
  content: "";
  display: block;
  border-top: 1px solid #000000;
  width: 530px;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .sns_area .tiktok_wrap .tiktok_ttl_container h3::after {
    width: 80%;
  }
}
.sns_area .tiktok_wrap .tiktok_ttl_container h3 img {
  height: 46px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sns_area .tiktok_wrap .tiktok_ttl_container h3 img {
    height: 36px;
  }
}
@media screen and (max-width: 420px) {
  .sns_area .tiktok_wrap .tiktok_ttl_container h3 img {
    height: 28px;
  }
}
.sns_area .tiktok_wrap .tiktok_ttl_container .qr {
  position: absolute;
  top: 14px;
  right: 0;
  display: block;
  width: 80px;
  height: 80px;
  transition: all 0.6s;
}
@media screen and (max-width: 1080px) {
  .sns_area .tiktok_wrap .tiktok_ttl_container .qr {
    display: none;
  }
}
.sns_area .tiktok_wrap .tiktok_ttl_container .qr:hover {
  opacity: 0.4;
  transition: all 0.6s;
}
.sns_area .tiktok_wrap .tiktok_ttl_container .qr img {
  width: 100%;
}
.sns_area .tiktok_wrap .tiktok_feedwrap {
  padding: 60px 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sns_area .tiktok_wrap .tiktok_feedwrap {
    display: block;
    padding: 30px 0;
  }
}
.sns_area .tiktok_wrap .tiktok_feedwrap .tiktok_feed {
  width: 100%;
  height: 550px;
}
.sns_area .tiktok_wrap .tiktok_feedwrap .tiktok_feed iframe {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .sns_area .tiktok_wrap .tiktok_feedwrap .tiktok_feed {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
}

.sns_area .insta_wrap {
  width: 100%;
}
.sns_area .insta_wrap .insta_ttl_container {
  border-top: 2px solid;
  border-bottom: 2px solid;
  -o-border-image: linear-gradient(to right, rgb(70, 74, 153) 0%, rgb(157, 55, 139) 36%, rgb(223, 40, 61) 68%, rgb(241, 183, 85) 100%);
     border-image: linear-gradient(to right, rgb(70, 74, 153) 0%, rgb(157, 55, 139) 36%, rgb(223, 40, 61) 68%, rgb(241, 183, 85) 100%);
  border-image-slice: 1;
  padding: 10px 0;
  position: relative;
}
.sns_area .insta_wrap .insta_ttl_container h3 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  width: 100%;
}
.sns_area .insta_wrap .insta_ttl_container h3::before {
  content: "";
  display: block;
  border-top: 1px solid;
  -o-border-image: linear-gradient(to left, rgb(70, 74, 153) 0%, rgb(157, 55, 139) 36%, rgb(223, 40, 61) 68%, rgb(241, 183, 85) 100%);
     border-image: linear-gradient(to left, rgb(70, 74, 153) 0%, rgb(157, 55, 139) 36%, rgb(223, 40, 61) 68%, rgb(241, 183, 85) 100%);
  border-image-slice: 1;
  width: 530px;
  margin: 0 auto 20px;
}
@media screen and (max-width: 767px) {
  .sns_area .insta_wrap .insta_ttl_container h3::before {
    width: 80%;
  }
}
.sns_area .insta_wrap .insta_ttl_container h3::after {
  content: "";
  display: block;
  border-top: 1px solid;
  -o-border-image: linear-gradient(to left, rgb(70, 74, 153) 0%, rgb(157, 55, 139) 36%, rgb(223, 40, 61) 68%, rgb(241, 183, 85) 100%);
     border-image: linear-gradient(to left, rgb(70, 74, 153) 0%, rgb(157, 55, 139) 36%, rgb(223, 40, 61) 68%, rgb(241, 183, 85) 100%);
  border-image-slice: 1;
  width: 530px;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .sns_area .insta_wrap .insta_ttl_container h3::after {
    width: 80%;
  }
}
.sns_area .insta_wrap .insta_ttl_container h3 img {
  width: auto;
  height: 46px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sns_area .insta_wrap .insta_ttl_container h3 img {
    height: 70px;
  }
}
@media screen and (max-width: 420px) {
  .sns_area .insta_wrap .insta_ttl_container h3 img {
    height: 56px;
  }
}
.sns_area .insta_wrap .insta_ttl_container .qr {
  position: absolute;
  top: 14px;
  right: 0;
  display: block;
  width: 80px;
  height: 80px;
  transition: all 0.6s;
}
@media screen and (max-width: 1080px) {
  .sns_area .insta_wrap .insta_ttl_container .qr {
    display: none;
  }
}
.sns_area .insta_wrap .insta_ttl_container .qr:hover {
  opacity: 0.4;
  transition: all 0.6s;
}
.sns_area .insta_wrap .insta_ttl_container .qr img {
  width: 100%;
}
.sns_area .insta_wrap .insta_feedwrap {
  padding: 60px 0;
}
@media screen and (max-width: 767px){
  .sns_area .insta_wrap .insta_feedwrap {
    padding: 30px 0;
  }
}
.sns_area .insta_wrap .insta_feedwrap_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.sns_area .insta_wrap .insta_feedwrap_list__item {
  width: 24%;
}
.sns_area .insta_wrap .insta_feedwrap_list__item:nth-child(-n+8) {
  margin-bottom: calc(4% / 3);
}
@media screen and (max-width: 767px){
  .sns_area .insta_wrap .insta_feedwrap_list__item:nth-child(-n+3) {
    margin-bottom: 1%;
  }
  .sns_area .insta_wrap .insta_feedwrap_list__item {
    width: 32%;
  }
  .sns_area .insta_wrap .insta_feedwrap_list__item:nth-child(n+7) {
    display: none;
}
}
.sns_area .insta_wrap .insta_feedwrap_list__item a {
  transition: all .6s;
}
.sns_area .insta_wrap .insta_feedwrap_list__item a:hover {
  opacity: .4;
  transition: all .6s;
}

.sns_area .insta_wrap .insta_feedwrap_list__item a img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}
@media screen and (max-width: 767px){
  .sns_area .insta_wrap .insta_feedwrap_list__item a img {
    width: calc(88vw / 3);
    height: calc(88vw / 3);
  }
}
.sns_area .insta_wrap .insta_feedwrap .tw_feed {
  width: 100%;
  height: 500px;
  background-color: #f2f2f2;
}
.sns_area .bnr_wrap {
  width: 100%;
}
.sns_area .bnr_wrap .big_bnr {
  width: 100%;
  transition: all 0.6s;
}
.sns_area .bnr_wrap .big_bnr:hover {
  transition: all 0.6s;
  opacity: 0.6;
}
.sns_area .bnr_wrap .flex_wrap {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .sns_area .bnr_wrap .flex_wrap {
    display: block;
  }
}
.sns_area .bnr_wrap .flex_wrap a {
  display: block;
  width: 48%;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .sns_area .bnr_wrap .flex_wrap a {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}
.sns_area .bnr_wrap .flex_wrap a:hover {
  transition: all 0.6s;
  opacity: 0.6;
}
.sns_area .bnr_wrap .flex_wrap a img {
  width: 100%;
}

.schedule_area {
  width: 100%;
}
.schedule_area .schedule_wrap {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .schedule_area .schedule_wrap {
    width: 90%;
  }
}
.schedule_area .schedule_wrap h2 {
  display: block;
  height: 114px;
  width: auto;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .schedule_area .schedule_wrap h2 {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}
.schedule_area .schedule_wrap h2 img {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 114px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .schedule_area .schedule_wrap h2 img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
.schedule_area .schedule_wrap .calendar {
  padding-bottom: 60px;
}
.schedule_area .schedule_wrap .calendar iframe {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 1080px) {
  .schedule_area .schedule_wrap .calendar iframe {
    height: 400px;
  }
}
@media screen and (max-width: 420px) {
  .schedule_area .schedule_wrap .calendar iframe {
    height: 360px;
  }
}
.schedule_area .schedule_wrap .calendar img {
  display: block;
  width: 100%;
  margin: 0 auto;
}

.read_area {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  overflow: hidden;
}
.read_area figure {
  width: 100%;
}
.read_area figure img {
  width: 100%;
}
.read_area .read_wrap {
  width: 40%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 767px) {
  .read_area .read_wrap {
    display: none;
  }
}
.read_area .read_wrap img {
  width: 100%;
}
.read_area .img_wrap {
  width: 20%;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .read_area .img_wrap {
    width: 70%;
    position: unset;
    top: unset;
    left: unset;
    transform: unset;
    -webkit-transform: unset;
    margin: -100px auto 0;
  }
}
.read_area .img_wrap img {
  width: 100%;
}

.spec_area {
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .spec_area {
    background: url(../img/spec_sp_bg.png);
  }
}
.spec_area h2 {
  height: 114px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .spec_area h2 {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}
.spec_area h2 img {
  height: 114px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .spec_area h2 img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
.spec_area .spec_wrap {
  width: 1000px;
  height: 770px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .spec_area .spec_wrap {
    width: 90%;
    aspect-ratio: 10/7;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .spec_area .spec_wrap {
    width: 96%;
    aspect-ratio: unset;
  }
}
.spec_area .spec_wrap .bg {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .spec_area .spec_wrap .bg {
    display: none;
  }
}
.spec_area .spec_wrap .bg img {
  width: 100%;
  position: relative;
}
.spec_area .spec_wrap .txt {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .spec_area .spec_wrap .txt {
    display: none;
  }
}
.spec_area .spec_wrap .txt img {
  width: 100%;
  position: relative;
}
.spec_area .spec_wrap .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .spec_area .spec_wrap .sp_only {
    display: block;
    width: 100%;
  }
}
.spec_area .spec_wrap .sp_only img {
  width: 100%;
}

.medical_area {
  width: 100%;
  padding: 60px 0 0;
  overflow: hidden;
}
.medical_area .medical_bg {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .medical_area .medical_bg .bg {
    display: none;
  }
}
.medical_area .medical_bg .bg img {
  width: 100%;
}
.medical_area .medical_bg .man {
  position: absolute;
  top: 59%;
  left: 50%;
  transform: translateY(-59%) translateX(-50%);
  -webkit-transform: translateY(-59%) translateX(-50%);
  width: 18%;
}
@media screen and (max-width: 767px) {
  .medical_area .medical_bg .man {
    display: none;
  }
}
.medical_area .medical_bg .man img {
  width: 100%;
}
.medical_area .medical_bg .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .medical_area .medical_bg .sp_only {
    display: block;
    width: 100%;
  }
}
.medical_area .medical_bg .sp_only img {
  width: 100%;
}

.ribbon_a {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ribbon_a figure {
  width: 100%;
  height: auto;
}
.ribbon_a img {
  width: 100%;
}
.ribbon_a h4 {
  display: block;
  position: absolute;
  top: 52%;
  left: 20%;
  transform: translateY(-52%) translateX(-20%);
  -webkit-transform: translateY(-52%) translateX(-20%);
  font-size: 3rem;
  line-height: 6.1rem;
  color: #fff;
  font-family: "hiraginow6";
}
@media screen and (max-width: 767px) {
  .ribbon_a h4 {
    display: none;
  }
}

.yakuiku_area {
  width: 100%;
  padding: 60px 0 0;
  overflow: hidden;
  position: relative;
}
.yakuiku_area .yakuiku_bg {
  width: 400px;
  position: absolute;
  top: 30px;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 1080px) {
  .yakuiku_area .yakuiku_bg {
    display: none;
  }
}
.yakuiku_area .yakuiku_bg img {
  width: 100%;
}
.yakuiku_area .yakuiku_wrap {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .yakuiku_area .yakuiku_wrap {
    width: 90%;
  }
}
.yakuiku_area .yakuiku_wrap h2 {
  height: 114px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .yakuiku_area .yakuiku_wrap h2 {
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
    text-align: center;
  }
}
.yakuiku_area .yakuiku_wrap h2 img {
  height: 114px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .yakuiku_area .yakuiku_wrap h2 img {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
}
.yakuiku_area .yakuiku_wrap h5 {
  font-size: 3.4rem;
  margin-bottom: 40px;
  font-family: "hiraginow6";
}
@media screen and (max-width: 767px) {
  .yakuiku_area .yakuiku_wrap h5 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.yakuiku_area .yakuiku_wrap p {
  font-size: 1.8rem;
  line-height: 3.2rem;
  margin-bottom: 60px;
  font-family: "hiraginow3";
}
@media screen and (max-width: 767px) {
  .yakuiku_area .yakuiku_wrap p {
    text-align: left;
  }
}
.yakuiku_area .yakuiku_wrap .arrow {
  width: 60px;
  margin: 60px auto;
}
.yakuiku_area .yakuiku_wrap .arrow img {
  width: 100%;
}
.yakuiku_area .yakuiku_wrap .yakuiku_inner {
  width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .yakuiku_area .yakuiku_wrap .yakuiku_inner {
    width: 100%;
  }
}
.yakuiku_area .yakuiku_wrap .yakuiku_inner h2 {
  height: 48px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .yakuiku_area .yakuiku_wrap .yakuiku_inner h2 {
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
  }
}
.yakuiku_area .yakuiku_wrap .yakuiku_inner h2 img {
  height: 48px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .yakuiku_area .yakuiku_wrap .yakuiku_inner h2 img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}

.works_area {
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
}
.works_area h2 {
  height: 114px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .works_area h2 {
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
  }
}
.works_area h2 img {
  height: 114px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .works_area h2 img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
.works_area .works_wrap {
  width: 1000px;
  height: 800px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .works_area .works_wrap {
    width: 90%;
    aspect-ratio: 10/8;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .works_area .works_wrap {
    width: 96%;
    aspect-ratio: unset;
  }
}
.works_area .works_wrap .works_img_inner {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .works_area .works_wrap .works_img_inner {
    display: none;
  }
}
.works_area .works_wrap .works_img_inner figure {
  position: absolute;
  top: 0;
  left: 0;
}
.works_area .works_wrap .works_img_inner figure img {
  width: 100%;
}
.works_area .works_wrap .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .works_area .works_wrap .sp_only {
    display: block;
  }
}
.works_area .works_wrap .sp_only img {
  width: 100%;
}

.ribbon_b {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ribbon_b figure {
  width: 100%;
  height: auto;
}
.ribbon_b img {
  width: 100%;
}
.ribbon_b .read02 {
  display: block;
  position: absolute;
  top: 8%;
  left: 12%;
  width: 24%;
}
@media screen and (max-width: 767px) {
  .ribbon_b .read02 {
    display: none;
  }
}
.ribbon_b .read02 img {
  width: 100%;
}
.ribbon_b .read01 {
  display: block;
  position: absolute;
  top: 5%;
  right: 12%;
  width: 60px;
}
@media screen and (max-width: 767px) {
  .ribbon_b .read01 {
    display: none;
  }
}

.lyric_area {
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
  background-color: #14a1c9;
}
.lyric_area h2 {
  height: 114px;
  width: auto;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .lyric_area h2 {
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
  }
}
.lyric_area h2 img {
  height: 114px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .lyric_area h2 img {
    width: 70%;
    height: auto;
    margin: 0 auto;
  }
}
.lyric_area .lyric_inner {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .lyric_area .lyric_inner {
    width: 96%;
  }
}
.lyric_area .lyric_inner h4 {
  font-size: 3rem;
  text-align: center;
  font-family: "hiraginow6";
  margin-bottom: 10px;
}
.lyric_area .lyric_inner span {
  display: block;
  font-size: 1.8rem;
  font-family: "hiraginow6";
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .lyric_area .lyric_inner span {
    font-size: 1.6rem;
  }
}
.lyric_area .lyric_inner p {
  text-align: center;
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "hiraginow6";
  text-align: center;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .lyric_area .lyric_inner p {
    font-size: 1.4rem;
  }
}
.lyric_area .lyric_inner .buy_btn {
  display: block;
  width: 100%;
  background-color: #fff;
  color: #14a1c9;
  border: 2px solid #fff;
  padding: 16px 40px;
  box-sizing: border-box;
  font-size: 2.6rem;
  font-family: "hiraginow6";
  border-radius: 4px;
  margin-top: 60px;
  position: relative;
  transition: all 0.6s;
}
.lyric_area .lyric_inner .buy_btn img {
  width: auto;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .lyric_area .lyric_inner .buy_btn {
    font-size: 2rem;
  }
}
.lyric_area .lyric_inner .buy_btn::after {
  content: "";
  background: url(../img/arrow_blue.png);
  background-size: cover;
  width: 12px;
  height: 19px;
  position: absolute;
  top: 26px;
  right: 40px;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .lyric_area .lyric_inner .buy_btn::after {
    top: 20px;
    width: 10px;
    height: 16px;
  }
}
.lyric_area .lyric_inner .buy_btn:hover {
  transition: all 0.6s;
  background-color: #14a1c9;
  border: 2px solid #fff;
  color: #fff;
}
.lyric_area .lyric_inner .buy_btn:hover::after {
  content: "";
  background: url(../img/arrow_w.png);
  background-size: cover;
  width: 12px;
  height: 19px;
  position: absolute;
  top: 26px;
  right: 10px;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .lyric_area .lyric_inner .buy_btn:hover::after {
    top: 23px;
    width: 10px;
    height: 16px;
  }
}

.dl_area {
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
}
.dl_area h2 {
  height: 114px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .dl_area h2 {
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
  }
}
.dl_area h2 img {
  height: 114px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .dl_area h2 img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
.dl_area .txt_wrap {
  width: 700px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .dl_area .txt_wrap {
    width: 90%;
    text-align: left;
  }
}
.dl_area .txt_wrap p {
  font-size: 1.8rem;
  line-height: 3rem;
  margin-bottom: 60px;
}
.dl_area .txt_wrap a {
  display: block;
  width: 90%;
  margin: 20px auto 0;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .dl_area .txt_wrap a {
    width: 100%;
  }
}
.dl_area .txt_wrap a img {
  width: 100%;
}
.dl_area .txt_wrap a:hover {
  transition: all 0.6s;
  opacity: 0.6;
}

.ribbon_c {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.ribbon_c figure {
  width: 100%;
  height: auto;
}
.ribbon_c img {
  width: 100%;
}
.ribbon_c h4 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .ribbon_c h4 {
    width: 90%;
    margin: 30px auto 0;
    display: block;
    position: unset;
  }
}
.ribbon_c h4 img {
  width: 100%;
}

.message_area {
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
}
.message_area h3 {
  height: 114px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .message_area h3 {
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
  }
}
.message_area h3 img {
  height: 114px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .message_area h3 img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
.message_area .flex_wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: row-reverse;
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .message_area .flex_wrap {
    width: 90%;
    height: auto;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 767px) {
  .message_area .flex_wrap {
    display: block;
  }
}
.message_area .flex_wrap .txt_wrap {
  width: 53%;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .message_area .flex_wrap .txt_wrap {
    width: 100%;
  }
}
.message_area .flex_wrap .txt_wrap p {
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "hiraginow3";
}
.message_area .flex_wrap figure {
  width: 47%;
}
@media screen and (max-width: 767px) {
  .message_area .flex_wrap figure {
    width: 100%;
    margin-bottom: 30px;
  }
}
.message_area .flex_wrap figure img {
  width: 120%;
}

/*--------------------------------------------------------

                            下層

--------------------------------------------------------*/
.u_mv {
  width: 100%;
  padding-top: 80px;
}
.u_mv .mv_wrap {
  width: 100%;
}

/*--------------------------------------------------------

                オーガマンやくいくプロジェクト

--------------------------------------------------------*/
.concept_area {
  width: 100%;
}
.concept_area .concept_wrap {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: 60px auto;
}
@media screen and (max-width: 1080px) {
  .concept_area .concept_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .concept_area .concept_wrap {
    display: block;
  }
}
.concept_area .concept_wrap .txt_wrap {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .concept_area .concept_wrap .txt_wrap {
    width: 100%;
  }
}
.concept_area .concept_wrap .txt_wrap h3 {
  height: 28px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .concept_area .concept_wrap .txt_wrap h3 {
    height: 20px;
    margin: 0 auto 40px;
  }
}
.concept_area .concept_wrap .txt_wrap h3 img {
  height: 28px;
  width: auto;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .concept_area .concept_wrap .txt_wrap h3 img {
    width: auto;
    height: 20px;
  }
}
.concept_area .concept_wrap .txt_wrap .txt_inner {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.concept_area .concept_wrap .txt_wrap .txt_inner span {
  width: 50px;
  margin-right: 16px;
}
.concept_area .concept_wrap .txt_wrap .txt_inner span img {
  width: 100%;
}
.concept_area .concept_wrap .txt_wrap .txt_inner p {
  font-size: 1.8rem;
  font-family: "hiraginow6";
}
.concept_area .concept_wrap .youtube_wrap {
  width: 49%;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .concept_area .concept_wrap .youtube_wrap {
    width: 100%;
  }
}
.concept_area .concept_wrap .youtube_wrap h3 {
  height: 28px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .concept_area .concept_wrap .youtube_wrap h3 {
    height: 20px;
    margin: 0 auto 40px;
  }
}
.concept_area .concept_wrap .youtube_wrap h3 img {
  height: 28px;
  width: auto;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 767px) {
  .concept_area .concept_wrap .youtube_wrap h3 img {
    width: auto;
    height: 20px;
  }
}
.concept_area .concept_wrap .youtube_wrap .youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.concept_area .concept_wrap .youtube_wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.activity_area {
  padding: 100px 0;
  overflow: hidden;
  background-color: #14a1c9;
}
.activity_area h3 {
  display: block;
  height: 114px;
  width: auto;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .activity_area h3 {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
.activity_area h3 img {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 114px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .activity_area h3 img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
.activity_area .flex_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .activity_area .flex_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .activity_area .flex_wrap {
    display: block;
  }
}
.activity_area .flex_wrap .flex_inner {
  width: 48%;
  background-color: #fff;
  padding: 14px;
  box-sizing: border-box;
  display: block;
  margin: 1%;
}
@media screen and (max-width: 767px) {
  .activity_area .flex_wrap .flex_inner {
    width: 100%;
    margin: 20px auto;
  }
}
.activity_area .flex_wrap .flex_inner .two_line {
  margin: 10px auto;
  font-size: 2.4rem;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  color: #14a1c9;
}
.activity_area .flex_wrap .flex_inner .one_line {
  font-size: 2.4rem;
  line-height: 4.2rem;
  margin: 30px auto;
  text-align: center;
  color: #14a1c9;
}
.activity_area .flex_wrap .flex_inner figure {
  width: 100%;
  margin: 20px auto 20px;
}
.activity_area .flex_wrap .flex_inner figure img {
  width: 100%;
}
.activity_area .flex_wrap .flex_inner p {
  font-size: 1.6rem;
  line-height: 2.8rem;
}
.activity_area .flex_wrap .flex_inner .green_btn {
  display: block;
  width: 100%;
  border-radius: 4px;
  background-color: #10c09d;
  border: 2px solid #10c09d;
  font-size: 2rem;
  text-align: center;
  color: #fff;
  padding: 10px 0;
  margin: 16px 0;
  box-sizing: border-box;
  transition: all 0.6s;
  font-family: "hiraginow6";
}
.activity_area .flex_wrap .flex_inner .green_btn:hover {
  background-color: #fff;
  color: #10c09d;
  transition: all 0.6s;
}
.activity_area .flex_wrap .flex_inner .green_btn span {
  font-size: 1.6rem;
  display: block;
}
.activity_area .flex_wrap .flex_inner .blue_btn {
  display: block;
  width: 100%;
  border-radius: 4px;
  background-color: #0068b7;
  border: 2px solid #0068b7;
  font-size: 2rem;
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  margin: 16px 0;
  box-sizing: border-box;
  transition: all 0.6s;
  font-family: "hiraginow6";
}
.activity_area .flex_wrap .flex_inner .blue_btn:hover {
  background-color: #fff;
  color: #0068b7;
  transition: all 0.6s;
}
.activity_area .flex_wrap .flex_inner .blue_btn span {
  font-size: 1.6rem;
  display: block;
}
.activity_area .flex_wrap .flex_inner .address_wrap h5 {
  font-size: 2rem;
  font-family: "hiraginow6";
  margin-bottom: 10px;
  color: #149fc7;
}
.activity_area .flex_wrap .flex_inner .address_wrap p {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.activity_area .flex_wrap .flex_inner .address_wrap p a {
  color: #000;
}

.recommend_area {
  padding: 100px 0;
  overflow: hidden;
}
.recommend_area .recommend_wrap {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .recommend_area .recommend_wrap {
    width: 90%;
  }
}
.recommend_area .recommend_wrap h3 {
  display: block;
  width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .recommend_area .recommend_wrap h3 {
    width: 100%;
  }
}
.recommend_area .recommend_wrap h3 .pc_only {
  width: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .recommend_area .recommend_wrap h3 .pc_only {
    display: none;
  }
}
.recommend_area .recommend_wrap h3 .sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .recommend_area .recommend_wrap h3 .sp_only {
    width: 100%;
    display: block;
  }
}
.recommend_area .recommend_wrap .flex_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .recommend_area .recommend_wrap .flex_wrap {
    display: block;
  }
}
.recommend_area .recommend_wrap .flex_wrap .flex_inner {
  width: 46%;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .recommend_area .recommend_wrap .flex_wrap .flex_inner {
    width: 100%;
    margin-bottom: 30px;
  }
}
.recommend_area .recommend_wrap .flex_wrap .flex_inner a {
  color: #000;
}
.recommend_area .recommend_wrap .flex_wrap .flex_inner a img {
  width: 100%;
}
.recommend_area .recommend_wrap .flex_wrap .flex_inner a h4 {
  font-size: 1.8rem;
  margin: 10px 0;
  font-family: "hiraginow6";
}
.recommend_area .recommend_wrap .flex_wrap .flex_inner a h4 span {
  font-size: 1.2rem;
  display: block;
}
.recommend_area .recommend_wrap .flex_wrap .flex_inner a p {
  font-size: 1.6rem;
}

/*--------------------------------------------------------

                        お問い合わせ

--------------------------------------------------------*/
.contact_area {
  width: 100%;
  padding-top: 80px;
}
.contact_area .contact_wrap {
  width: 800px;
  margin: 0 auto;
  padding: 100px 0;
}
@media screen and (max-width: 1080px) {
  .contact_area .contact_wrap {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .contact_area .contact_wrap {
    display: block;
  }
}
.contact_area .contact_wrap h3 {
  height: 114px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 767px) {
  .contact_area .contact_wrap h3 {
    width: 100%;
    height: auto;
    margin: 0 auto 40px;
  }
}
.contact_area .contact_wrap h3 img {
  height: 114px;
  width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .contact_area .contact_wrap h3 img {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }
}
.contact_area .contact_wrap .form_wrap {
  width: 100%;
}
.contact_area .contact_wrap .form_wrap .right {
  margin-left: auto;
  text-align: right;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.contact_area .contact_wrap .form_wrap .right span {
  color: #ff0000;
  margin-right: 10px;
}
.contact_area .contact_wrap .form_wrap dl {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.contact_area .contact_wrap .form_wrap dl dt {
  width: 100%;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.contact_area .contact_wrap .form_wrap dl dt span {
  color: #ff0000;
  margin-left: 10px;
}
.contact_area .contact_wrap .form_wrap dl dd {
  width: 100%;
  font-size: 1.6rem;
}
.contact_area .contact_wrap .form_wrap dl dd input {
  border: 1px solid #989898;
  width: 100%;
  padding: 18px;
  box-sizing: border-box;
}
.contact_area .contact_wrap .form_wrap dl dd textarea {
  border: 1px solid #989898;
  width: 100%;
  padding: 18px;
  box-sizing: border-box;
  height: 400px;
}
.contact_area .contact_wrap .form_wrap dl .two_column {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.contact_area .contact_wrap .form_wrap dl .two_column span {
  width: 49%;
  box-sizing: border-box;
}
.contact_area .contact_wrap .form_wrap dl .two_column span input {
  border: 1px solid #989898;
  width: 100%;
  padding: 18px;
  box-sizing: border-box;
}
.contact_area .contact_wrap .form_wrap .pp_txt {
  font-size: 1.4rem;
  line-height: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 1080px) {
  .contact_area .contact_wrap .form_wrap .pp_txt {
    text-align: left;
  }
}
.contact_area .contact_wrap .form_wrap .check {
  display: flex;
  margin: 0 auto 60px;
  justify-content: center;
  align-items: center;
}
.contact_area .contact_wrap .form_wrap .check p {
  font-size: 1.4rem;
}
.contact_area .contact_wrap .form_wrap .confirm {
  display: block;
  width: 320px;
  background-color: #fff;
  color: #14a1c9;
  border: 2px solid #14a1c9;
  font-size: 2rem;
  text-align: center;
  padding: 18px;
  box-sizing: border-box;
  border-radius: 4px;
  margin: 0 auto;
  font-family: "hiraginow6";
  position: relative;
}
.contact_area .contact_wrap .form_wrap .confirm::after {
  content: "";
  background: url(../img/arrow_blue.png);
  background-size: cover;
  width: 11px;
  height: 18px;
  position: absolute;
  top: 25px;
  right: 40px;
  transition: all 0.6s;
}
.contact_area .contact_wrap .form_wrap .active {
  display: block;
  width: 320px;
  background-color: #14a1c9;
  color: #fff;
  border: 2px solid #14a1c9;
  font-size: 2rem;
  text-align: center;
  padding: 18px;
  box-sizing: border-box;
  border-radius: 4px;
  margin: 0 auto;
  font-family: "hiraginow6";
  position: relative;
}
.contact_area .contact_wrap .form_wrap .active::after {
  content: "";
  background: url(../img/arrow_w.png);
  background-size: cover;
  width: 11px;
  height: 18px;
  position: absolute;
  top: 25px;
  right: 40px;
  transition: all 0.6s;
}
.contact_area .contact_wrap .form_wrap .active:hover {
  transition: all 0.6s;
  color: #fff;
}
.contact_area .contact_wrap .form_wrap .active:hover::after {
  content: "";
  background: url(../img/arrow_w.png);
  background-size: cover;
  width: 11px;
  height: 18px;
  position: absolute;
  top: 25px;
  right: 10px;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .contact_area .contact_wrap .form_wrap .active:hover::after {
    top: 23px;
    width: 10px;
    height: 16px;
  }
}/*# sourceMappingURL=style.css.map */