@charset "UTF-8";
.about, .intro, .point, .gallery, .public, .assist, .cta, footer {
  padding: 100px 20%;
}

@media (max-width: 1280px) {
  .about, .intro, .point, .gallery, .public, .assist, .cta, footer {
    padding: 80px 10%;
  }
}

@media (max-width: 768px) {
  .about, .intro, .point, .gallery, .public, .assist, .cta, footer {
    padding: 80px 5%;
  }
}

html,
body {
  font-family: 'Noto Sans JP', sans-serif;
}

.material-icons.orange {
  color: orange;
  font-size: 36px;
}

.fd-in {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
}

.fd-done {
  opacity: 1.0;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

section {
  overflow: hidden;
  -webkit-transition: .8s;
  transition: .8s;
}

.section__title {
  font-size: 28px;
  text-align: center;
}

.section__title--discription {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
}

/** ナビゲーション **/
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 10px;
  background-image: linear-gradient(-45deg, #ffd7a2 0%, #fd9a3e 100%);
  color: #fff;
}

/** フッターナビゲーション **/
.fnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 10px;
  background: #444;
  color: #fff;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

nav ul li {
  margin-right: 1rem;
}

nav ul li a {
  display: block;
  padding: 10px;
  color: #fff;
  text-decoration: none;
}

.type .type-menu li {
  position: relative;
  overflow: hidden;
}

.type .type-menu li::before, .type .type-menu li::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.type .type-menu li::before {
  top: 0;
  left: -100%;
}

.type .type-menu li::after {
  bottom: 0;
  right: -100%;
}

.type .type-menu a::before, .type .type-menu a::after {
  position: absolute;
  display: block;
  content: "";
  width: 2px;
  height: 100%;
  background: #fff;
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.type .type-menu a::before {
  top: 100%;
  left: 0;
}

.type .type-menu a::after {
  top: -100%;
  right: 0;
}

.type .type-menu li:hover::before {
  left: 0;
}

.type .type-menu li:hover::after {
  right: 0;
}

.type .type-menu li:hover a::before {
  top: 0;
}

.type .type-menu li:hover a::after {
  top: 0;
}

/** タイトル **/
.hero {
  padding: 180px 10% 200px;
  background-image: -webkit-gradient(linear, right top, left top, from(#ffd7a2), to(#fd9a3e));
  background-image: linear-gradient(to left, #ffd7a2 0%, #fd9a3e 100%);
  color: #fff;
}

.hero h1 {
  font-size: 38px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero p {
    line-height: 1.5;
  }
}

.hero a {
  display: inline-block;
  background: #f37420;
  padding: 15px 40px 15px 20px;
  margin: 80px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  border: 2px solid #fff;
  position: relative;
}

@media (max-width: 768px) {
  .hero a {
    display: block;
  }
}

.hero a::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hero a:hover {
  background: #fff;
  color: #f37420;
}

.hero a:hover::after {
  border-color: #f37420;
}

/** おれんじはうすへようこそ **/
.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about__image {
  width: 50%;
}

@media (max-width: 768px) {
  .about__image {
    width: 100%;
  }
}

.about__image img {
  width: 100%;
  height: auto;
}

.about__text {
  width: 50%;
}

@media (max-width: 768px) {
  .about__text {
    width: 100%;
  }
}

.about__text p {
  line-height: 2;
  margin-left: 50px;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .about__text p {
    margin: 20px 0 0;
  }
}

/** 施設情報 **/
.intro {
  background: #f7f7f7;
}

.intro__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
}

.intro__dcontainer {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 100px 20%;
}

.intro__head {
  width: 25%;
}

@media (max-width: 768px) {
  .intro__head {
    width: 100%;
  }
}

.intro__head p {
  line-height: 2;
  margin-left: 10px;
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .intro__head p {
    margin: 10px 0 0;
  }
}

.intro__head .a {
  display: inline-block;
  background: #f37420;
  padding: 15px 40px 15px 20px;
  margin: 15px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  border: 2px solid #fff;
  position: relative;
}

@media (max-width: 768px) {
  .intro__head .a {
    display: block;
  }
}

.intro__head .a::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.intro__head .a:hover {
  background: #fff;
  color: #f37420;
}

.intro__head .a:hover::after {
  border-color: #f37420;
}

.intro__dhead {
  width: 25%;
}

@media (max-width: 768px) {
  .intro__dhead {
    width: 100%;
  }
}

.intro__dhead p {
  line-height: 2;
  margin-left: 10px;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .intro__dhead p {
    margin: 10px 0 0;
  }
}

.intro__text {
  width: 75%;
}

@media (max-width: 768px) {
  .intro__text {
    width: 100%;
  }
}

.intro__text p {
  line-height: 2;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .intro__text p {
    margin: 10px 0 0;
  }
}

.intro__text p .a {
  display: inline-block;
  background: #fff;
  padding: 10px 40px 10px 20px;
  margin: 15px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #f37420;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  border: 2px solid;
  position: relative;
}

@media (max-width: 768px) {
  .intro__text p .a {
    display: block;
  }
}

.intro__text p .a::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  border-top: 2px solid #f37420;
  border-right: 2px solid #f37420;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.intro__text p .a:hover {
  background: #ffc997;
  color: #f37420;
}

.intro__text p .a:hover::after {
  border-color: #fff;
}

/** 社会貢献事業 **/
.point__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
}

.point__item {
  text-align: center;
  width: calc((100% / 3) - 14px);
}

.point__item:not(:first-child) {
  margin-left: 21px;
}

@media (max-width: 768px) {
  .point__item {
    width: 100%;
  }
  .point__item:not(:first-child) {
    margin: 30px 0 0;
  }
}

.point__item i {
  font-size: 22px;
  font-weight: 900;
  width: 100px;
  border-bottom: 4px solid #000;
  display: inline-block;
  text-align: center;
  padding: 0 0 8px;
  margin: 0 0 20px;
}

.point__item p {
  text-align: left;
  font-size: 18px;
}

.point a {
  display: inline-block;
  background: #f37420;
  padding: 15px 40px 15px 20px;
  margin: 80px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  border: 2px solid #fff;
  position: relative;
}

@media (max-width: 768px) {
  .point a {
    display: block;
  }
}

.point a::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.point a:hover {
  background: #fff;
  color: #f37420;
}

.point a:hover::after {
  border-color: #f37420;
}

/** ギャラリー **/
.gallery {
  background-image: linear-gradient(-45deg, #ffd7a2 0%, #fd9a3e 100%);
  color: #fff;
}

.gallery__list {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.gallery__item {
  width: calc((100% / 3) - 10px);
}

.gallery__item:not(:nth-child(-n+3)) {
  margin-top: 10px;
}

.gallery__item:not(:nth-child(-n)) {
  margin-right: 10px;
}

.gallery__item img {
  width: 100%;
}

.gallery__item a {
  display: inline-block;
  background: #f37420;
  padding: 15px 40px 15px 20px;
  margin: 80px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  border: 2px solid #fff;
  position: relative;
}

@media (max-width: 768px) {
  .gallery__item a {
    display: block;
  }
}

.gallery__item a::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.gallery__item a:hover {
  opacity: .7;
}

.gallery__item a:hover img {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

.gallery__btn a {
  display: inline-block;
  background: #f37420;
  padding: 15px 40px 15px 20px;
  margin: 80px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  border: 2px solid #fff;
  position: relative;
}

@media (max-width: 768px) {
  .gallery__btn a {
    display: block;
  }
}

.gallery__btn a::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.gallery__btn a:hover {
  background: #fff;
  color: #f37420;
}

.gallery__btn a:hover::after {
  border-color: #f37420;
}

/** 公開情報 **/
.public {
  background: #f7f7f7;
}

.public__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
}

.public__item {
  background: #fff;
  text-align: center;
  -webkit-box-shadow: 0 px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 px 10px rgba(0, 0, 0, 0.15);
  padding: 50px 30px;
  width: calc((100% / 3) - 15px);
}

.public__item:not(:nth-child(-n)) {
  margin-left: 15px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .public__item {
    width: 100%;
  }
  .public__item:not(:first-child) {
    margin: 30px 0;
  }
}

.public__item h3 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 15px;
}

.public__item .yen {
  font-size: 64px;
  font-weight: 100;
  line-height: 1;
}

.public__item .yen span {
  font-size: 30px;
}

.public__item .cando {
  margin: 40px 0 0;
}

.public__item .cando ol {
  list-style-type: none;
}

.public__item .cando li {
  background: #f7f7f7;
  padding: 10px;
  font-size: 18px;
  border-radius: 6px;
}

.public__item .cando li:not(:first-child) {
  margin: 15px 0 0;
}

/** 助成情報 **/
.assist__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.assist__image {
  width: 50%;
}

@media (max-width: 768px) {
  .assist__image {
    width: 100%;
  }
}

.assist__image img {
  width: 80%;
  height: auto;
}

.assist i {
  font-size: 22px;
  font-weight: 900;
  width: 200px;
  border-bottom: 4px solid #000;
  display: inline-block;
  text-align: center;
  padding: 0 0 8px;
  margin: 20px 0 20px;
}

.assist__text {
  width: 50%;
}

@media (max-width: 768px) {
  .assist__text {
    width: 100%;
  }
}

.assist__text p {
  line-height: 2;
  margin-left: 50px;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .assist__text p {
    margin: 20px 0 0;
  }
}

.assist a {
  display: inline-block;
  background: #f37420;
  padding: 15px 40px 15px 20px;
  margin: 80px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  border: 2px solid #fff;
  position: relative;
}

@media (max-width: 768px) {
  .assist a {
    display: block;
  }
}

.assist a::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.assist a:hover {
  background: #fff;
  color: #f37420;
}

.assist a:hover::after {
  border-color: #f37420;
}

.cta__btn {
  text-align: center;
}

.cta__btn a {
  display: inline-block;
  background: #FF6B95;
  padding: 15px 40px 15px 20px;
  margin: 0px 0 0;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  -webkit-transition: .5s;
  transition: .5s;
  border: 2px solid #fff;
  position: relative;
}

@media (max-width: 768px) {
  .cta__btn a {
    display: block;
  }
}

.cta__btn a::after {
  position: absolute;
  content: "";
  right: 20px;
  width: 8px;
  height: 8px;
  top: calc(50% - 4px);
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.cta__btn a:hover {
  border-color: #FF6B95;
  background: #fff;
  color: #FF6B95;
}

.cta__btn a:hover::after {
  border-color: #FF6B95;
}

footer {
  padding: 15px 0;
  background: #444;
  text-align: center;
  color: #fff;
}

footer small {
  font-size: 14px;
  line-height: 1;
}
/*# sourceMappingURL=style.css.map */