.heading--en {
  height: 24px;
  margin-bottom: 15px;
}
.heading--en img {
  width: auto;
  height: 100%;
}
.heading--ja {
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1200px) {
  .heading--en {
    height: 32px;
  }
  .heading--ja {
    font-size: 18px;
  }
}

.link a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 167px;
  height: 53px;
  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 img {
  width: 110px;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
  }
  50% {
    transform: scale(5, 5);
    opacity: 0.3;
  }
  100% {
    transform: scale(10, 10);
    opacity: 0;
  }
}
.news__empty {
  margin-bottom: 40px;
  text-align: center;
}
.news__list {
  padding: 20px 10px;
  border-top: 3px solid #fa931c;
  border-bottom: 3px solid #fa931c;
}
.news__item a {
  display: block;
  padding: 15px 5px;
}
.news__date {
  margin-bottom: 5px;
  color: #fa931c;
  font-weight: bold;
  font-size: 12px;
}
.news__title {
  margin-bottom: 3px;
  color: #292422;
}
.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: 1200px) {
  .news__list {
    padding: 50px 0;
  }
  .news__item a {
    display: flex;
    align-items: center;
    padding: 20px 30px;
  }
  .news__date {
    width: 123px;
    margin: 0;
    font-size: 14px;
  }
  .news__excerpt {
    flex: 1;
    -webkit-line-clamp: 1;
    color: #333;
    font-size: 14px;
  }
}

.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);
  min-height: 600px;
  background: linear-gradient(90deg, #f66620, #fa931c);
}
.hero__image {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 85%;
  margin-left: auto;
}
.hero__image--pc {
  display: none;
}
.hero__image img {
  width: 100%;
  height: auto;
}
.hero__catch {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-15px, -5%);
  width: 75px;
}
.hero__name {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-15px, 60%);
}
.hero__scroll {
  display: none;
}
.hero__link {
  position: absolute;
  bottom: 50px;
  right: 15px;
  width: 190px;
}
.hero__link a {
  display: inline-block;
  padding: 10px 27px 12px;
  border-radius: 45px;
  background: #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
.hero__link a span {
  font-weight: bold;
  font-size: 12px;
}
.hero__link a span:first-of-type {
  display: none;
}
.hero__link a img {
  display: block;
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .hero {
    max-height: 780px;
  }
  .hero__image {
    width: 90%;
  }
  .hero__image--sp {
    display: none;
  }
  .hero__image--pc {
    display: block;
  }
  .hero__name {
    width: 440px;
    bottom: 20%;
    transform: translateX(-40px);
  }
  .hero__catch {
    top: 50%;
    right: 5%;
    left: auto;
    transform: translateY(-50%);
    width: 80px;
  }
  .hero__scroll {
    display: block;
    position: absolute;
    bottom: 0;
    left: 4%;
    color: #fff;
  }
  .hero__scroll p {
    min-width: 18px;
    font-size: 12px;
    letter-spacing: 0.2em;
    writing-mode: vertical-lr;
  }
  .hero__scroll::after {
    display: block;
    width: 1px;
    height: 80px;
    margin: 10px auto 0;
    background: #fff;
    content: "";
  }
  .hero__link {
    right: 5%;
    bottom: -100px;
  }
}
@media screen and (min-width: 992px) {
  .hero__link {
    right: auto;
    bottom: 8%;
    left: 5%;
  }
  .hero__name {
    bottom: 40%;
  }
}
@media screen and (min-width: 1200px) {
  .hero {
    max-height: none;
  }
  .hero__image {
    width: 84%;
  }
  .hero__catch {
    width: 124px;
  }
  .hero__name {
    width: 52.4%;
    bottom: 50%;
    transform: translate(-25%, 50%);
  }
  .hero__scroll {
    left: 7.5%;
  }
  .hero__scroll p {
    margin-left: 3px;
  }
  .hero__scroll::after {
    height: 120px;
  }
  .hero__link {
    width: 290px;
  }
  .hero__link a {
    padding: 12px 47px 14px;
    border: 4px solid transparent;
    transition: 0.3s;
  }
  .hero__link a span {
    font-size: 13px;
  }
  .hero__link a span:first-of-type {
    display: inline;
  }
  .hero__link a img {
    margin-top: 4px;
  }
  .hero__link a:hover {
    border-color: #fa931c;
  }
}
@media screen and (min-width: 1600px) {
  .hero {
    min-height: 1080px;
  }
  .hero__image {
    width: 75%;
  }
  .hero__name {
    bottom: 45%;
    transform: translate(-35%, 50%);
    width: 45%;
  }
  .hero__scroll {
    left: 13%;
  }
  .hero__scroll p {
    min-width: 22.5px;
    font-size: 15px;
  }
}

.from {
  position: relative;
  width: 100%;
  height: 900px;
  background-image: url(../images/index_from_background_sp.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.from__heading {
  position: absolute;
  top: 40px;
  left: 15px;
  padding-left: 50px;
}
.from__heading--ja {
  font-size: 28px;
  letter-spacing: 0.08em;
}
.from__heading--ja::after {
  display: block;
  width: 40px;
  height: 2px;
  margin: 15px 0 28px;
  background: #292422;
  content: "";
}
.from__heading--en {
  font-size: 10px;
  letter-spacing: 0.1em;
}
.from__pattern {
  position: absolute;
  top: 20px;
  left: 0;
  width: 40px;
}
.from__catch {
  position: absolute;
  right: 20px;
  bottom: 70px;
  width: 200px;
}
.from__catch img {
  display: block;
}
.from__catch img:first-of-type {
  width: 63%;
  margin: 0 auto 20px;
}
@media screen and (min-width: 768px) {
  .from {
    height: 680px;
    background-image: url(../images/index_from_background_pc.png);
    background-position: top center;
    background-size: 100% auto;
  }
  .from__heading {
    top: 50px;
    left: 30px;
  }
  .from__catch {
    right: 50px;
  }
}
@media screen and (min-width: 1200px) {
  .from {
    height: 1118px;
    background-image: url(../images/index_from_background_pc.png);
  }
  .from__heading {
    top: 138px;
    left: 5.35%;
    padding-left: 90px;
  }
  .from__heading--ja {
    font-size: 53px;
  }
  .from__heading--ja::after {
    width: 60px;
    height: 3px;
    margin: 25px 0 38px;
  }
  .from__heading--en {
    font-size: 16px;
  }
  .from__pattern {
    top: 35px;
    width: 75px;
  }
  .from__catch {
    right: 2%;
    bottom: 150px;
    width: 33.3%;
    max-width: 480px;
    padding: 60px 5.35% 65px;
    background: #fff;
  }
}
@media screen and (min-width: 1600px) {
  .from {
    height: 1400px;
  }
  .from__heading {
    left: 10%;
  }
  .from__catch {
    right: 8%;
  }
}

.profile {
  background: #fff8ef;
  padding: 80px 20px 60px;
}
.profile__inner {
  padding-top: 120px;
  margin-top: -120px;
}
.profile__heading {
  margin-bottom: 40px;
}
.profile__image {
  position: relative;
  width: 90%;
  margin: 0 auto 50px;
}
.profile__photo {
  position: relative;
  z-index: 5;
  width: 100%;
}
.profile__name {
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translateY(20px);
  z-index: 10;
  width: 100%;
}
.profile__circle {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 50%;
  background: #fff;
}
.profile__circle::before {
  display: block;
  padding-top: 100%;
  content: "";
}
.profile__catch {
  display: inline-block;
  position: relative;
  margin-bottom: 30px;
}
.profile__catch span {
  font-size: 26px;
  line-height: 1.6;
  letter-spacing: 0.2em;
}
.profile__catch img {
  position: absolute;
  right: -5px;
  bottom: -10px;
  width: 130px;
}
.profile__list, .profile__data {
  letter-spacing: 0.05em;
}
.profile__list {
  margin-bottom: 40px;
  line-height: 1.75;
}
.profile__item {
  display: flex;
}
.profile__item::before {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-top: 4.4px;
  border-radius: 50%;
  background: #fa931c;
  content: "";
}
.profile__item span {
  flex: 1;
  padding-left: 5px;
}
.profile__data div:first-of-type {
  margin-bottom: 15px;
}
.profile__data dt {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 10px 2px;
  background: #fa931c;
  color: #fff;
  font-weight: bold;
  text-indent: 0.05em;
}
@media screen and (min-width: 768px) {
  .profile {
    padding: 70px 0 60px;
  }
  .profile__inner {
    width: 90%;
    max-width: 1080px;
    margin: auto;
  }
  .profile__contents {
    display: flex;
    align-items: flex-start;
  }
  .profile__image {
    width: 280px;
    margin: 0;
  }
  .profile__detail {
    flex: 1;
    padding-left: 40px;
  }
  .profile__catch img {
    width: 140px;
    right: -20px;
  }
}
@media screen and (min-width: 1200px) {
  .profile {
    padding: 130px 0 120px;
  }
  .profile__inner {
    padding-top: 150px;
    margin-top: -150px;
  }
  .profile__heading {
    margin-bottom: 68px;
  }
  .profile__image {
    width: 408px;
  }
  .profile__name {
    bottom: -10px;
  }
  .profile__detail {
    padding-left: 120px;
  }
  .profile__catch span {
    font-size: 43px;
  }
  .profile__catch img {
    right: 10px;
    width: 187px;
  }
  .profile__list, .profile__data {
    font-size: 16px;
  }
  .profile__item::before {
    margin-top: 6px;
  }
  .profile__data div:first-of-type {
    margin-bottom: 20px;
  }
}

.policy__catch {
  padding: 50px 0;
  text-align: center;
}
.policy__catch h2 {
  display: inline-block;
  position: relative;
  text-align: left;
}
.policy__catch h2 span {
  font-size: 24px;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}
.policy__catch h2 img {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 130px;
}
.policy__contents {
  display: flex;
  position: relative;
  overflow: auto;
}
.policy__block {
  flex: 0 0 auto;
  position: relative;
  width: 100%;
  padding: 100px 20px 40px;
}
.policy__block--3d {
  background: #f8f8f8;
}
.policy__block--3d .policy__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 170px;
}
.policy__block--3d .policy__heading {
  width: 240px;
  margin-bottom: 40px;
}
.policy__block--3d .policy__heading img:last-of-type {
  width: 110px;
}
.policy__block--3d .policy__list {
  margin-bottom: 40px;
}
.policy__block--3d .policy__item img {
  width: auto;
  height: 75px;
}
.policy__block--3d .policy__lead {
  margin-bottom: 60px;
}
.policy__block--3d .policy__lead img {
  width: auto;
  height: 35px;
}
.policy__block--3d .policy__change--en {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.policy__block--3d .policy__change--arrow {
  margin: 0 10px;
}
.policy__block--3d .policy__change--ja {
  display: flex;
  color: #fa931c;
}
.policy__block--3d .policy__change--ja p:first-of-type {
  width: 140px;
  margin-right: 38px;
}
.policy__block--3c {
  background: linear-gradient(135deg, #f66620, #fa931c);
}
.policy__block--3c .policy__heading {
  width: 180px;
  margin-bottom: 30px;
}
.policy__block--3c .policy__heading img:last-of-type {
  width: 105px;
}
.policy__block--3c .policy__list {
  margin-bottom: 30px;
}
.policy__block--3c .policy__item img {
  width: auto;
  height: 85px;
}
.policy__block--3c .policy__lead {
  margin-bottom: 40px;
}
.policy__block--3c .policy__change--en {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.policy__block--3c .policy__change--en img:first-of-type {
  margin-right: 40px;
}
.policy__block--3c .policy__change--ja {
  display: flex;
  color: #fff;
}
.policy__block--3c .policy__change--ja p:first-of-type {
  margin-right: 33px;
  white-space: nowrap;
}
.policy__block--3c .policy__change--ja p:first-of-type span, .policy__block--3c .policy__change--ja p:first-of-type img {
  display: block;
}
.policy__block--3c .policy__change--ja p:first-of-type span {
  margin-bottom: 15px;
}
.policy__block--3c .policy__change--ja p:first-of-type img {
  width: 80px;
  margin-left: 5px;
}
.policy__block--3c .policy__change--ja p:last-of-type {
  flex: 1;
}
.policy__heading {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.policy__heading img:first-of-type {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.policy__heading img:last-of-type {
  position: relative;
  z-index: 5;
}
.policy__item {
  display: flex;
  align-items: center;
}
.policy__lead {
  text-align: center;
}
.policy__change--text {
  width: auto;
  height: 24px;
}
.policy__change--arrow {
  width: 65px;
}
.policy__change--ja p {
  font-weight: bold;
  line-height: 1.8;
}
.policy__arrow {
  position: absolute;
  top: 115px;
  right: 0;
  transform: translateX(50%);
  width: 150px;
}
@media screen and (min-width: 768px) {
  .policy__catch h2 span {
    font-size: 30px;
  }
  .policy__catch h2 img {
    width: 140px;
    right: -5px;
  }
  .policy__block {
    width: 50%;
  }
  .policy__arrow {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1200px) {
  .policy__catch {
    padding: 100px 0;
  }
  .policy__catch h2 span {
    font-size: 52px;
  }
  .policy__catch h2 img {
    right: 5px;
    width: 228px;
  }
  .policy__inner {
    width: 90%;
    margin: auto;
  }
  .policy__block--3d .policy__inner {
    max-width: 445px;
  }
  .policy__block--3d .policy__heading {
    width: 262px;
  }
  .policy__block--3d .policy__heading img:last-of-type {
    width: 158px;
  }
  .policy__block--3d .policy__item img {
    height: 112px;
  }
  .policy__block--3d .policy__lead {
    margin-bottom: 175px;
  }
  .policy__block--3d .policy__lead img {
    height: 45px;
  }
  .policy__block--3d .policy__change--ja p:first-of-type {
    width: 185px;
    margin-right: 57px;
  }
  .policy__block--3d .policy__change--arrow {
    width: 90px;
    margin: 0 18px;
  }
  .policy__block--3d .policy__image {
    width: 220px;
  }
  .policy__block--3c {
    padding-top: 110px;
    padding-bottom: 50px;
  }
  .policy__block--3c .policy__inner {
    max-width: 512px;
  }
  .policy__block--3c .policy__heading {
    width: 190px;
    margin-bottom: 10px;
  }
  .policy__block--3c .policy__heading img:last-of-type {
    width: 150px;
  }
  .policy__block--3c .policy__item:not(:last-of-type) {
    margin-bottom: -10px;
  }
  .policy__block--3c .policy__item img {
    height: 122px;
  }
  .policy__block--3c .policy__lead {
    margin-bottom: 50px;
  }
  .policy__block--3c .policy__change--en img:first-of-type {
    margin-right: 52px;
  }
  .policy__block--3c .policy__change--ja p:first-of-type {
    margin-right: 53px;
  }
  .policy__block--3c .policy__change--ja p:first-of-type img {
    width: 90px;
  }
  .policy__change--text {
    height: 30px;
  }
  .policy__change--ja p {
    font-size: 15px;
  }
  .policy__arrow {
    width: 253px;
  }
}

.activity {
  padding: 80px 20px;
}
.activity__inner {
  padding-top: 120px;
  margin-top: -120px;
}
.activity__heading {
  margin-bottom: 40px;
  text-align: center;
}
.activity__heading .heading--ja {
  text-indent: 0.2em;
}
.activity__item:not(:last-of-type) {
  margin-bottom: 50px;
}
.activity__item:first-of-type .activity__title img:last-of-type {
  width: auto;
  height: 50px;
}
.activity__item:last-of-type {
  margin-bottom: 0;
}
.activity__title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.activity__title img:first-of-type {
  width: 50px;
  margin-right: 10px;
}
.activity__title img:last-of-type {
  width: auto;
  height: 24px;
}
.activity__detail {
  padding: 20px;
  border-radius: 15px;
  background: #fff8ef;
  color: #fa931c;
}
.activity__detail p {
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .activity {
    width: 75%;
    margin: auto;
  }
}
@media screen and (min-width: 1200px) {
  .activity {
    width: 90%;
    max-width: 1200px;
    padding: 115px 0 100px;
  }
  .activity__inner {
    padding-top: 150px;
    margin-top: -150px;
  }
  .activity__heading {
    margin-bottom: 75px;
  }
  .activity__list {
    display: flex;
    justify-content: space-between;
  }
  .activity__item {
    width: 30.5%;
  }
  .activity__title img:first-of-type {
    width: 79px;
  }
  .activity__detail {
    padding: 30px;
  }
  .activity__detail p {
    font-size: 15px;
  }
}

.news {
  padding: 60px 0;
  background: #f8f8f8;
}
.news__heading {
  margin-bottom: 30px;
}
.news__balloon {
  width: 80px;
  margin-bottom: 5px;
}
.news__list {
  margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  .news {
    padding: 180px 0 120px;
  }
  .news__empty {
    display: flex;
    justify-content: center;
    flex: 1;
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.15em;
  }
  .news__inner {
    display: flex;
    flex-direction: row-reverse;
    position: relative;
  }
  .news__balloon {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(calc(-100% - 5px));
    width: 102px;
    margin: 0;
  }
  .news__heading {
    display: flex;
    flex-direction: row-reverse;
    width: 23%;
    margin: 0 -50px 0 0;
  }
  .news__heading .heading--en {
    display: inline-block;
    transform: rotate(90deg);
    height: 46px;
    margin: 0;
  }
  .news__heading .heading--ja {
    transform: translate(30px, -70px);
    min-width: 37.5px;
    font-size: 25px;
    writing-mode: vertical-lr;
  }
  .news__list {
    flex: 1;
    margin: 0;
  }
  .news__link {
    position: absolute;
    right: 0;
    bottom: 20px;
  }
}

.instagram {
  padding: 60px 0;
  background: #fbf4f1;
}
.instagram__inner {
  padding-top: 120px;
  margin-top: -120px;
}
.instagram__heading {
  margin-bottom: 2em;
}
.instagram__heading .heading--ja {
  letter-spacing: 0;
}
.instagram__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.instagram__item {
  position: relative;
  width: 49%;
  width: calc(50% - 3px);
  margin-bottom: 6px;
}
.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;
}
.instagram__contents {
  margin-bottom: 40px;
}
.instagram__contents #sb_instagram #sbi_images {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.instagram__contents #sb_instagram #sbi_images .sbi_item {
  width: 49%;
  width: calc(50% - 3px);
  margin-bottom: 6px;
}
.instagram__contents #sb_instagram #sbi_images .sbi_item--empty {
  margin: 0;
}
.instagram__contents #sb_instagram #sbi_images .sbi_item .sbi_photo {
  display: block;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.instagram__contents #sb_instagram #sbi_images .sbi_item .sbi_photo::after {
  display: block;
  padding-top: 100%;
  content: "";
}
.instagram__contents #sb_instagram #sbi_images .sbi_item .svg-inline--fa {
  display: none;
}
.instagram__contents #sb_instagram .sbi-screenreader {
  display: none;
}
@media screen and (min-width: 768px) {
  .instagram__item {
    width: 19.2%;
    width: calc(20% - 5px);
    margin-bottom: 5px;
  }
  .instagram__contents #sb_instagram #sbi_images .sbi_item {
    width: 19.2%;
    width: calc(20% - 5px);
    margin-bottom: 5px;
  }
}
@media screen and (min-width: 992px) {
  .instagram {
    padding: 120px 0;
  }
  .instagram__heading {
    margin-bottom: 3em;
  }
}
@media screen and (min-width: 1200px) {
  .instagram__inner {
    padding-top: 150px;
    margin-top: -150px;
  }
}

.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: 1200px) {
  .map::after {
    padding-top: 35.75%;
  }
}/*# sourceMappingURL=front-page.css.map */