@charset "UTF-8";
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

html {
  font-size: 100%;
}

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

@media (min-width: 1562px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}

@media screen and (min-width: 768px) {

  a,
  button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }

  a:hover,
  button:hover {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.9" /><feFuncG type="linear" slope="0.9" /><feFuncB type="linear" slope="0.9" /></feComponentTransfer></filter></svg>#filter');
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
    cursor: pointer;
  }
}

/* fadeIn
--------------------------*/
.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1.5s ease;
  transition: opacity 1.5s ease;
  will-change: opacity;
}

.fade-up {
  opacity: 0;
  -webkit-transform: translateY(1.875rem);
  transform: translateY(1.875rem);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-in.fade-in-active {
  opacity: 1;
}

.fade-up.fade-in-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.fade-left,
.fade-right {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
  will-change: opacity, transform;
}

.fade-left {
  -webkit-transform: translateX(-1.875rem);
  transform: translateX(-1.875rem);
}

.fade-right {
  -webkit-transform: translateX(1.875rem);
  transform: translateX(1.875rem);
}

.fade-left.fade-in-active,
.fade-right.fade-in-active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/* 遅延フェードイン用（delayだけ指定する） */
.fade-up01.fade-in-active {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}

.fade-up02.fade-in-active {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}

.fade-up03.fade-in-active {
  -webkit-transition-delay: 0.9s;
  transition-delay: 0.9s;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol,
li {
  list-style: none;
  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;
}

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

a {
  text-decoration: none;
  color: inherit;
}

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

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

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll 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;
  }
}

.l-content {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .l-content {
    margin-top: 5rem;
  }
}

/* spデザイン
--------------------------*/
@media screen and (max-width: 767px) {
  .l-drawer {
    height: 100vh;
    pointer-events: none;
  }

  .l-drawer-menu {
    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;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
    height: 100%;
    background-color: #792E57;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    z-index: 9050;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .l-drawer-menu li a {
    font-family: "A-OTF Ryumin Pr6N", sans-serif;
    font-weight: 450;
    font-size: 1.25rem;
    color: #fff;
    line-height: 1.75rem;
    letter-spacing: 0.0125rem;
  }

  .l-drawer-hamburger {
    position: fixed;
    top: 1.375rem;
    right: 1.25rem;
    width: 1.375rem;
    height: 1rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    pointer-events: initial;
    z-index: 9100;
  }

  .l-drawer-hamburger span {
    display: block;
    width: 100%;
    height: 0.125rem;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .l-drawer-hamburger span+span {
    margin-top: 0.375rem;
  }

  /* is-open
  --------------------------*/
  .l-drawer.is-open {
    pointer-events: initial;
  }

  .l-drawer.is-open .l-drawer-menu {
    opacity: 1;
    pointer-events: initial;
  }

  .l-drawer.is-open .l-drawer-hamburger span:nth-child(1) {
    -webkit-transform: translateY(0.5rem) rotate(45deg);
    transform: translateY(0.5rem) rotate(45deg);
  }

  .l-drawer.is-open .l-drawer-hamburger span:nth-child(2) {
    opacity: 0;
  }

  .l-drawer.is-open .l-drawer-hamburger span:nth-child(3) {
    -webkit-transform: translateY(-0.5rem) rotate(-45deg);
    transform: translateY(-0.5rem) rotate(-45deg);
  }
}

.l-footer {
  margin-top: 3.75rem;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  background-color: #792E57;
}

@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: 7.5rem;
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.l-footer-copy {
  font-size: 0.875rem;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l-footer-copy {
    font-size: 1rem;
  }
}

/* spデザイン
--------------------------*/
@media screen and (max-width: 767px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3.75rem;
    background-color: #792E57;
    z-index: 9000;
  }
}

/* pcデザイン
--------------------------*/
@media screen and (min-width: 768px) {
  .l-header-top {
    padding-top: 1.25rem;
    padding-bottom: 0.625rem;
    background-color: #fff;
    text-align: center;
  }

  .l-header-top a {
    display: inline-block;
    width: 21.75rem;
  }

  .l-header-menu {
    padding-top: 1.75rem;
    padding-bottom: 1.5rem;
    background-color: #792E57;
  }

  .l-header-menu ul {
    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;
  }

  .l-header-menu ul li {
    position: relative;
  }

  .l-header-menu ul li:not(:first-child)::before {
    position: absolute;
    content: "";
    width: 0.0625rem;
    height: 1.25rem;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-color: #fff;
  }

  .l-header-menu ul li a {
    font-family: "A-OTF Ryumin Pr6N", sans-serif;
    font-weight: 450;
    font-size: 1.25rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    color: #fff;
    line-height: 1.75rem;
    letter-spacing: 0.0125rem;
  }

  .l-header-menu ul li:first-child a {
    padding-left: 0;
  }

  .l-header-menu ul li:last-child a {
    padding-right: 0;
  }
}

.l-inner {
  max-width: 31.25rem;
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1562px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .l-main {
    margin-top: 3.75rem;
  }
}

.l-section {
  padding-top: 3.75rem;
}

@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 10rem;
  }
}

.c-btn {
  text-align: center;
}

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

.c-btn a {
  position: relative;
  display: inline-block;
  width: 21.25rem;
  font-weight: 600;
  font-family: "A-OTF Ryumin Pr6N", sans-serif;
  font-size: 1.375rem;
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
  color: #333;
  background-color: #F5E7A9;
  -webkit-box-shadow: 0.25rem 0.25rem 0.75rem 0 rgba(0, 0, 0, .12);
  box-shadow: 0.25rem 0.25rem 0.75rem 0 rgba(0, 0, 0, .12);
  line-height: 2.2rem;
  letter-spacing: 0.01375rem;
  border-radius: 6.25rem;
  text-align: center;
}

.c-btn a::after {
  position: absolute;
  content: "";
  width: 1rem;
  height: 1.125rem;
  top: 50%;
  right: 1.875rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_arrow-black.webp) no-repeat center/contain;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.c-btn a:hover::after {
  right: 1.25rem;
}

.c-title {
  text-align: center;
}

.c-title p {
  position: relative;
  display: inline-block;
  font-weight: 450;
  font-family: "A-OTF Ryumin Pr6N", sans-serif;
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  color: #2A2A2A;
  line-height: 1.5rem;
  letter-spacing: 0.015rem;
}

@media screen and (min-width: 768px) {
  .c-title p {
    font-size: 3.5rem;
    padding-bottom: 0.75rem;
    line-height: 3.5rem;
    letter-spacing: 0.035rem;
  }
}

.c-title p::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.0625rem;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #792E57;
}

@media screen and (min-width: 768px) {
  .c-title p::after {
    height: 0.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-about {
    padding-top: 7.5rem;
  }
}

.p-about-inner {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 768px) {
  .p-about-inner {
    max-width: calc(61.25rem + 50px) !important;
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 767px) {
  .p-about .l-content {
    margin-top: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-about img {
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.p-about-thought {
  margin-top: 0.375rem;
  padding: 1.5rem 1.5625rem;
}

@media screen and (min-width: 768px) {
  .p-about-thought {
    margin-top: 3.75rem;
    padding: 0;
  }
}

.p-about-thought__phrase {
  font-family: "A-OTF Ryumin Pr6N", sans-serif;
  font-size: 1.125rem;
  color: #2A2A2A;
  line-height: 1.75rem;
  letter-spacing: 0.01125rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-about-thought__phrase {
    font-weight: 450;
    font-size: 2.25rem;
    margin-top: 3.75rem;
    line-height: 3.6rem;
    letter-spacing: 0.0225rem;
  }
}

.p-about-thought__phrase span {
  color: #792E57;
}

.p-about-thought__text {
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-about-thought__text {
    margin-top: 3.75rem;
  }
}

.p-about-thought__text p+p {
  margin-top: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-about-thought__text p+p {
    margin-top: 3.75rem;
  }
}

.p-about-thought__text p span {
  display: block;
  font-size: 1.125rem;
  line-height: 1.75rem;
  letter-spacing: 0.01125rem;
  text-align: center;
}

.p-about-thought__text p span:nth-child(1) {
  font-family: "A-OTF Ryumin Pr6N", sans-serif;
  font-weight: 450;
  color: #2A2A2A;
}

@media screen and (min-width: 768px) {
  .p-about-thought__text p span:nth-child(1) {
    font-size: 2.25rem;
    line-height: 3.6rem;
    letter-spacing: 0.0225rem;
  }
}

.p-about-thought__text p span:nth-child(2) {
  font-weight: 500;
  font-size: 1.125rem;
  margin-top: 0.375rem;
  color: #000;
}

@media screen and (min-width: 768px) {
  .p-about-thought__text p span:nth-child(2) {
    font-size: 1.75rem;
    margin-top: 0.75rem;
    line-height: 2.8125rem;
    letter-spacing: 0.0175rem;
  }
}

.p-contact {
  padding-top: 5rem;
}

@media screen and (min-width: 768px) {
  .p-contact {
    padding-top: 12rem;
  }
}

@media screen and (min-width: 768px) {
  .p-greeting-inner {
    max-width: calc(65.1875rem + 50px) !important;
  }
}

.p-greeting-box {
  position: relative;
}

.p-greeting-box img {
  margin-right: 1.625rem;
  padding-bottom: 1.25rem;
}

@media screen and (min-width: 768px) {
  .p-greeting-box img {
    width: 46.25rem;
    margin-right: 18.9375rem;
    padding-bottom: 2.8125rem;
  }
}

.p-greeting-name {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #792E57;
}

@media screen and (min-width: 768px) {
  .p-greeting-name {
    padding: 2.5rem;
  }
}

.p-greeting-name p {
  font-family: "A-OTF Ryumin Pr6N", sans-serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.p-greeting-name p:nth-child(1) {
  font-size: 0.635125rem;
  line-height: 0.8891875rem;
  letter-spacing: 0.006375rem;
}

@media screen and (min-width: 768px) {
  .p-greeting-name p:nth-child(1) {
    font-size: 1.5rem;
    line-height: 2.1rem;
    letter-spacing: 0.015rem;
  }
}

.p-greeting-name p:nth-child(2) {
  font-size: 1.25rem;
  margin-top: 0.4375rem;
  line-height: 1.875rem;
  letter-spacing: 0.0125rem;
}

@media screen and (min-width: 768px) {
  .p-greeting-name p:nth-child(2) {
    font-size: 3rem;
    margin-top: 0.75rem;
    line-height: 4.2rem;
    letter-spacing: 0.03rem;
  }
}

.p-greeting-text {
  font-weight: 400;
  font-size: 1rem;
  margin-top: 1.875rem;
  line-height: 1.6rem;
  letter-spacing: 0.01rem;
}

@media screen and (min-width: 768px) {
  .p-greeting-text {
    font-weight: 500;
    font-size: 1.125rem;
    margin-top: 5rem;
    margin-left: 3.5625rem;
    margin-right: 3.5625rem;
    line-height: 2.025rem;
    letter-spacing: 0.01125rem;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .p-greeting .c-btn {
    margin-top: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-media-inner {
    max-width: calc(90rem + 50px) !important;
  }
}

@media screen and (min-width: 768px) {
  .p-media-top {
    max-width: 64.6875rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-media-top__text {
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.575rem;
  letter-spacing: 0.01125rem;
}

@media screen and (min-width: 768px) {
  .p-media-top__text {
    font-size: 1.875rem;
    line-height: 3.375rem;
    letter-spacing: 0.01875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-media-top__flex {
    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;
    gap: 2.9375rem;
  }
}

.p-media-top__img img {
  width: 11.125rem;
  margin-top: 1.75rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .p-media-top__img img {
    width: 22.875rem;
    margin-top: 0;
    margin-left: 0;
    margin-left: initial;
    margin-right: 0;
    margin-right: initial;
  }
}

@media screen and (min-width: 768px) {
  .p-media-top__right {
    width: calc(100% - 25.8125rem);
  }
}

.p-media-top__text span {
  font-size: 0.875rem;
  letter-spacing: 0.00875rem;
}

@media screen and (min-width: 768px) {
  .p-media-top__text span {
    font-size: 1rem;
    letter-spacing: 0.01rem;
  }
}

.p-media-top__subtext {
  font-weight: 500;
  font-size: 1rem;
  margin-top: 1.25rem;
  margin-left: 1.125rem;
  margin-right: 1.125rem;
  line-height: 1.4rem;
  letter-spacing: 0.01rem;
}

@media screen and (min-width: 768px) {
  .p-media-top__subtext {
    font-size: 1.5rem;
    margin-top: 4.6875rem;
    margin-left: 0;
    margin-right: 0;
    line-height: 2.7rem;
    letter-spacing: 0.015rem;
  }
}

@media screen and (min-width: 768px) {
  .p-media .c-btn {
    margin-top: 4rem;
  }
}

.p-media-sponsor {
  margin-top: 3.3125rem;
}

@media screen and (min-width: 768px) {
  .p-media-sponsor {
    margin-top: 2.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news-inner {
    max-width: calc(64rem + 50px) !important;
  }
}

@media screen and (min-width: 768px) {
  .p-news .l-content {
    margin-top: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news-list {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
  }
}

.p-news-list a {
  position: relative;
  display: block;
  padding-top: 2.5rem;
  padding-right: 2.8125rem;
  padding-bottom: 1rem;
  background-color: #fff;
  border-bottom: 0.125rem dashed #792E57;
}

@media screen and (min-width: 768px) {
  .p-news-list a {
    padding: 2.5rem 1.25rem 1.25rem 1.25rem;
  }
}

.p-news-list a::after {
  position: absolute;
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/icon_arrow-brown.webp) no-repeat center/contain;
}

@media screen and (min-width: 768px) {
  .p-news-list a::after {
    right: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-news-list:first-child a {
    padding-top: 0;
  }
}

.p-news-list h3 {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6rem;
  letter-spacing: 0.01rem;
}

@media screen and (min-width: 768px) {
  .p-news-list h3 {
    font-size: 1.25rem;
    line-height: 2.25rem;
    letter-spacing: 0.0125rem;
  }
}

.p-news-banner {
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  .p-news-banner {
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-overview {
    padding-top: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-overview-inner {
    max-width: calc(62.875rem + 50px) !important;
  }
}

@media screen and (min-width: 768px) {
  .p-overview-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 1.25rem;
    padding-left: 1.25rem;
    border-bottom: 0.125rem dashed #792E57;
  }
}

.p-overview-list+.p-overview-list {
  margin-top: 1.75rem;
}

@media screen and (min-width: 768px) {
  .p-overview-list+.p-overview-list {
    margin-top: 2.5rem;
  }
}

.p-overview-list dt,
.p-overview-list dd {
  font-size: 1rem;
  letter-spacing: 0.01rem;
}

@media screen and (min-width: 768px) {

  .p-overview-list dt,
  .p-overview-list dd {
    font-size: 1.25rem;
    line-height: 2.25rem;
    letter-spacing: 0.0125rem;
  }
}

.p-overview-list dt {
  font-weight: 500;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  color: #fff;
  background-color: #792E57;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-overview-list dt {
    width: 24.25rem;
    padding-top: 0;
    padding-bottom: 0;
    color: #000;
    background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
    background: initial;
    text-align: left;
  }
}

.p-overview-list dd {
  font-weight: 400;
  margin-top: 1rem;
  margin-left: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-overview-list dd {
    line-height: 1.8rem;
  }
}

@media screen and (min-width: 768px) {
  .p-overview-list dd {
    width: calc(100% - 24.25rem);
    font-size: 1.25rem;
    margin-top: 0;
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-service-inner {
    max-width: calc(47.6875rem + 50px) !important;
  }
}

@media screen and (min-width: 768px) {
  .p-service .l-content {
    margin-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-service-box {
    margin-left: 5.3125rem;
    margin-right: 5.3125rem;
  }
}

.p-service-box p {
  font-weight: 700;
  font-family: "A-OTF Ryumin Pr6N", sans-serif;
  font-size: 0.8644375rem;
  background-color: #792E57;
  padding: 0.625rem 1.375rem;
  color: #fff;
  line-height: 1.2101875rem;
  letter-spacing: 0.008625rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .p-service-box p {
    font-size: 1.5rem;
    padding: 1rem 2.5rem;
    line-height: 2.09375rem;
    letter-spacing: 0.015rem;
  }
}

.p-service-text {
  font-weight: 500;
  font-size: 1rem;
  margin-top: 1.25rem;
  line-height: 1.6rem;
  letter-spacing: 0.01rem;
}

@media screen and (min-width: 768px) {
  .p-service-text {
    font-size: 1.25rem;
    margin-top: 2.5rem;
    line-height: 2.25rem;
    letter-spacing: 0.0125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-sns-inner {
    max-width: calc(80rem + 50px) !important;
  }
}

.p-sns ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

@media screen and (min-width: 768px) {
  .p-sns ul {
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-voice-inner {
    max-width: calc(90.5rem + 50px) !important;
  }
}

.p-voice-lists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.75rem;
}

@media screen and (min-width: 768px) {
  .p-voice-lists {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.p-voice-list a {
  display: block;
}

.p-voice-list__img {
  overflow: hidden;
}

.p-voice-list__img img {
  height: auto;
  aspect-ratio: 455/295;
  object-fit: cover;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.p-voice-list a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-voice-list h3 {
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 1.25rem;
  line-height: 1.8rem;
  letter-spacing: 0.01125rem;
}

@media screen and (min-width: 768px) {
  .p-voice-list h3 {
    font-size: 1.5rem;
    margin-top: 1.875rem;
    line-height: 2.4rem;
    letter-spacing: 0.015rem;
  }
}

@media screen and (min-width: 768px) {
  .p-voice .c-btn {
    margin-top: 5rem;
  }
}

.u-desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

/*# sourceMappingURL=styles.css.map */