@charset "UTF-8";
/* 共通設定 -------------------------------------------------------------------------------------------------------------------- */
:root {
  --blue: #036eb7;
  --red: #e73828;
  --orange: #f7b52c;
  --black: #231815;
  --radiko: #00a0e9;
}

html {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Noto Sans JP", "Meiryo", "メイリオ", "平成明朝", "Lucida Grande", Verdana, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1.7;
  letter-spacing: 0.01em;
  background: rgba(247, 181, 44, 0.1);
}
@media screen and (min-width: 768px) {
  body {
    font-size: 2rem;
  }
}
body::before {
  content: "";
  background: url("../img/bg.svg") no-repeat center/cover;
  position: fixed;
  z-index: -1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  animation: zoomInBg 1s;
  animation-fill-mode: forwards;
}
@keyframes zoomInBg {
  0% {
    width: 0;
    height: 0;
    background-position-y: 0;
  }
  100% {
    width: 150rem;
    height: 100vh;
    background-position-y: -2rem;
  }
}
@media screen and (min-width: 768px) {
  @keyframes zoomInBg {
    0% {
      width: 0;
      height: 0;
      background-position: center 0;
    }
    100% {
      width: 725rem;
      height: 100vh;
      background-position: center -272rem;
    }
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

li {
  list-style: none;
}

.container {
  padding-block: 5rem;
}
@media screen and (min-width: 768px) {
  .container {
    padding-block: 10rem;
  }
}

.inner {
  padding-inline: 1rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-inline: unset;
  }
}

.br {
  display: inline-block;
}

h2.section-title {
  width: 50%;
  margin-inline: auto;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  h2.section-title {
    width: 30%;
    margin-inline: 5.4rem auto;
  }
}
h2.section-title::before, h2.section-title::after {
  content: "";
  background: url("../img/icon_01.svg") no-repeat center/100%;
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: -6.7rem;
  left: -5.3rem;
  z-index: -1;
}
h2.section-title::after {
  background-image: url("../img/icon_02.svg");
  left: auto;
  top: -2.5rem;
  right: -7.6rem;
}
@media screen and (min-width: 768px) {
  h2.section-title::after {
    top: -1rem;
  }
}

.radiko {
  background: var(--radiko);
  width: 85%;
  margin-inline: auto;
  height: 8rem;
  border-radius: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .radiko {
    margin-top: unset;
    padding-inline: 2rem;
    font-size: min(3.5rem, 3vw);
    width: 100%;
  }
}
.radiko img {
  width: 40%;
  max-width: 12rem;
}

.pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
/* header -------------------------------------------------------------------------------------------------------------------- */
.header {
  padding-block: 2rem 5rem;
}
@media screen and (min-width: 768px) {
  .header {
    padding-block: 2rem 10rem;
  }
}
.header .inner {
  max-width: 900px;
}
@media screen and (min-width: 768px) {
  .header .inner {
    padding-inline: 1rem;
  }
}
.header__top {
  animation: zoomIn 0.7s;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  transform: scale(0);
}
@keyframes zoomIn {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
.header__date-time {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue);
  display: block;
  text-align: center;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .header__date-time {
    font-size: 4.5rem;
    margin-top: 0.5rem;
    letter-spacing: 0.1em;
  }
}
.header__bottom {
  animation: fadeIn 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  opacity: 0;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.header__preview {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .header__preview {
    margin-top: 4rem;
  }
}
.header__preview h2 {
  width: 50%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .header__preview h2 {
    width: 26%;
  }
}
.header__preview-box {
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 2rem;
  padding: 2.3rem 1rem;
  padding-top: 3rem;
  position: relative;
  margin-inline: auto;
  width: 85%;
}
@media screen and (min-width: 768px) {
  .header__preview-box {
    width: 56rem;
    border-width: 4px;
  }
}
.header__preview-box-title {
  color: var(--red);
  font-size: 2.2rem;
  font-weight: 900;
  font-feature-settings: "halt";
  position: absolute;
  top: -3.2rem;
  left: 2.2rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .header__preview-box-title {
    font-size: 3rem;
    top: -5.2rem;
    left: 2.4rem;
  }
}
.header__preview-box-title::before {
  content: "";
  background: #fff;
  width: 105%;
  height: 1em;
  position: absolute;
  top: 3rem;
  left: -0.5rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .header__preview-box-title::before {
    top: 4.8rem;
    left: -0.8rem;
  }
}
.header__preview-box-title b {
  font-size: 160%;
}
.header__preview ul li {
  font-size: 1.8rem;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .header__preview ul li {
    font-size: 3rem;
  }
}

/* contents-wrapper -------------------------------------------------------------------------------------------------------------------- */
.contents-wrapper {
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .contents-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4%;
    position: relative;
    padding-inline: 2rem;
    padding-top: 6rem;
  }
}

/* main -------------------------------------------------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .main {
    width: 70%;
  }
}

/* about -------------------------------------------------------------------------------------------------------------------- */
@media screen and (min-width: 768px) {
  .about {
    padding-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .about p {
    font-size: min(2rem, 2.3vw);
  }
}

/* personality -------------------------------------------------------------------------------------------------------------------- */
.personality .section-title {
  width: 88%;
}
@media screen and (min-width: 768px) {
  .personality .section-title {
    width: 55%;
  }
}
.personality .section-title::before {
  top: -6.5rem;
  left: 0rem;
}
@media screen and (min-width: 768px) {
  .personality .section-title::before {
    top: -6.7rem;
    left: -5.3rem;
  }
}
.personality .section-title::after {
  right: -2.1rem;
}
@media screen and (min-width: 768px) {
  .personality .section-title::after {
    right: -7.6rem;
  }
}
.personality__top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .personality__top {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.personality__top img {
  width: 90%;
  margin-inline: auto;
  border-radius: 4rem;
}
@media screen and (min-width: 768px) {
  .personality__top img {
    width: 50%;
    margin-inline: unset;
    flex: 1;
  }
}
.personality__top figcaption {
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .personality__top figcaption {
    flex: 1;
    font-size: min(4.5rem, 4.5vw);
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
.personality__top-caption-bottom {
  display: block;
  line-height: 1.4;
  font-size: 0.45em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .personality__top-caption-bottom {
    font-size: min(2rem, 2vw);
    line-height: 1.6;
  }
}
.personality__bottom, .contact {
  margin-top: 4rem;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 4rem;
  padding: 1.2rem;
  padding-block: 2.8rem 3rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .personality__bottom, .contact {
    border-width: 4px;
  }
}
.personality__bottom-title, .contact__title {
  color: var(--blue);
  font-size: 2.2rem;
  font-weight: 900;
  position: absolute;
  top: -2.1rem;
  left: 4rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .personality__bottom-title, .contact__title {
    font-size: min(3rem, 3vw);
    top: -2.9rem;
  }
}
.personality__bottom-title::before, .contact__title::before {
  content: "";
  background: #fff;
  width: 110%;
  height: 1em;
  position: absolute;
  top: 1.9rem;
  left: -0.6rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .personality__bottom-title::before, .contact__title::before {
    top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .personality__bottom ul, .contact ul {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.personality__bottom ul figure, .contact ul figure {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .personality__bottom ul figure, .contact ul figure {
    flex-direction: column;
  }
}
.personality__bottom ul figure.reverse, .contact ul figure.reverse {
  flex-direction: row-reverse;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .personality__bottom ul figure.reverse, .contact ul figure.reverse {
    flex-direction: column;
  }
}
.personality__bottom ul img, .contact ul img {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .personality__bottom ul img, .contact ul img {
    width: 80%;
  }
}
.personality__bottom ul figcaption, .contact ul figcaption {
  flex: 1;
  font-feature-settings: "halt";
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .personality__bottom ul figcaption, .contact ul figcaption {
    text-align: center;
    margin-top: 0.8rem;
    line-height: 1.5;
    font-size: min(2rem, 2vw);
  }
}
.personality__bottom ul figcaption .br, .contact ul figcaption .br {
  font-size: 0.8em;
  display: block;
}
@media screen and (min-width: 768px) {
  .personality__bottom ul figcaption .br, .contact ul figcaption .br {
    font-size: 0.7em;
  }
}

/* corner -------------------------------------------------------------------------------------------------------------------- */
/* aside -------------------------------------------------------------------------------------------------------------------- */
.aside {
  padding-top: unset;
}
@media screen and (min-width: 768px) {
  .aside {
    width: 30%;
    position: sticky;
    top: 0;
    padding-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .aside .radiko {
    display: flex;
  }
}

.contact {
  border-radius: 2rem;
  margin-top: unset;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .contact__title {
    left: 9%;
    font-size: min(3rem, 3vw);
  }
}
.contact__title::before {
  width: 108%;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: min(0.8em, 1.7vw);
  }
}
.contact ul {
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 1.4rem;
  gap: 1.2rem;
  max-width: 24.5rem;
  margin-inline: auto;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .contact ul {
    max-width: 25.5rem;
    gap: 1.8rem;
  }
}
.contact__mail, .contact__app {
  color: var(--red);
  font-size: 1.2em;
  font-weight: 600;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .contact__mail, .contact__app {
    font-size: min(1.1em, 2vw);
  }
}
.contact__mail::before, .contact__app::before {
  content: "";
  background: url("../img/icon_mail_red.svg") no-repeat center/100%;
  width: 4rem;
  height: 4rem;
  transform: rotate(-10deg) translateY(4px);
}
@media screen and (min-width: 768px) {
  .contact__mail::before, .contact__app::before {
    width: 2.6vw;
    height: 2.6vw;
    max-width: 4rem;
    max-height: 4rem;
    min-width: 2.3rem;
    min-height: 2.3rem;
  }
}
.contact__app {
  font-size: 1em;
  text-align: left;
  color: #18346e;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .contact__app {
    font-size: min(1em, 1.8vw);
  }
}
.contact__app::before {
  content: "";
  background: url("../img/icon_app.png") no-repeat center/100%;
  transform: none;
}
.contact__app .br {
  display: block;
  font-size: 0.7em;
  font-feature-settings: "halt";
}

/* ページトップ ---------------------------------------------------------------------------------------------------------- */
.back-to-top .inner {
  max-width: 1200px;
  padding-inline: 2rem;
}
.back-to-top .pagetop {
  display: none;
}
@media screen and (min-width: 768px) {
  .back-to-top .pagetop {
    background: var(--orange);
    width: 10rem;
    border-radius: 1rem 1rem 0 0;
    padding: 0.8rem;
    padding-block: 0.3rem;
    gap: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-inline: auto 0;
  }
  .back-to-top .pagetop img {
    width: 40%;
  }
  .back-to-top .pagetop__text {
    font-size: 1.2rem;
  }
}

/* footer -------------------------------------------------------------------------------------------------------------------- */
.footer {
  padding-block: 2rem;
  background: var(--orange);
}
.footer__breadcrumb {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__breadcrumb {
    display: flex;
    justify-content: center;
    gap: 1.4rem;
  }
  .footer__breadcrumb-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
  }
  .footer__breadcrumb-item:not(:last-child)::after {
    content: "";
    border-top: 0.2rem solid;
    border-right: 0.2rem solid;
    width: 1rem;
    height: 1rem;
    display: block;
    transform: rotate(45deg);
  }
}
.footer__list {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .footer__list {
    display: none;
  }
}
.footer__link {
  width: 90%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
}
.footer__link.home {
  gap: 0;
}
.footer__link.angle-up {
  gap: 0.1rem;
}
.footer__link img {
  width: 40%;
}
.footer__link-text {
  font-size: 1.2rem;
}
.footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 3rem;
}
.footer__sns-link {
  width: 60px;
  padding: 4px;
  border-radius: 100px;
}
.footer__sns-link.facebook {
  background: #1877f2;
}
.footer__sns-link.twitter {
  background: #000;
}
.footer__sns-link.line {
  background: #1eb900;
}
.footer__sns img {
  border-radius: 100px;
}
.footer__copyright {
  font-size: 1rem;
  line-height: 1.6;
  display: block;
  margin-top: 3rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=style.css.map */