@charset "UTF-8";
/* メディアクエリ
==================================== */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input,
button,
textarea,
select {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  color: inherit;
  font-size: 16px;
  font-family: inherit;
}

label {
  cursor: pointer;
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

main {
  overflow: hidden;
}

html {
  min-height: 100vh;
}

body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
  color: #222222;
  font-weight: 400;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
}

main {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  cursor: pointer;
  opacity: 0.7;
}

.inner {
  width: 100%;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (min-width: 768px) {
  html {
    font-size: calc(10 / 1100 * 100vw);
  }

  body {
    font-size: max(1.6rem, 14px);
  }

  .inner {
    max-width: 1040px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }

  .inner__mini {
    max-width: 1040px;
  }
}

@media (min-width: 768px) and (max-width: 959px) {
  .inner {
    padding: 0 4rem;
  }
}

@media screen and (min-width: 1100px) {
  html {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 10px;
  }
  
  body {
    font-size: 1.4rem;
  }
}

.breadcrumbs {
  margin-top: 1rem;
  text-align: left;
}

.breadcrumbs__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumbs .home {
  font-weight: 400;
  font-family: "Outfit", sans-serif;
}

.breadcrumbs a {
  margin-right: 0.5rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
}

.post {
  margin-left: 0.5rem;
}

.breadcrumbs .current-item {
  margin-left: 0.5rem;
  color: #0497E7;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
}

.breadcrumbs .breadcrumbs__arrow {
  display: inline-block;
  width: 8px;
  margin-top: 3px;
}

.date-year,
.taxonomy,
.post-works-archive {
  margin-left: 0.5rem;
}

.breadcrumbs__border {
  width: 2.2rem;
}

.section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}

.section__en {
  color: #17CC9D;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section__jp {
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  line-height: 3rem;
}

.section__jp span {
  position: relative;
  padding-right: 4rem;
  padding-left: 4rem;
}

.section__jp span::before,
.section__jp span::after {
  position: absolute;
  top: 50%;
  width: 3rem;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #222222;
  content: "";
}

.section__jp span::before {
  left: 0;
}

.section__jp span::after {
  right: 0;
}

.section__title-left {
  text-align: center;
}

/* ////// section title WHITE  ///// */
.section__title-white > .section__en {
  color: #ffffff;
}

.section__title-white > .section__jp {
  color: #ffffff;
}

.section__title-white > .section__jp span::before,
.section__title-white > .section__jp span::after {
  background: #ffffff;
}

.text {
  font-size: 1.4rem;
  line-height: 1.8;
}

.text__bold {
  font-weight: 700;
}

.text__center {
  text-align: center;
}

.text__attention {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  line-height: 2.1428571429;
  letter-spacing: 0.02em;
  text-align: center;
}

/* ///// brの表示・非表示 ////// */
.u-mobile {
  display: block;
}

.u-desktop {
  display: none;
} 

.pankuz__items {
  flex-wrap: wrap;
}

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

.pankuz {
  margin-top: 1rem;
  text-align: left;
}

.pankuz__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.pankuz .home {
  font-weight: 400;
  font-family: "Outfit", sans-serif;
}

.pankuz a {
  margin-right: 0.5rem;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
}

.post {
  margin-left: 0.5rem;
}

.pankuz .current-item {
  margin-left: 0.5rem;
  color: #00BC8B;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1;
}

.pankuz .pankuz__arrow {
  display: inline-block;
  width: 8px;
  margin-top: 3px;
}

.date-year,
.taxonomy,
.post-works-archive {
  margin-left: 0.5rem;
}

.pankuz__border {
  width: 2.2rem;
  padding-top: 0.5%;
}

@media screen and (min-width: 768px) {
  .pankuz {
    margin-top: 2.8rem;
  }

  .pankuz a {
    margin-right: 1.5rem;
  }

  .post {
    margin-left: 1.5rem;
  }

  .pankuz .current-item {
    margin-left: 1.5rem;
  }

}

.banner {
  z-index: 100;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.banner__head {
  background: #4CBCBC;
  color: #FFF;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.banner__container {
  max-width: 1040px;
  margin-inline: auto;
}

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

/* ブログカード シンプルデザイン*/
.card-link {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  background: #fff;
  -webkit-box-shadow: 0 8px 8px -6px rgba(0, 0, 0, 0.06);
          box-shadow: 0 8px 8px -6px rgba(0, 0, 0, 0.06);
  color: #555;
  font-weight: bold;
  text-decoration: none !important;
}

.blog-card-label-long {
  display: inline-block;
  z-index: 1;
  position: absolute;
  top: 10px;
  left: 10px;
  max-width: 120px;
  height: 25px;
  padding: 0 0.5rem;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  background-color: #f99f48;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 25px;
  text-align: center;
  -webkit-animation: animScale 3.5s ease-out;
          animation: animScale 3.5s ease-out;
}

.card-link .blogcard-text {
  display: block;
  display: grid;
  place-items: center;
  padding: 15px 13px;
  padding: 0.5rem 1.2rem 0.5rem 1.6rem;
  line-height: 1.6;
}

.longcard-link {
  min-height: 8rem;
  margin: 1em 0;
}

.blogcard-title {
  display: -webkit-box;
  color: #6f6f6f;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-link {
  display: inline-block;
  max-width: 310px;
  padding-top: 0.4rem;
  padding-left: 0.4rem;
}

.longcard-link {
  display: table;
  max-width: 100%;
}

.longcard-img,
.card-link.longcard-link .blogcard-content {
  display: table-cell;
  vertical-align: middle;
}

.longcard-img {
  position: relative;
  aspect-ratio: 80/80;
  width: 8rem;
  height: 8rem;
}

.longcard-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.p-not-found {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.p-not-found__text {
  font-size: 1.4rem;
}

.p-not-font__btn {
  margin-top: 2.9rem;
  text-align: center;
}

.p-not-font__btn a {
  display: inline-block;
  position: relative;
  width: 15rem;
  max-width: 100%;
  height: 4rem;
  background: #222222;
  color: #FFF;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 4rem;
  letter-spacing: 0.12em;
  text-align: center;
}

.p-not-font__btn a::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 5px;
  height: 5px;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: "";
}

.other {
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.other__items {
  display: grid;
  margin-top: 3rem;
  gap: 3rem;
}

.other__item a {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 1.5rem;
}

.other__title {
  position: relative;
  padding-left: 1.3em;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.5454545455;
  letter-spacing: 0.04em;
}

.other__title::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2.2rem;
  height: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../img/other_check.png) no-repeat;
  background-size: contain;
  content: "";
}

.other__text {
  margin-top: -1rem;
  font-size: 1.4rem;
  line-height: 1.8;
}

.otherInformation {
  padding-top: 5rem;
  padding-bottom: 6rem;
  background: #F8F8F8;
}

.otherInformation__head {
  position: relative;
  padding-bottom: 1rem;
  padding-left: 1.2em;
  border-bottom: 1px solid #F7771F;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.otherInformation__head::before {
  position: absolute;
  top: 35%;
  left: 0;
  width: 1.3rem;
  height: 1.3rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  background: #F7771F;
  content: "";
}

.otherInformation__text {
  margin-top: 2rem;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.otherInformation__items {
  display: grid;
  margin-top: 3rem;
  gap: 3.5rem;
}

.otherInformation__title {
  margin-top: 1rem;
  padding-left: 1em;
  border-left: 3px solid #00BC8B;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.otherInformation__item .otherInformation__text {
  margin-top: 1rem;
}

.page-numbers {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border: 1px solid #cccccc;
  border-radius: 100%;
  background: #FFF;
  color: #222222;
  font-weight: 700;
  font-size: 1.4rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.page-numbers.current {
  background: #00BC8B;
  color: #FFF;
}

.prev span,
.next span {
  position: relative;
}

.prev span::after,
.next span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #cccccc;
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.prev span::after {
  -webkit-clip-path: polygon(100% 0, 100% 100%, 0 50%);
          clip-path: polygon(100% 0, 100% 100%, 0 50%);
}

.next span::after {
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.p-privacy-policy {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.p-privacy-policy__text {
  color: #000;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.p-privacy__wrapper {
  margin-bottom: 5rem;
  color: #000;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7;
}

.p-privacy__wrapper p:not(:first-child) {
  margin-top: 3rem;
}

.privacy__wrapper ol {
  padding-left: 2rem;
  list-style: decimal;
}


.p-recruit__sideScroll {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  overflow: hidden;
}

.p-recruit__sideScrollImg {
  z-index: 9;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 120rem;
  -webkit-animation: loopSlide 28s infinite linear;
          animation: loopSlide 28s infinite linear;
}

.p-recruit__sideScrollImg::before {
  padding-top: 5.2933392148%;
}

@-webkit-keyframes loopSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes loopSlide {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-related-post {
  padding-top: 4rem;
  padding-bottom: 4rem;
  font-family: "Noto Sans JP", sans-serif;
}

.p-related-post__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2rem;
}

.p-related-post__head span {
  margin-left: 1em;
  color: gray;
  font-size: 1.4rem;
}

.p-related-post__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
  gap: 1rem;
}

.p-related-post__item {
  background: #FFF;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
}

.p-related-post__content {
  position: relative;
  height: 10rem;
  padding: 1rem;
}

.p-related-post__title {
  font-weight: 700;
}

.p-related-post__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 0 1em;
}

.p-related-post__category {
  color: #0C7BCC;
}

.p-related-post__time {
  color: gray;
}

.p-single {
  padding-top: 2rem;
  color: #222222;
  font-family: -apple-system, "system-ui", Roboto, arial, helvetica, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
}

.c-fvSub__single {
  margin-top: 7.2rem;
}

.splide__arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin-inline: auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.splide__arrow {
  background: transparent;
  opacity: 1;
}

.splide__arrow--prev,
.splide__arrow--next {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
}

.splide__arrow--prev {
  left: 3%;
}

.splide__arrow--next {
  right: 3%;
}

.splide__arrow--prev::before,
.splide__arrow--next::after {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFF;
  content: "";
}

.splide__arrow--prev::before {
  background: url(../img/arrow_prev.png) no-repeat center center/contain;
}

.splide__arrow--next::after {
  background: url(../img/arrow_next.png) no-repeat center center/contain;
}

.top-btn {
  z-index: 20;
  position: fixed;
  right: 1rem;
  bottom: 12rem;
  width: 2.2rem;
  gap: 1.5rem;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/*==================================================
common_footer_Banner
===================================*/
.common_footer_Banner {
  padding: 4rem 0;
  background-color: #FAFAFA;
}

/*==================================================
common_footer_Banner END
===================================*/

@media screen and (min-width: 768px) {
  .btn a {
    width: 36.3rem;
    min-height: 6.6rem;
    font-size: 1.7rem;
  }

  .btn a::after {
    right: 4.2rem;
    width: 4rem;
  }

  .breadcrumbs {
    margin-top: 2.8rem;
  }

  .breadcrumbs a {
    margin-right: 1.5rem;
    font-size: 1.6rem;
  }

  .post {
    margin-left: 1.5rem;
  }

  .breadcrumbs .current-item {
    margin-left: 1.5rem;
  }

  .date-year,
  .taxonomy,
  .post-works-archive {
    margin-left: 1.5rem;
  }

  .section {
    padding-top: 22rem;
    padding-bottom: 22rem;
  }

  .section__en {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .section__jp {
    font-size: 2.6rem;
  }

  .section__jp span {
    padding-right: 8rem;
    padding-left: 8rem;
  }

  .section__jp span::before,
  .section__jp span::after {
    width: 6rem;
  }

  .section__title-left {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    text-align: left;
  }

  .text {
    font-size: 1.6rem;
    line-height: 2.25;
  }

  .text__attention {
    margin-top: 2.2rem;
    font-size: 1.4rem;
  }

  .banner__head {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
  }

  .banner__container {
    height: 7.2rem;
    margin-top: 0.2em;
    margin-bottom: 0.2em;
    padding-right: 6.2rem;
    padding-left: 6.2rem;
    background: #FFF;
  }

  .banner__items {
    gap: 1.4rem;
  }

  .banner__item:nth-child(1) {
    margin-top: -0.78rem;
  }

  .card-link .blogcard-text {
    padding: 1.5rem 2.4rem;
  }

  .blogcard-title {
    font-size: 1.5rem;
    line-height: 1.5333333333;
  }

  .p-not-found {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }

  .p-not-found__text {
    font-size: 2.4rem;
  }

  .p-not-font__btn {
    margin-top: 4.9rem;
  }

  .p-not-font__btn a {
    width: 21.5rem;
    height: 4.4rem;
    line-height: 4.4rem;
  }

  .p-not-font__btn a::after {
    right: 35px;
  }

  .other {
    padding-top: 9.8rem;
    padding-bottom: 8.1rem;
  }

  .other__items {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3.5rem;
    gap: 5rem 2rem;
  }

  .other__title {
    font-size: 2.2rem;
  }

  .other__title::before {
    width: 2.5rem;
    height: 2rem;
  }

  .other__text {
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.06em;
  }

  .otherInformation {
    padding-top: 10rem;
    padding-bottom: 9rem;
  }

  .otherInformation__head {
    font-size: 2rem;
  }

  .otherInformation__text {
    line-height: 2.2857142857;
  }

  .otherInformation__items {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 4.6rem;
  }

  .otherInformation__item .otherInformation__text {
    line-height: 2;
  }

  .pagination .nav-links {
    margin-top: 7.2rem;
    gap: 1.9rem;
  }

  .page-numbers {
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
  }

  .p-privacy-policy {
    padding-top: 8rem;
    padding-bottom: 9rem;
  }

  .p-privacy-policy__text {
    font-size: 1.6rem;
    line-height: 1.75;
  }

  .p-privacy__wrapper {
    font-size: 1.6rem;
    line-height: 2;
  }

  .p-privacy__wrapper p:not(:first-child) {
    margin-top: 4rem;
  }

  .p-recruit__sideScroll {
    -webkit-column-gap: min(2.36vw, 3.4rem);
       -moz-column-gap: min(2.36vw, 3.4rem);
            column-gap: min(2.36vw, 3.4rem);
    margin-top: -8rem;
  }

  .p-recruit__sideScrollImg {
    width: 226.7rem;
    width: 187.8rem;
    -webkit-animation: loopSlide 40s infinite linear;
            animation: loopSlide 40s infinite linear;
  }

  .p-related-post {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .p-related-post__head {
    font-size: 3rem;
  }

  .p-related-post__head span {
    font-size: 1.8rem;
  }

  .p-related-post__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .c-fvSub__single {
    margin-top: 11.4rem;
  }

  .p-single__title {
    font-size: 3rem;
  }

  .p-single__category-link {
    width: 10.4rem;
    height: 2.9rem;
    font-size: 1.2rem;
    line-height: 2.9rem;
  }

  .p-single__time span {
    font-size: 1.5rem;
  }

  .p-single__name span {
    padding-left: 2rem;
    font-size: 1.4rem;
  }

  .p-single__image {
    margin-top: 8.7rem;
  }

  .p-single__text {
    margin-top: 5rem;
    font-size: 1.5rem;
  }

  .p-single__content h2 {
    padding: 1rem 2.4rem;
    font-size: 2.4rem;
  }

  .p-single__content h3 {
    font-size: 2rem;
  }

  .p-single__btn {
    margin-top: 4.9rem;
  }

  .p-single__btn a {
    width: 21.5rem;
    height: 4.4rem;
    line-height: 4.4rem;
  }

  .p-single__btn a::after {
    right: 35px;
  }

  .p-single .saboxplugin-wrap .saboxplugin-authorname {
    margin: 10px 0 0 20px;
  }

  .p-single .saboxplugin-wrap .saboxplugin-gravatar {
    padding: 0 12px 12px 12px;
  }

  .p-single .wp-block-quote {
    padding: 0.4rem 2.4rem 2rem;
  }

  .p-single cite {
    padding-left: 63px;
  }

  .p-single .annotation {
    padding: 2.4rem;
  }

  .splide__arrow--prev,
  .splide__arrow--next {
    width: 7rem;
    height: 7rem;
  }

  .splide__arrow--prev {
    left: 11%;
  }

  .splide__arrow--next {
    right: 11%;
  }

  .top-btn {
    right: 2.7rem;
    width: 2.94rem;
  }
}


@media screen and (max-width: 767px) {

  .your-about,
  .your-kind {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }

  .your-about-checked input[type=radio]::after {
    top: 56%;
    left: 41%;
  }

  .your-houhou-checked input[type=radio]::after {
    top: 56%;
    left: 41%;
  }

  .your-kind-checked input[type=radio]::after {
    top: 56%;
    left: 41%;
  }

  input[type=button] {
    width: 100%;
    padding-top: 17px;
    padding-bottom: 15px;
  }

  .confirm__itemHead {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 41.795%;
    padding-top: 32.5px;
    padding-top: 0;
    padding-bottom: 0;
    padding-bottom: 0;
    padding-left: 20px;
    font-size: 14px;
    letter-spacing: 0.04em;
  }

  .confirm__itemContent {
    /* letter-spacing: 0.06em; */
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    box-sizing: border-box;
    width: 58.21%;
    padding-top: 21.5px;
    padding-right: 14px;
    padding-bottom: 13.5px;
    padding-left: 14px;
    border-top: 1px solid #c6c6c6;
    border-bottom: 1px solid #c6c6c6;
    background-color: #f5f5f5;
    color: #222;
    font-size: 14px;
    line-height: 1.714;
    letter-spacing: 0.04em;
  }

  .confirm__item--content .confirm__itemHead {
    padding-top: 13.5px;
    padding-left: 20px;
  }

  .confirm__item--content .confirm__itemContent {
    margin-top: 0px;
    padding-top: 29px;
    padding-right: 18px;
    padding-bottom: 22px;
    padding-left: 16px;
  }

  .confirm__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
    gap: 0;
  }

  .thanks__head {
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 15px;
    border-bottom: 1px solid #bcbcbc;
    color: #000;
    font-weight: bold;
    font-size: 20px;
    line-height: 1.8;
    font-family: "Noto Sans JP";
    letter-spacing: 0.08em;
  }

  .thanks__buttonWrapper {
    margin-top: 34px;
    text-align: center;
  }

  input[type=button] {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
    font-size: 12px !important;
  }

  .thanks__button {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
    font-size: 12px !important;
  }
}
/*# sourceMappingURL=map/styles.css.map */