@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  color: #231815;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
******************************************/
/*****************************************
 * px→remの計算
******************************************/
/*****************************************
 * vwの計算
******************************************/
/*****************************************
 * line-heightの計算
******************************************/
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 12.5rem;
}
@media (max-width: 1200px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-weight: 400;
  color: #231815;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

h1, h2, h3, h4, h5, h6, p {
  word-break: break-word;
}

/* ある時からbr消去 
----------------------------------------------- */
@media screen and (max-width: 399px) {
  .sm-remove {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .md-remove {
    display: none;
  }
}

@media screen and (max-width: 999px) {
  .lg-remove {
    display: none;
  }
}

/* ある時からbr追加
----------------------------------------------- */
.sm-add {
  display: none;
}
@media screen and (max-width: 399px) {
  .sm-add {
    display: block;
  }
}

.md-add {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-add {
    display: block;
  }
}

.lg-add {
  display: none;
}
@media screen and (max-width: 999px) {
  .lg-add {
    display: block;
  }
}

.inner {
  max-width: 66.25rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 41.25rem;
  }
}

/* ===============================================
# header
=============================================== */
.header {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  right: 0;
  background-color: #DE8430;
}

.header__logo {
  max-width: 9.5625rem;
  width: 100%;
  margin-left: auto;
}
.header__logo img {
  height: auto;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  z-index: 998;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
  position: fixed;
  bottom: 0.9375rem;
  right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .header__hamburger {
    display: block;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger-close {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: none;
  position: absolute;
  bottom: 0.9375rem;
  right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .header__hamburger-close {
    display: block;
  }
}

.header__drawer {
  padding: 0.625rem 0.6875rem 0.625rem 0.6875rem;
  position: absolute;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow-y: scroll;
  scrollbar-width: none;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-list {
  padding: 0 2.375rem;
  margin-top: 8.0625rem;
}

.header__drawer-item {
  border-bottom: 1px solid #e8ecf0;
}

.header__drawer-item a {
  padding: 1.125rem 0;
  font-size: 1rem;
  color: #132972;
  font-weight: 400;
  display: block;
  position: relative;
}
.header__drawer-item a::before {
  content: "";
  width: 0.625rem;
  height: 0.5rem;
  color: #f0383c;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
          clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__drawer-item--btn a {
  width: 100%;
  height: 3.25rem;
  padding-left: 1.375rem;
  background-color: #f4f6f8;
  border-radius: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  font-weight: 400;
  color: #132972;
  position: relative;
}
.header__drawer-item--btn a::before {
  content: "";
  width: 0.5rem;
  height: 0.625rem;
  color: #132972;
  background-color: currentColor;
  -webkit-clip-path: polygon(100% 50%, 0 0, 0 100%);
          clip-path: polygon(100% 50%, 0 0, 0 100%);
  position: absolute;
  right: 1.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.header__drawer-item--btn-01 {
  margin-top: 2.9375rem;
}

.header__drawer-item--btn-02 {
  margin-top: 0.625rem;
}

/* ===============================================
# mv
=============================================== */
.mv {
  position: relative;
  background-color: #f4f6f8;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mv {
    overflow-x: hidden;
    background-color: #fff;
  }
}

.mv__img-bg {
  position: relative;
}
.mv__img-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, right top, color-stop(28%, #FFC800), to(#ffe800));
  background: linear-gradient(to top right, #FFC800 28%, #ffe800 100%);
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv__img-bg::before {
    height: 80%;
  }
}

.mv__img {
  max-width: 70.75rem;
  width: 100%;
  margin-inline: auto;
  -webkit-transform: translateX(-4.375rem);
          transform: translateX(-4.375rem);
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1320px) {
  .mv__img {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .mv__img {
    width: calc(100% + 4.625rem);
    padding-top: 0.75rem;
    -webkit-transform: translateX(-4.625rem);
            transform: translateX(-4.625rem);
    min-width: 27.5rem;
  }
}
.mv__img img {
  height: auto;
}

.mv__inner {
  max-width: 65rem;
  width: 100%;
  margin-inline: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    position: static;
  }
}

.mv-youtube__wrap {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  padding-right: calc(50vw - 50%);
  background-color: #fff;
  border-radius: 3.75rem 0 0 0;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .mv-youtube__wrap {
    padding: 0;
    border-radius: 0;
  }
}

.mv-youtube__inner {
  margin-inline: auto;
  padding: 2.75rem 0 0 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv-youtube__inner {
    margin-top: 1.9375rem;
    padding: 0 1.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.mv-youtube__banner {
  position: absolute;
  top: -13.125rem;
  left: 50%;
}
@media screen and (max-width: 767px) {
  .mv-youtube__banner {
    display: none;
  }
}

.mv-youtube {
  max-width: 28rem;
  width: 100%;
  aspect-ratio: 448/252;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .mv-youtube {
    max-width: 20.3125rem;
    margin-inline: auto;
    aspect-ratio: 325/177;
  }
}
.mv-youtube iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 1rem 1.0625rem 1.25rem rgba(0, 0, 0, 0.2);
          box-shadow: 1rem 1.0625rem 1.25rem rgba(0, 0, 0, 0.2);
}

.mv-youtube__title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid #132972;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 767px) {
  .mv-youtube__title {
    border-bottom: none;
  }
}
.mv-youtube__title img {
  margin-top: 2.75rem;
  max-width: 15.5625rem;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 1.4375rem;
}
@media screen and (max-width: 767px) {
  .mv-youtube__title img {
    max-width: 13.25rem;
    margin-top: 1.25rem;
  }
}

.mv-nav {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 700;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .mv-nav {
    display: none;
  }
}

.mv-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}

.mv-nav__item:nth-of-type(1) a {
  padding-top: 1rem;
  background-color: #ff8000;
  color: #fff;
}
.mv-nav__item:nth-of-type(1) a::before {
  bottom: 1.375rem;
}
.mv-nav__item:nth-of-type(2) a {
  padding-top: 3.0625rem;
  background-color: #ffe800;
  color: #132972;
}
.mv-nav__item:nth-of-type(2) a::before {
  bottom: 1.875rem;
}

.mv-nav__item a {
  width: 5rem;
  height: 15rem;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  border-radius: 1.25rem 0 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
}
.mv-nav__item a::before {
  content: "";
  width: 0.625rem;
  height: 0.875rem;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

/* ===============================================
# ニュース
=============================================== */
.news {
  margin-top: 2.375rem;
  padding: 1.6875rem 0 2.875rem 0;
  background-color: #f4f6f8;
}
@media screen and (max-width: 767px) {
  .news {
    margin-top: 2.25rem;
    padding: 2.5rem 0;
  }
}

.news__list {
  height: 15rem;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .news__list {
    height: auto;
    max-height: 23.25rem;
  }
}

.news__item:first-of-type {
  padding: 0 1.25rem 1.125rem 1.25rem;
}
@media screen and (max-width: 767px) {
  .news__item:first-of-type {
    padding: 0 0 1.25rem 0;
  }
}

.news__item:not(:first-child) {
  padding: 0.9375rem 1.25rem 1.125rem 1.25rem;
  border-top: 1px solid #c1c1c1;
}
@media screen and (max-width: 767px) {
  .news__item:not(:first-child) {
    padding: 0.625rem 0 1.25rem 0;
  }
}

.news__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.8125rem;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .news__item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    line-height: 1.6;
  }
}

.news__date {
  font-size: 1.25rem;
  font-weight: 700;
  color: #132972;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news__date-week {
  margin-left: 0.3125rem;
  font-size: 1rem;
  font-weight: 700;
  color: #132972;
}
@media screen and (max-width: 767px) {
  .news__date-week {
    font-size: 0.9375rem;
  }
}

.news__title {
  margin-top: 0.25rem;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #132972;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news__title {
    margin-top: 0;
    font-size: 0.9375rem;
  }
}

.news__time {
  font-size: 1rem;
  font-weight: 400;
  color: #132972;
}
@media screen and (max-width: 767px) {
  .news__time {
    font-size: 0.9375rem;
  }
}

.news-tab__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.news-tab__menu-item {
  width: 6.5rem;
  height: 2.1875rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  background-color: #646464;
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .news-tab__menu-item {
    width: 6rem;
    height: 2rem;
    font-size: 0.8125rem;
  }
}

.news-tab__menu-item + .news-tab__menu-item {
  margin-left: 0.375rem;
}
.news-tab__menu-item.is-active {
  color: #404040;
  background-color: #ffe800;
}

.news-tab__content {
  margin-top: 1.625rem;
}
@media screen and (max-width: 767px) {
  .news-tab__content {
    margin-top: 1.375rem;
  }
}

.news-tab__content-item {
  display: none;
}

.news-tab__content-item.is-active {
  display: block;
  -webkit-animation: fade 0.3s;
          animation: fade 0.3s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* ===============================================
# works
=============================================== */
.works {
  padding: 4rem 0 6.5625rem 0;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 3.875rem 0 7.5rem 0;
  }
}

.works__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .works__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .works__content {
    display: contents;
  }
}

@media screen and (max-width: 767px) {
  .works__title-wrap {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.works__title {
  max-width: 22.875rem;
  width: 100%;
}
.works__title img {
  height: auto;
}
@media screen and (max-width: 767px) {
  .works__title {
    max-width: 18.25rem;
  }
}

.works__sub-title {
  margin-top: 1.375rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f0383c;
}
@media screen and (max-width: 767px) {
  .works__sub-title {
    margin-top: 1.25rem;
    font-size: 1.125rem;
  }
}

.works__content-wrap {
  padding-left: 5.25rem;
  margin-top: 6.625rem;
}
@media screen and (max-width: 767px) {
  .works__content-wrap {
    margin-top: 0;
    padding-left: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    gap: 0.9375rem;
  }
}

.works__content-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .works__content-title-wrap {
    width: 14.375rem;
    height: 4.875rem;
    margin-top: -1.875rem;
    background-color: #fff;
    border-radius: 0 1.25rem 0 0;
    gap: 0.9375rem;
  }
}

.works__content-number {
  max-width: 7.125rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .works__content-number {
    max-width: 2.25rem;
    aspect-ratio: 36/55;
  }
}
.works__content-number img {
  height: auto;
}

.works__content-title {
  padding: 0.3125rem 0 0.625rem 0;
  font-size: 1.875rem;
  font-weight: 700;
  color: #132972;
}
@media screen and (max-width: 767px) {
  .works__content-title {
    padding: 0;
    font-size: 1.625rem;
    line-height: 1.3461538462;
  }
}

.works__content-text {
  margin-top: 0.8125rem;
  padding-left: 9.125rem;
  font-size: 1rem;
  font-weight: 400;
  color: #132972;
  line-height: 1.875;
  letter-spacing: -0.01em;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .works__content-text {
    margin-top: 0.625rem;
    padding-left: 0;
    font-size: 0.9375rem;
    line-height: 2;
  }
}

.works__img {
  max-width: 21.25rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .works__img {
    margin-top: 2.25rem;
    max-width: 17.5rem;
    margin-inline: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 480px) {
  .works__img {
    margin-right: calc(50% - 50vw);
    margin-left: auto;
  }
}
.works__img img {
  height: auto;
  aspect-ratio: 340/493;
}
@media screen and (max-width: 767px) {
  .works__img img {
    aspect-ratio: 280/352;
  }
}

.works__list {
  margin-top: 3.8125rem;
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 4.875rem) / 3));
  gap: 2.4375rem;
}
@media screen and (max-width: 767px) {
  .works__list {
    margin-top: 4.4375rem;
    grid-template-columns: 1fr;
    gap: 2.875rem;
  }
}

.works__item-img {
  max-width: 19.125rem;
  width: 100%;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .works__item-img {
    max-width: 19.6875rem;
    margin-inline: auto;
  }
}
.works__item-img img {
  height: auto;
}

.works__item-title-wrap {
  margin-top: -1.5rem;
  margin-left: -0.125rem;
  width: 17.25rem;
  height: 4.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.0625rem;
  background-color: #fff;
  border-radius: 0 1.25rem 0 0;
}
@media screen and (max-width: 767px) {
  .works__item-title-wrap {
    width: 17.5rem;
    margin-top: -2.125rem;
    margin-left: -1.25rem;
    gap: 0.625rem;
  }
}

.works__item-title-number {
  max-width: 2.375rem;
  width: 100%;
  margin-bottom: 0.125rem;
}
@media screen and (max-width: 767px) {
  .works__item-title-number {
    max-width: 3.1875rem;
  }
}
.works__item-title-number img {
  width: 100%;
  height: auto;
}

.works__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #132972;
}
@media screen and (max-width: 767px) {
  .works__item-title {
    font-size: 1.375rem;
  }
}

.works__item-text {
  margin-top: -0.5rem;
  padding: 0 0.3125rem;
  font-size: 1rem;
  font-weight: 400;
  color: #132972;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .works__item-text {
    padding: 0;
    font-size: 0.9375rem;
    line-height: 1.8666666667;
  }
}

.works__item:nth-of-type(2) .works__item-text {
  letter-spacing: -0.03em;
}

/* ===============================================
# policy
=============================================== */
.policy__bg {
  padding: 2.75rem 0 3rem 0;
  background-color: #ffe800;
  border-radius: 3.75rem;
}
@media screen and (max-width: 767px) {
  .policy__bg {
    padding-top: 3.125rem;
    border-radius: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .policy__inner.inner {
    padding: 0 1.375rem;
  }
}

.policy__title {
  margin-bottom: -1.9375rem;
  max-width: 24rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .policy__title {
    margin-bottom: -1.0625rem;
    max-width: 15rem;
  }
}
.policy__title img {
  height: auto;
  aspect-ratio: 384/71;
}
@media screen and (max-width: 767px) {
  .policy__title img {
    aspect-ratio: 240/44;
  }
}

.policy__heading {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .policy__heading {
    text-align: left;
  }
}

.policy__sub-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #f0383c;
}
@media screen and (max-width: 767px) {
  .policy__sub-title {
    font-size: 1.75rem;
  }
}

.policy__main-title {
  max-width: 49.0625rem;
  width: 100%;
  margin-top: 1.6875rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .policy__main-title {
    margin-top: 1.125rem;
    max-width: 20.125rem;
  }
}
.policy__main-title img {
  height: auto;
  aspect-ratio: 785/70;
}
@media screen and (max-width: 767px) {
  .policy__main-title img {
    aspect-ratio: 322/130;
  }
}

.policy__description {
  margin-top: 1.375rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #132972;
}
@media screen and (max-width: 767px) {
  .policy__description {
    margin-top: 1.875rem;
    font-size: 1.25rem;
    line-height: 1.5652173913;
    text-align: center;
  }
}

.policy__list {
  margin-top: 2.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.875rem 3.6875rem;
}
@media screen and (max-width: 767px) {
  .policy__list {
    margin-top: 2.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
}

.policy__item:nth-of-type(1), .policy__item:nth-of-type(2), .policy__item:nth-of-type(3), .policy__item:nth-of-type(4) {
  width: calc((100% - 3.6875rem) / 2);
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(1), .policy__item:nth-of-type(2), .policy__item:nth-of-type(3), .policy__item:nth-of-type(4) {
    width: 100%;
  }
}
.policy__item:nth-of-type(5) {
  width: 100%;
}

.policy__item-title {
  font-size: 1.5rem;
  color: #f0383c;
  font-weight: 700;
  background-color: #fff;
  border-bottom: 2px solid #f0383c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .policy__item-title {
    text-align: center;
    font-size: 1.625rem;
  }
}

.policy__item:nth-of-type(1) .policy__item-title {
  height: 8.0625rem;
  padding-top: 0.5rem;
  font-size: 1.75rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(1) .policy__item-title {
    height: 8.75rem;
    padding-top: 0;
    font-size: 1.875rem;
    line-height: 1.3333333333;
    gap: 0.625rem;
  }
}
.policy__item:nth-of-type(1) .policy__tag {
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(1) .policy__tag {
    width: 11.25rem;
  }
}
.policy__item:nth-of-type(1) .policy__item-description {
  line-height: 1.9444444444;
}
.policy__item:nth-of-type(2) .policy__item-title {
  height: 3.96875rem;
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(2) .policy__item-title {
    height: auto;
    border-color: transparent;
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(2) .policy__item-title:not(:last-child) {
    text-decoration: underline;
    text-underline-offset: 0.3em;
  }
}
.policy__item:nth-of-type(3) .policy__item-title {
  height: 3.875rem;
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(3) .policy__item-title {
    height: 5.75rem;
    line-height: 1.4230769231;
  }
}
.policy__item:nth-of-type(4) .policy__item-title {
  padding-right: 1.1875rem;
  height: 3.875rem;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(4) .policy__item-title {
    height: 5.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}
.policy__item:nth-of-type(4) .policy__tag {
  width: 10.625rem;
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(4) .policy__tag {
    width: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(4) .policy__item-description {
    padding: 0.75rem 0.875rem;
  }
}
.policy__item:nth-of-type(4) .policy__item-description img {
  margin-top: -1.5rem;
  max-width: 24.625rem;
  width: 100%;
  height: auto;
  aspect-ratio: 394/129;
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(4) .policy__item-description img {
    max-width: 18.875rem;
    margin-top: 0;
    margin-inline: auto;
    aspect-ratio: 302/129;
  }
}
.policy__item:nth-of-type(5) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(5) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.policy__item:nth-of-type(5) .policy__item-title {
  width: calc((100% - 3.6875rem) / 2);
  height: 8.0625rem;
  padding-top: 1.25rem;
  padding-left: 9.625rem;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 1.5416666667;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(5) .policy__item-title {
    height: 8.125rem;
    width: 100%;
    padding-top: 0;
    padding-left: 19rem;
    padding-right: 1.25rem;
    text-align: left;
    line-height: 1.3076923077;
  }
}
@media screen and (max-width: 660px) {
  .policy__item:nth-of-type(5) .policy__item-title {
    padding-left: 46vw;
  }
}
@media screen and (max-width: 480px) {
  .policy__item:nth-of-type(5) .policy__item-title {
    padding-left: 7.75rem;
  }
}
.policy__item:nth-of-type(5) .policy__item-title img {
  width: 26.8125rem;
  height: auto;
  position: absolute;
  top: -0.6875rem;
  left: -0.9375rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 429/171;
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(5) .policy__item-title img {
    max-width: 22rem;
    width: 100%;
    aspect-ratio: 352/194;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (max-width: 480px) {
  .policy__item:nth-of-type(5) .policy__item-title img {
    left: -0.875rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(5) .policy__item-title span {
    font-size: 0.9375rem;
  }
}
.policy__item:nth-of-type(5) .policy__item-description {
  padding: 0.75rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .policy__item:nth-of-type(5) .policy__item-description {
    padding: 4.875rem 1.875rem 0.75rem 1.875rem;
  }
}

.policy__tag {
  height: 1.875rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #132972;
  background-color: #b6d4e6;
  border-radius: 0.34375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .policy__tag {
    height: 1.6875rem;
    font-size: 0.9375rem;
  }
}

.policy__item-description {
  padding: 0.75rem 0.875rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #132972;
  line-height: 1.9444444444;
  text-align: justify;
  background-color: #ffef4c;
}
@media screen and (max-width: 767px) {
  .policy__item-description {
    padding: 0.75rem 1.875rem;
    font-size: 1.0625rem;
    line-height: 1.9411764706;
  }
}

.policy__item-title-wrap {
  height: 8.0625rem;
  display: grid;
  grid-template-columns: repeat(2, calc((100% - 0.1875rem) / 2));
  gap: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .policy__item-title-wrap {
    height: 8.75rem;
    background-color: #fff;
    border-bottom: 2px solid #f0383c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0 1.9375rem;
  }
}

.policy__conclusion {
  width: 100%;
  margin-top: 3.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .policy__conclusion {
    margin-top: 2.8125rem;
  }
}

.policy__strong-message {
  font-size: 3.4375rem;
  font-weight: 700;
  color: #132972;
}
@media screen and (max-width: 767px) {
  .policy__strong-message {
    font-size: 2.125rem;
    line-height: 1.2702702703;
  }
}
.policy__strong-message span {
  color: #f0383c;
}

.policy__link-btn {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .policy__link-btn {
    margin-top: 2.5rem;
  }
}

.policy__link {
  width: 17.0625rem;
  height: 4.1875rem;
  padding-left: 1.25rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #132972;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 0.6875rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .policy__link {
    font-size: 1rem;
    padding-left: 1.5625rem;
  }
}
.policy__link::before {
  content: "";
  width: 0.6875rem;
  height: 0.9375rem;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  right: 1.375rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .policy__link::before {
    right: 1.5rem;
  }
}

/* ===============================================
# profile
=============================================== */
.profile {
  padding: 10.125rem 0 7.9375rem 0;
}

@media screen and (max-width: 767px) {
  .profile__inner.inner {
    padding: 0 1.125rem;
    position: relative;
    z-index: 1;
  }
}

.profile__bg {
  padding-right: 5.8125rem;
  background-color: #f4f6f8;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50% + 0.75rem);
  border-radius: 0 0 3.75rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .profile__bg {
    padding-right: 0.75rem;
    z-index: -2;
  }
}

@media screen and (max-width: 767px) {
  .profile__wrap {
    position: relative;
    z-index: 2;
  }
}

.profile__img {
  max-width: 20.5rem;
  width: 100%;
  position: absolute;
  top: -6.5rem;
  right: -2.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .profile__img {
    max-width: 13.0625rem;
    right: 0;
  }
}
.profile__img img {
  height: auto;
}

.profile__title {
  max-width: 27.375rem;
  width: 100%;
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
}
@media screen and (max-width: 767px) {
  .profile__title {
    max-width: 4.5rem;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: translateX(-0.1875rem);
            transform: translateX(-0.1875rem);
    aspect-ratio: 72/331;
    z-index: -1;
  }
}
.profile__title img {
  height: auto;
}

.profile__copy {
  margin-top: -1rem;
  max-width: 27.1875rem;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .profile__copy {
    padding-top: 4rem;
    max-width: 17rem;
  }
}
.profile__copy img {
  height: auto;
  aspect-ratio: 435/47;
}
@media screen and (max-width: 767px) {
  .profile__copy img {
    aspect-ratio: 272/104;
  }
}

.profile__text {
  margin-top: 2rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #132972;
  line-height: 1.7333333333;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .profile__text {
    margin-top: 1.5rem;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .profile__scroll {
    overflow-x: auto;
    width: 100%;
  }
  .profile__scroll::-webkit-scrollbar {
    height: 0.1875rem;
  }
  .profile__scroll::-webkit-scrollbar-track {
    background: #cacaca;
  }
  .profile__scroll::-webkit-scrollbar-thumb {
    background: #f0383c;
    border-radius: 0.25rem;
  }
}

.profile__list {
  margin-top: 3.125rem;
  display: grid;
  grid-template-columns: repeat(3, calc((100% - 5rem) / 3));
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .profile__list {
    width: 50rem;
    grid-template-columns: repeat(3, calc((100% - 3.75rem) / 3));
    gap: 1.875rem;
  }
}

.profile__item-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f0383c;
}

.profile__item-description {
  margin-top: 0.9375rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #404040;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .profile__item-description {
    font-size: 0.875rem;
  }
}

.profile__link-btn-wrap {
  margin-top: 2.5625rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.125rem;
  -webkit-transform: translateY(2.875rem);
          transform: translateY(2.875rem);
}
@media screen and (max-width: 767px) {
  .profile__link-btn-wrap {
    margin-top: 1.125rem;
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.3125rem;
  }
}

.profile__link-manga {
  max-width: 33.75rem;
  width: 100%;
  margin-inline: auto;
  border: 0.125rem solid #f4f6f8;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .profile__link-manga {
    width: 18.3125rem;
  }
}
.profile__link-manga img {
  height: auto;
  aspect-ratio: 540/128;
}
@media screen and (max-width: 767px) {
  .profile__link-manga img {
    aspect-ratio: 293/226;
  }
}

.profile__link-btn {
  width: 21.875rem;
  height: 6.25rem;
  color: #f0383c;
  font-size: 1rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #ffe800;
  border-radius: 0.625rem;
  position: relative;
  border: 0.125rem solid #f4f6f8;
}
@media screen and (max-width: 767px) {
  .profile__link-btn {
    width: 15rem;
    height: 3.75rem;
  }
}
.profile__link-btn::before {
  content: "";
  width: 0.6875rem;
  height: 0.9375rem;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: 1.875rem;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

/* ===============================================
# gallery
=============================================== */
.gallery {
  overflow-x: hidden;
}

.gallery__swiper {
  position: relative;
  z-index: -1;
}

.gallery .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gallery__swiper .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.gallery__swiper .swiper-slide {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .gallery__swiper .swiper-slide {
    width: 11.8125rem;
  }
}

.gallery__swiper .swiper-slide img {
  aspect-ratio: 360/400;
  width: 100%;
}

/* ===============================================
# sns
=============================================== */
.sns {
  padding-top: 2.5rem;
  background-color: #ffe800;
}
@media screen and (max-width: 767px) {
  .sns {
    padding-top: 2.125rem;
  }
}

.sns__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .sns__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.sns__item:nth-of-type(1) {
  width: 40.2%;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(1) {
    width: 100%;
  }
}
.sns__item:nth-of-type(1) .sns__line-icon {
  max-width: 2.875rem;
  width: 100%;
  margin-inline: auto;
}
.sns__item:nth-of-type(1) .sns__line-icon img {
  height: auto;
}
.sns__item:nth-of-type(1) .sns__item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  color: #06c655;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(1) .sns__item-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0;
  }
}
.sns__item:nth-of-type(1) .sns__item-img {
  max-width: 7.1875rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(1) .sns__item-img {
    width: 5.125rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.sns__item:nth-of-type(1) .sns__item-img img {
  height: auto;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(1) .sns__item-content {
    display: contents;
  }
}
.sns__item:nth-of-type(1) .sns__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(1) .sns__item-title {
    width: 100%;
    margin-bottom: 0.9375rem;
    margin-top: 1rem;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    text-align: center;
  }
}
.sns__item:nth-of-type(1) .sns__item-text {
  margin-top: 0.6875rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(1) .sns__item-text {
    margin-left: 0.9375rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(1) .sns__item-link-wrap {
    width: 100%;
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
}
.sns__item:nth-of-type(1) .sns__item-link {
  width: 15rem;
  height: 3.125rem;
  padding-left: 1.0625rem;
  margin-top: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  background-color: #fff;
  border-radius: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(1) .sns__item-link {
    margin-top: 1.125rem;
    margin-inline: auto;
  }
}
.sns__item:nth-of-type(1) .sns__item-link::before {
  content: "";
  width: 0.375rem;
  height: 0.5625rem;
  color: #06c655;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  right: 1.25rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.sns__item:nth-of-type(2) {
  width: 41.2%;
  margin-left: 0.9375rem;
  padding: 0 0.9375rem;
  border-left: 0.125rem solid #fff;
  color: #f0383c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(2) {
    margin-top: 2.375rem;
    width: 100%;
    margin-left: 0;
    padding: 0;
    border-left: none;
  }
}
.sns__item:nth-of-type(2) .sns__item-wrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sns__item:nth-of-type(2) .sns__item-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(2) .sns__item-title-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
.sns__item:nth-of-type(2) .sns__item-img {
  max-width: 2.5rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.sns__item:nth-of-type(2) .sns__item-img img {
  height: auto;
}
.sns__item:nth-of-type(2) .sns__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.1666666667;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(2) .sns__item-title {
    margin-bottom: 1.375rem;
  }
}
.sns__item:nth-of-type(2) .sns__item-link-wrap {
  margin-top: auto;
}
.sns__item:nth-of-type(2) .sns__item-link-list {
  display: grid;
  grid-template-columns: repeat(2, calc((100% - 0.5rem) / 2));
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(2) .sns__item-link-list {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
  }
}
.sns__item:nth-of-type(2) .sns__item-link-title-01 {
  width: 8.1875rem;
  display: block;
  margin-inline: auto;
}
.sns__item:nth-of-type(2) .sns__item-link-title-02 {
  width: 8.875rem;
  display: block;
  margin-inline: auto;
}
.sns__item:nth-of-type(2) .sns__item-link-btn {
  padding-left: 0.5625rem;
  margin-top: 0.5625rem;
  width: 10.625rem;
  height: 3.125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(2) .sns__item-link-btn {
    margin-top: 0.375rem;
    width: 15rem;
    height: 2.625rem;
    margin-inline: auto;
    padding-left: 1.0625rem;
  }
}
.sns__item:nth-of-type(2) .sns__item-link-btn::before {
  content: "";
  width: 0.375rem;
  height: 0.5625rem;
  color: #f0383c;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(2) .sns__item-link-btn::before {
    right: 1.125rem;
  }
}

.sns__item:nth-of-type(3) {
  padding-top: 0.5625rem;
  padding-left: 0.9375rem;
  border-left: 0.125rem solid #fff;
  color: #ff8000;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(3) {
    width: 100%;
    padding-top: 2.1875rem;
    padding-left: 0;
    border-left: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sns__item:nth-of-type(3) .sns__item-title {
  max-width: 10.9375rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(3) .sns__item-title {
    max-width: 15rem;
  }
}
.sns__item:nth-of-type(3) .sns__item-title img {
  height: auto;
  aspect-ratio: 175/46;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(3) .sns__item-title img {
    aspect-ratio: 240/35;
  }
}
.sns__item:nth-of-type(3) .sns__item-link {
  margin-top: auto;
  padding-left: 0.5625rem;
  width: 10.625rem;
  height: 3.125rem;
  font-size: 0.9375rem;
  font-weight: 500;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(3) .sns__item-link {
    width: 15rem;
    margin-top: 0.5625rem;
    padding-left: 1.0625rem;
  }
}
.sns__item:nth-of-type(3) .sns__item-link::before {
  content: "";
  width: 0.375rem;
  height: 0.5625rem;
  color: #ff8000;
  background-color: currentColor;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  right: 0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .sns__item:nth-of-type(3) .sns__item-link::before {
    right: 1.125rem;
  }
}

.sns__icon-list {
  width: 25rem;
  margin-top: 2.25rem;
  margin-inline: auto;
  padding: 1rem 5rem 0 5rem;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 1.875rem 1.875rem 0 0;
  -webkit-transform: translateY(0.375rem);
          transform: translateY(0.375rem);
}
@media screen and (max-width: 767px) {
  .sns__icon-list {
    width: 17.5rem;
    padding-right: 0;
    padding-left: 0;
    gap: 1.25rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transform: translateY(0.4375rem);
            transform: translateY(0.4375rem);
  }
}

.sns__icon-item:nth-of-type(1) {
  max-width: 1.875rem;
}
@media screen and (max-width: 767px) {
  .sns__icon-item:nth-of-type(1) {
    max-width: 1.6875rem;
  }
}
.sns__icon-item:nth-of-type(2) {
  max-width: 2.5rem;
}
@media screen and (max-width: 767px) {
  .sns__icon-item:nth-of-type(2) {
    max-width: 2.25rem;
  }
}
.sns__icon-item:nth-of-type(3) {
  max-width: 2.375rem;
}
@media screen and (max-width: 767px) {
  .sns__icon-item:nth-of-type(3) {
    max-width: 2.125rem;
  }
}
.sns__icon-item:nth-of-type(4) {
  max-width: 2.25rem;
}

/* ===============================================
# footer
=============================================== */
.footer {
  padding: 2.1875rem 0 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 2.25rem 0 1.625rem 0;
  }
}

.footer__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .footer__list {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer__item {
  font-size: 0.75rem;
  font-weight: 400;
  color: #132972;
}

.footer__item:nth-of-type(1) {
  margin-bottom: 0.1875rem;
}
@media screen and (max-width: 767px) {
  .footer__item:nth-of-type(1) {
    margin-top: 1.375rem;
    margin-bottom: 0;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
    text-align: center;
  }
}

.footer__item:nth-of-type(2) {
  margin-left: 1.75rem;
}
@media screen and (max-width: 767px) {
  .footer__item:nth-of-type(2) {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-left: 0.625rem;
  }
}

.footer__item:nth-of-type(3) {
  margin-left: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .footer__item:nth-of-type(3) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.footer__item-description {
  margin-top: 0.9375rem;
  line-height: 1.5;
}

/* ===============================================
# page-top
=============================================== */
.page-top {
  position: fixed;
  bottom: 0.9375rem;
  right: 7.8125rem;
  z-index: 800;
  width: 3rem;
  height: 3rem;
}
@media screen and (max-width: 767px) {
  .page-top {
    bottom: 4.3125rem;
    right: 0.9375rem;
  }
}/*# sourceMappingURL=style.css.map */