.heading--en {
  margin-bottom: 0.15em;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 0.025em;
}
.heading--ja {
  color: #000;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .heading--en {
    margin-bottom: 0;
    font-size: 45px;
  }
  .heading--ja {
    font-size: 18px;
  }
}

.link a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 160px;
  height: 45px;
  margin-left: auto;
  border-radius: 3px;
  background: linear-gradient(90deg, #f66620, #fa931c);
  color: #fff;
  font-weight: bold;
}
.link a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
  transform: scale(0, 0);
  opacity: 0;
}
.link a:hover::after {
  animation-name: ripple;
  animation-fill-mode: none;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  animation-delay: 0;
  animation-direction: normal;
}
.link a span {
  margin-right: 5px;
}
.link a img {
  width: 13px;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
  }
  50% {
    transform: scale(5, 5);
    opacity: 0.3;
  }
  100% {
    transform: scale(10, 10);
    opacity: 0;
  }
}
.news__item {
  border-bottom: 1px dashed #ddd;
}
.news__item:first-of-type {
  border-top: 1px dashed #ddd;
}
.news__item a {
  display: block;
  padding: 15px 5px;
}
.news__date {
  color: #777;
  font-size: 12px;
}
.news__title {
  margin-bottom: 3px;
  color: #000;
}
.news__excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  color: #555;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .news__date {
    font-size: 13px;
  }
  .news__title {
    font-size: 15px;
  }
  .news__excerpt {
    -webkit-line-clamp: 2;
    font-size: 13px;
  }
}
@media screen and (min-width: 992px) {
  .news__item a {
    padding: 25px 10px;
  }
  .news__date {
    font-size: 14px;
  }
  .news__title {
    font-weight: bold;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  .news__excerpt {
    -webkit-line-clamp: 1;
    color: #333;
    font-size: 14px;
  }
}

.header {
  display: none;
}
.header__button {
  display: none;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20000;
  width: 100%;
  height: 100%;
  background: #fff;
}
.loading__logo {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
}
@media screen and (min-width: 992px) {
  .loading__logo {
    width: 240px;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}
.hero__layer {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f66620, #fa931c);
}
.hero__contents {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 97%;
  width: calc(100% - 20px);
  height: 98%;
  height: calc(100% - 20px);
  background: #fff;
}
.hero__heading {
  width: 100%;
}
.hero__heading--pc {
  display: none;
}
.hero__heading img {
  width: 100%;
}
.hero__image {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100%;
  height: calc(100% - 180px);
  text-align: center;
}
.hero__image img {
  width: auto;
  height: 100%;
}
.hero__border {
  display: none;
}
.hero__catch {
  position: absolute;
  top: 180px;
  right: 5.5%;
  min-width: 48px;
}
.hero__catch p {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 2px;
  writing-mode: vertical-rl;
}
.hero__policy {
  position: absolute;
  top: 170px;
  left: 5px;
  min-width: 84px;
}
.hero__policy p {
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
  text-orientation: upright;
}
.hero__policy p span {
  background: linear-gradient(90deg, #f66620, #fa931c);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #f66620;
  font-size: 84px;
  line-height: 1;
  letter-spacing: 0;
}
.hero__message {
  position: absolute;
  right: 15px;
  bottom: 70px;
  width: 260px;
}
@media screen and (min-width: 768px) {
  .hero__image {
    height: calc(100% - 380px);
  }
  .hero__catch {
    position: absolute;
    top: 40%;
    right: 10%;
  }
  .hero__catch p {
    font-size: 26px;
  }
  .hero__policy {
    top: 39%;
    left: 5%;
  }
  .hero__policy p {
    font-size: 30px;
  }
  .hero__policy p span {
    font-size: 140px;
  }
  .hero__message {
    right: 7%;
    width: 390px;
  }
}
@media screen and (min-width: 992px) {
  .hero {
    min-height: 850px;
  }
  .hero__heading--sp {
    display: none;
  }
  .hero__heading--pc {
    display: block;
    position: relative;
  }
  .hero__heading--pc img:last-of-type {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 740px;
  }
  .hero__message {
    right: auto;
    left: 50%;
  }
  .hero__border {
    display: block;
    opacity: 0.9;
  }
  .hero__catch, .hero__policy {
    top: 45%;
  }
  .hero__catch p, .hero__policy p {
    display: inline-block;
    writing-mode: initial;
    -webkit-font-smoothing: antialiased;
  }
  .hero__catch {
    right: 60%;
    width: 420px;
    text-align: right;
  }
  .hero__catch p {
    padding: 8px 0;
    text-align: left;
  }
  .hero__policy {
    left: 60%;
    width: 360px;
    text-align: center;
  }
  .hero__policy p {
    font-size: 40px;
    letter-spacing: 10px;
  }
  .hero__policy p span {
    font-size: 100px;
    letter-spacing: 10px;
  }
  .hero__policy .hero__border--top {
    margin-bottom: -5px;
  }
  .hero__message {
    width: 450px;
  }
}

.youtube {
  padding: 60px 0;
}
.youtube__heading {
  margin-bottom: 2em;
  padding-left: 20px;
}
.youtube__list {
  margin: 0 0 30px 20px;
  overflow: auto;
  white-space: nowrap;
}
.youtube__item {
  display: inline-block;
  position: relative;
  width: 240px;
  margin: 0 10px 5px 0;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 1px 1px 8px #ddd;
}
.youtube__item::after {
  display: block;
  padding-top: 56.25%;
  content: "";
}
.youtube__item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.youtube__link {
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .youtube__heading {
    padding: 0;
  }
  .youtube__list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 85%;
    max-width: 1080px;
    margin: 0 auto 20px;
    padding: 0;
    white-space: normal;
  }
  .youtube__item {
    width: 48.5%;
    width: calc(50% - 10px);
    margin: 0 0 20px;
  }
  .youtube__link {
    padding-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .youtube {
    padding: 100px 0;
  }
  .youtube__heading {
    margin-bottom: 3em;
  }
  .youtube__list {
    margin-bottom: 40px;
  }
  .youtube__list::after {
    display: block;
    width: 32%;
    width: calc(33.3% - 10px);
    content: "";
  }
  .youtube__item {
    width: 32%;
    width: calc(33.3% - 10px);
  }
}

.profile {
  padding: 60px 0;
  background: #fbf4f1;
  overflow: hidden;
}
.profile__heading {
  margin-bottom: 30px;
}
.profile__image {
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}
.profile__image > img {
  position: relative;
  z-index: 1;
  width: 60%;
}
.profile__bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  width: 100%;
}
.profile__contents {
  color: #000;
}
.profile__contents h3 {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 0.075em;
}
.profile__contents p {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .profile__inner {
    display: flex;
    flex-wrap: wrap;
  }
  .profile__heading {
    width: 100%;
  }
  .profile__image {
    width: 45%;
    margin-right: 5%;
  }
  .profile__contents {
    flex: 1;
  }
}
@media screen and (min-width: 992px) {
  .profile {
    padding: 100px 0;
  }
  .profile__contents h3 {
    margin-bottom: 35px;
    font-size: 34px;
  }
  .profile__contents p {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.news {
  padding: 60px 0;
}
.news__heading {
  margin-bottom: 30px;
}
.news__list {
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .news {
    padding: 100px 0;
  }
}

.instagram {
  padding: 60px 0;
  background: #fbf4f1;
}
.instagram__heading {
  margin-bottom: 2em;
}
.instagram__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.instagram__item {
  position: relative;
  width: 49%;
  width: calc(50% - 3px);
  margin-bottom: 6px;
  overflow: hidden;
  border-radius: 5px;
}
.instagram__item::after {
  display: block;
  padding-top: 100%;
  content: "";
}
.instagram__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .instagram__item {
    width: 33.2%;
    width: calc(33.3% - 10px);
    margin-bottom: 20px;
    border-radius: 10px;
  }
}
@media screen and (min-width: 992px) {
  .instagram {
    padding: 100px 0;
  }
  .instagram__heading {
    margin-bottom: 3em;
  }
}

.policy {
  padding: 60px 0;
}
.policy__heading {
  text-align: center;
}
.policy__heading h2 {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.1em;
}
.policy__heading span {
  font-size: 74px;
  color: #f66620;
  background: linear-gradient(90deg, #f66620, #fa931c);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.policy__list {
  margin-bottom: 30px;
}
.policy__item {
  margin-bottom: 30px;
}
.policy__image {
  position: relative;
  margin-bottom: 15px;
  text-align: center;
}
.policy__image img {
  width: 60%;
}
.policy__number {
  position: absolute;
  bottom: 0;
  left: 0;
  font-weight: bold;
  font-size: 50px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}
.policy__title {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 15px;
}
.policy__title span {
  background: linear-gradient(transparent 60%, #fef287 60%);
}
.policy__contents {
  position: relative;
  transition: 0.3s;
}
.policy__contents.hide {
  height: 150px;
  overflow: hidden;
}
.policy__contents .policy__number {
  display: none;
}
.policy__text {
  font-size: 13px;
  line-height: 1.7;
}
.policy__note {
  display: inline-block;
  position: relative;
  color: #2196f3;
  cursor: pointer;
}
.policy__note::after {
  display: block;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 1px;
  background: #2196f3;
  content: "";
}
.policy__description {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 11000;
  width: 100%;
  height: 100%;
  overflow: auto;
}
.policy__layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.policy__box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: calc(100% - 40px);
  padding: 30px 20px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 1px 1px 5px #333;
}
.policy__box p {
  margin-bottom: 2em;
  line-height: 1.75;
}
.policy__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 30px;
  margin: auto;
  border: 1px solid transparent;
  border-radius: 15px;
  background: linear-gradient(90deg, #f66620, #fa931c);
  color: #fff;
  cursor: pointer;
}
.policy__more {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  text-align: center;
}
.policy__more span {
  display: inline-block;
  padding: 4px 24px;
  border-radius: 30px;
  background: #3f3f3f;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.075em;
  text-indent: 0.075em;
  -webkit-font-smoothing: antialiased;
}
.policy__catch {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .policy__heading {
    margin-bottom: 20px;
  }
  .policy__heading h2 {
    font-size: 22px;
  }
  .policy__heading h2 span {
    font-size: 94px;
  }
  .policy__item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .policy__image {
    width: 40%;
  }
  .policy__number {
    font-size: 40px;
  }
  .policy__contents {
    flex: 1;
  }
  .policy__contents.hide {
    height: auto;
    overflow: visible;
  }
  .policy__title {
    font-size: 17px;
  }
  .policy__more {
    display: none;
  }
  .policy__box {
    width: 80%;
    max-width: 800px;
  }
}
@media screen and (min-width: 992px) {
  .policy {
    padding: 100px 0;
  }
  .policy__heading h2 {
    font-size: 36px;
  }
  .policy__heading h2 span {
    margin: 0 5px;
    font-size: 120px;
  }
  .policy__item {
    align-items: flex-end;
    margin-bottom: 0;
    padding-bottom: 50px;
    border-bottom: 1px dashed #ddd;
  }
  .policy__item:last-of-type {
    border-bottom: none;
  }
  .policy__image {
    width: 32%;
    margin: 0;
  }
  .policy__image img {
    width: 100%;
  }
  .policy__image .policy__number {
    display: none;
  }
  .policy__contents {
    padding-left: 5%;
  }
  .policy__contents .policy__number {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translateY(-25px);
    font-size: 120px;
    line-height: 1;
    opacity: 0.1;
  }
  .policy__title {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .policy__text {
    color: #333;
    font-size: 15px;
    line-height: 2;
  }
  .policy__box {
    padding: 40px;
  }
  .policy__box p {
    font-size: 15px;
    line-height: 2;
  }
}

.map {
  position: relative;
}
.map::after {
  display: block;
  padding-top: 75%;
  content: "";
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .map::after {
    padding-top: 52.5%;
  }
}
@media screen and (min-width: 992px) {
  .map::after {
    padding-top: 30%;
  }
}/*# sourceMappingURL=front-page.css.map */