@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  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;
}

/* 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;
}

/* 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 {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@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-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #313131;
}

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

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

input[type=checkbox] {
  margin: 0;
  padding: 0;
  border: none;
  border-radius: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.l-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.c-btn {
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  padding: 0.625rem 1.25rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}

.c-btn:hover {
  background-color: #0056b3;
}

.c-title {
  font-size: 1.5rem;
  color: green;
}
@media screen and (max-width: 1440px) {
  .c-title {
    color: blue;
  }
}
@media screen and (max-width: 999px) {
  .c-title {
    color: red;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    color: black;
  }
}

.p-company {
  padding: 5rem 0 1.875rem;
  background-color: #EDEDED;
}
@media screen and (max-width: 767px) {
  .p-company {
    padding: 1.25rem 0;
  }
}

.p-company__inner {
  max-width: 60rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-company__inner {
    padding: 0 15px;
  }
}

.p-company__title {
  max-width: 17rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-company__title {
    max-width: 8.4375rem;
  }
}

.p-company__wrap {
  margin-top: 3.125rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-company__wrap {
    margin-top: 0.875rem;
    flex-direction: column-reverse;
    gap: 0.875rem;
  }
}

.p-company__wrap-img {
  width: 46.9%;
}
@media screen and (max-width: 767px) {
  .p-company__wrap-img {
    width: 100%;
    display: flex;
    gap: 0.25rem;
  }
}

@media screen and (max-width: 767px) {
  .p-company__wrap-img .pc{
    display: none;
  }
}

@media screen and (min-width: 767px) {
  .p-company__wrap-img .sp{
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .img00 {
    /* width: 100%; */
  }
}

.img00 img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img00 img {
    aspect-ratio: 100/110;
  }
}

.img01 {
  margin-top: 2.5rem;
}

@media screen and (max-width: 767px) {
  .img01 {
    width: 100%;
    margin-top: 0px;
  }
}

.img01 img {
  width: 100%;
  aspect-ratio: 450/337;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .img01 img {
    width: 100%;
    aspect-ratio: 147/110;
    padding-bottom: 0.25rem;
  }
}

.img02 {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .img02 {
    margin-top: 0;
    width: 100%;
  }
}

.img02 img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .img02 img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}

@media screen and (max-width: 767px) {
  .right-images {
      display: flex;
      flex-direction: column;
    }
  }

.p-company__info {
  width: 48%;
}
@media screen and (max-width: 767px) {
  .p-company__info {
    width: 100%;
  }
}

.p-company__info dl:not(:first-of-type) {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__info dl:not(:first-of-type) {
    margin-top: 1.6875rem;
  }
}

.p-company__info dt {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 1.375rem;
  line-height: 1.5454545455;
}
@media screen and (max-width: 767px) {
  .p-company__info dt {
    font-size: 1rem;
    line-height: 2.125;
  }
}

.p-company__info dd {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.25rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .p-company__info dd {
    font-size: 1rem;
    line-height: 1.25;
  }
}

.p-company__info dd p {
  font-size: 1.0rem;
}

@media screen and (max-width: 767px) {
    .p-company__info dd p  {
        font-size: 0.8rem;
    }
}


@media screen and (max-width: 767px) {
  .p-company__info dl:nth-of-type(7) dd {
    font-size: 0.9375rem;
  }
}

.p-contact {
  padding: 8.5625rem 0 10.4375rem;
  background-image: url(../../shakuchiken/images/top/contact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding: 3.375rem 0 4.75rem;
  }
}

.p-contact__inner {
  max-width: 65.625rem;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    padding: 0 0.625rem;
  }
}

.p-contact__wrap {
  padding: 2.3125rem 2.875rem;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(6.5px);
  -webkit-backdrop-filter: blur(6.5px);
}
@media screen and (max-width: 767px) {
  .p-contact__wrap {
    padding: 1.25rem 0.625rem;
  }
}

.p-contact__title {
  max-width: 24.6875rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    max-width: 12.5rem;
  }
}

.p-form {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-form {
    margin-top: 1.5rem;
  }
}

.p-form__item:not(:first-of-type) {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-form__item:not(:first-of-type) {
    margin-top: 1.125rem;
  }
}

.p-form__labels {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-form__labels {
    flex-direction: column;
    gap: 0.1875rem;
  }
}

.p-form__label {
  width: 20%;
}
@media screen and (max-width: 767px) {
  .p-form__label {
    width: 100%;
  }
}

.p-form__label-text {
  padding: 0.65625rem 0;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-form__label-text {
    padding: 0;
    font-size: 0.875rem;
    line-height: 1.4285714286;
    gap: 0.5625rem;
  }
}

.p-form__label-text span {
  display: inline-block;
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.1538461538;
  padding: 0.1875rem 0.625rem;
  color: #fff;
  background-color: #E10100;
}
@media screen and (max-width: 767px) {
  .p-form__label-text span {
    padding: 0.21875rem 0.5625rem;
    font-size: 0.6875rem;
    line-height: 1.1818181818;
  }
}

.p-form__input {
  width: 77.1%;
}
@media screen and (max-width: 767px) {
  .p-form__input {
    width: 100%;
  }
}

.p-form__input-text,
.p-form__textarea01,
.p-form__textarea02 {
  padding: 0.625rem;
  width: 100%;
  background-color: #EDEDED;
  border: none;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.1;
}
@media screen and (max-width: 767px) {
  .p-form__input-text,
  .p-form__textarea01,
  .p-form__textarea02 {
    padding: 0.5rem 0.3125rem;
    font-size: 1rem;
    line-height: 1.1875;
  }
}

.p-form__textarea01 {
  height: 8.625rem;
}
@media screen and (max-width: 767px) {
  .p-form__textarea01 {
    height: 5.125rem;
    font-size: 0.875rem;
  }
}

.p-form__textarea02 {
  height: 18.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__textarea02 {
    height: 9.625rem;
    font-size: 0.875rem;
  }
}

.p-form__input-text::-moz-placeholder, .p-form__textarea01::-moz-placeholder, .p-form__textarea02::-moz-placeholder {
  color: #C3C3C3;
}

.p-form__input-text::placeholder,
.p-form__textarea01::placeholder,
.p-form__textarea02::placeholder {
  color: #C3C3C3;
}

.p-form__check {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-form__check {
    margin-top: 1.125rem;
  }
}

.p-form__check-text {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 3.375;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__check-text {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
}

.p-form__check-text a {
  text-decoration: underline;
}

.p-form__check-btn {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-form__check-btn {
    gap: 0.875rem;
  }
}

.p-form__check-btn input {
  position: relative;
  width: 3.125rem;
  height: 3.125rem;
  background-color: #D9D9D9;
  border: none;
}
@media screen and (max-width: 767px) {
  .p-form__check-btn input {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.p-form__check-btn input:checked::before {
  position: absolute;
  top: 0;
  left: 0.9375rem;
  transform: rotate(50deg);
  width: 1.25rem;
  height: 2.1875rem;
  border-right: 3px solid #000;
  border-bottom: 3px solid #000;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-form__check-btn input:checked::before {
    top: -0.125rem;
    left: 0.5rem;
    width: 0.9375rem;
    height: 1.5625rem;
  }
}

.p-form__check-btn span {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-form__check-btn span {
    font-size: 0.875rem;
  }
}

.p-form__button {
  margin-top: 2.75rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-form__button {
    margin-top: 1.125rem;
  }
}

.p-form__button-text input {
  display: inline-block;
  padding: 0.90625rem 0;
  width: 21.875rem;
  border: unset;
  background-color: unset;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #FFF;
  background-image: url(../../shakuchiken/images/top/contact-btn-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-form__button-text input {
    padding: 0.59375rem 0;
    width: 14.875rem;
    font-size: 0.875rem;
  }
}

.p-form-thanks {
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
}

.is-error-name,
.is-error-cheek,
.is-error-email,
.is-error-tel {
  color: red;
}

.p-cv {
  padding: 1.25rem 0;
  background-image: url(../../shakuchiken/images/top/cv-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-cv {
    padding: 2.875rem 0 3.4375rem;
    background-image: url(../../shakuchiken/images/top/cv-bg-sp.png);
  }
}

.p-cv__inner {
  max-width: 50rem;
  padding: 0 25px;
  margin: 0 auto;
}

.p-cv__text {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.03em;
  color: #ffe403;
  text-shadow: 2px 2px 0 #000, -2px 2px 0 #000, 2px -2px 0 #000, -1px -1px 0 #000;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-cv__text {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media screen and (max-width: 370px) {
  .p-cv__text {
    font-size: 1.375rem;
  }
}

.p-cv__text span {
  background: linear-gradient(transparent 50%, #313131 50%);
}

.p-cv__btn {
  margin-top: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-cv__btn {
    margin-top: 2.1875rem;
    flex-direction: column;
    gap: 0.5625rem;
  }
}

.p-cv__btn-contact {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .p-cv__btn-contact {
    width: 100%;
  }
}

.p-cv__btn-contact a {
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: 2px solid #d05e00;
  border-radius: 0.625rem;
  background-color: #FFF;
}

.p-cv__btn-contact a img {
  width: 1.875rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-cv__btn-contact a p {
  font-weight: 800;
  font-size: 1.625rem;
  letter-spacing: 0.03em;
  color: #d05e00;
}

.p-cv__btn-line {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .p-cv__btn-line {
    width: 100%;
  }
}

.p-cv__btn-line a {
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  border: 2px solid #FFF;
  border-radius: 0.625rem;
  background-color: #22ba4f;
}

.p-cv__btn-line a img {
  width: 2.0625rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-cv__btn-line a p {
  font-weight: 800;
  font-size: 1.625rem;
  letter-spacing: 0.02em;
  color: #FFF;
}

.p-cv__phone {
  margin-top: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}

.p-cv__phone .img {
  max-width: 2.6875rem;
}

.p-cv__phone .phone p {
  font-weight: 800;
  font-size: 2.3125rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-cv__phone .phone p {
    font-size: 2.125rem;
  }
}

.p-cv__phone .phone p span {
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-cv__phone .phone p span {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 370px) {
  .p-cv__phone .phone p span {
    font-size: 1.25rem;
  }
}

.p-etc {
  padding: 4.375rem 0;
  background-image: url(../../shakuchiken/images/top/etc-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-etc {
    padding: 2.25rem 0;
    background-image: url(../../shakuchiken/images/top/etc-bg-sp.png);
  }
}

.p-etc__inner {
  max-width: 62.5rem;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-etc__inner {
    padding: 0 15px;
  }
}

.p-etc__content {
  padding: 1.25rem 4.6875rem;
  border-radius: 1.25rem;
  background-color: rgba(255, 252, 222, 0.88);
}
@media screen and (max-width: 767px) {
  .p-etc__content {
    padding: 1.25rem;
  }
}

.p-etc__title {
  max-width: 25.6875rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-etc__title {
    max-width: 13rem;
  }
}

.p-etc-list {
  margin-top: 1.25rem;
}

.p-etc-list__item:not(:first-of-type) {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item:not(:first-of-type) {
    margin-top: 2.5rem;
  }
}

.p-etc-list__item-tag {
  position: relative;
}
.p-etc-list__item-tag::before {
  content: "";
  position: absolute;
  width: 89.125%;
  height: 2px;
  background: #EE6B01;
  right: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-tag::before {
    height: 1px;
  }
}

.p-etc-list__item-tag p {
  padding: 0.125rem 1.25rem;
  display: inline-block;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  color: #FFF;
  background-color: #EE6B01;
  text-align: center;
  border-radius: 1.25rem 0 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-tag p {
    padding: 0.15625rem 0.625rem;
    font-size: 0.75rem;
    border-radius: 0.84375rem 0 0.84375rem 0;
  }
}

.p-etc-list__item-tag p span {
  font-weight: 800;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-tag p span {
    font-size: 1.25rem;
    margin-left: 0.3125rem;
  }
}

.p-etc-list__item-group {
  margin-top: -1.875rem;
  padding: 0 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-group {
    margin-top: 0;
    padding: 0;
  }
}

.p-etc-list__item-img01 {
  width: 88.1%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-img01 {
    width: 100%;
  }
}

.p-etc-list__item-wrap {
  margin-top: 1.25rem;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-wrap {
    margin-top: 0.5rem;
    flex-direction: column-reverse;
    gap: 0.5rem;
  }
}

.p-etc-list__item-wrap .left {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-wrap .left {
    width: 100%;
  }
}

.p-etc-list__item-wrap .left-lis__item {
  padding: 0.40625rem 0;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-wrap .left-lis__item {
    padding: 0.3125rem 0.4375rem;
    gap: 1.0625rem;
  }
}

.p-etc-list__item-wrap .left-lis__item img {
  max-width: 2.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-wrap .left-lis__item img {
    max-width: 1.625rem;
  }
}

.p-etc-list__item-wrap .left-lis__item p {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-wrap .left-lis__item p {
    font-size: 1rem;
  }
}

.p-etc-list__item-wrap .left-point {
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-wrap .left-point {
    margin-top: 0;
    gap: 0.5rem;
  }
}

.p-etc-list__item-wrap .left-point .red {
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  line-height: 1.1666666667;
  color: #FFF;
  background-color: #B90201;
  border-radius: 50%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-wrap .left-point .red {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.625rem;
    line-height: 1.1;
  }
}

.p-etc-list__item-wrap .left-point .text {
  width: 84.2%;
  font-weight: 500;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-wrap .left-point .text {
    width: 85%;
    font-size: 1rem;
    line-height: 1.3125;
    font-feature-settings: "palt";
  }
}

.p-etc-list__item-wrap .right {
  position: relative;
  width: 44.19%;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-wrap .right {
    width: 100%;
  }
}

.p-etc-list__item-wrap .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-etc-list__item-wrap .right .right-tag {
  padding: 0.1875rem 2.5rem;
  position: absolute;
  bottom: 0;
  right: 0;
  font-weight: 800;
  font-size: 1.6875rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #FFF;
  background: linear-gradient(180deg, #0246B5, #011341);
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-wrap .right .right-tag {
    padding: 0.1875rem 1.875rem;
    font-size: 1rem;
  }
}

.p-etc-list__item-img02 {
  margin: 1.25rem auto 0;
  max-width: 42.75rem;
}
@media screen and (max-width: 767px) {
  .p-etc-list__item-img02 {
    margin: 1rem auto 0;
  }
}

.p-etc-list__item:nth-of-type(2) .p-etc-list__item-img02 {
  max-width: 100%;
}

.p-faq {
  position: relative;
  padding: 7.875rem 0;
  background-color: #EAF0FF;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding: 1.875rem 0;
  }
}
.p-faq::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.8125rem;
  background: linear-gradient(180deg, #0246B5, #011341);
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-faq::before {
    height: 0.625rem;
  }
}
.p-faq::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.8125rem;
  background: linear-gradient(180deg, #0246B5, #011341);
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-faq::after {
    height: 0.625rem;
  }
}

.p-faq__inner {
  max-width: 50.9375rem;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-faq__inner {
    padding: 0 0.75rem;
  }
}

.p-faq__title {
  max-width: 25rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    max-width: 12.5rem;
  }
}

.p-faq-list {
  margin-top: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .p-faq-list {
    margin-top: 0.875rem;
  }
}

.p-faq-list__item:not(:first-of-type) {
  margin-top: -0.9375rem;
}

.faq-list__item-question,
.faq-list__item-answer {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.8333333333;
  letter-spacing: 0.05em;
  color: #1F2024;
}
@media screen and (max-width: 767px) {
  .faq-list__item-question,
  .faq-list__item-answer {
    font-size: 0.875rem;
    line-height: 1.6428571429;
  }
}

.faq-list__item-question img,
.faq-list__item-answer img {
  width: 6.1875rem;
  margin-right: -0.9375rem;
}
@media screen and (max-width: 767px) {
  .faq-list__item-question img,
  .faq-list__item-answer img {
    width: 3.75rem;
    margin-right: -0.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .faq-list__item-answer img {
    margin-top: -0.625rem;
  }
}

.faq-list__item-answer {
  margin-top: -1.875rem;
  width: 94.6%;
  margin-left: auto;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .faq-list__item-answer {
    margin-top: -0.3125rem;
    width: 96%;
    align-items: start;
  }
}

.p-fixed {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.0625rem;
    background-color: #fff;
  }
}

.p-flow {
  padding: 5.9375rem 0 6.5625rem;
  background-image: url(../../shakuchiken/images/top/flow-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding: 1.25rem 0 0.9375rem;
    background-image: url(../../shakuchiken/images/top/flow-bg-sp.png);
  }
}

.p-flow__inner {
  max-width: 69.125rem;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding: 0 15px;
  }
}

.p-flow__content {
  padding: 6.25rem 1.5625rem 1.5625rem;
  background-color: rgba(255, 255, 255, 0.76);
  border-radius: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .p-flow__content {
    padding: 1.25rem 0;
    border-radius: 1.25rem;
  }
}

.p-flow__title {
  max-width: 48rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    max-width: 21.375rem;
  }
}

.p-flow-list {
  margin: 2.5rem auto 0;
  max-width: 46.25rem;
}
@media screen and (max-width: 767px) {
  .p-flow-list {
    max-width: 20rem;
  }
}

.p-flow-list__item {
  display: flex;
  align-items: flex-end;
}

.p-flow-list__item:not(:first-of-type) {
  margin-top: 3.0625rem;
}
@media screen and (max-width: 767px) {
  .p-flow-list__item:not(:first-of-type) {
    margin-top: 1.25rem;
  }
}

.p-flow-list__item-img {
  width: 16%;
}
@media screen and (max-width: 767px) {
  .p-flow-list__item-img {
    display: none;
  }
}

.p-flow-list__item-text {
  margin-left: -0.125rem;
  padding-left: 2rem;
  padding-bottom: 0.9375rem;
  width: 84%;
  border-bottom: 4px solid #EE6B01;
}
@media screen and (max-width: 767px) {
  .p-flow-list__item-text {
    margin-left: 0;
    padding-left: 0;
    padding-bottom: 0.4375rem;
    width: 100%;
  }
}

.p-flow-list__item:nth-of-type(3) .p-flow-list__item-text,
.p-flow-list__item:nth-of-type(5) .p-flow-list__item-text {
  margin-left: -1.5625rem;
  padding-left: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-flow-list__item:nth-of-type(3) .p-flow-list__item-text,
  .p-flow-list__item:nth-of-type(5) .p-flow-list__item-text {
    margin-left: 0;
    padding-left: 0;
  }
}

.p-flow-list__item:nth-of-type(4) .p-flow-list__item-text {
  margin-left: -1rem;
  padding-left: 2.875rem;
}
@media screen and (max-width: 767px) {
  .p-flow-list__item:nth-of-type(4) .p-flow-list__item-text {
    margin-left: 0;
    padding-left: 0;
  }
}

.p-flow-list__item-text p {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.65;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-flow-list__item-text p {
    font-size: 1rem;
    line-height: 1.75;
  }
}

.p-flow-img {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow-img {
    margin-top: 2.1875rem;
    padding: 0 0.4375rem;
  }
}

.p-footer {
  padding: 3.4375rem 0 1.25rem;
  background-color: #353535;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding: 2.3125rem 0 0.3125rem;
    margin-bottom: 7.5rem;
  }
}

.p-footer__inner {
  max-width: 65.625rem;
  padding: 0 25px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding: 0 15px;
  }
}

.p-footer__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFF;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.p-footer__wrap .copy {
  font-size: 0.875rem;
  line-height: 2.4285714286;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap .copy {
    font-size: 0.625rem;
    line-height: 1.2;
  }
}

.p-footer__wrap .link {
  font-size: 1rem;
  line-height: 2.125;
}
@media screen and (max-width: 767px) {
  .p-footer__wrap .link {
    font-size: 0.875rem;
    line-height: 2.4285714286;
  }
}

.p-header {
  position: relative;
  height: 5rem;
  background-color: #EE6B01;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 3rem;
  }
}
.p-header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background: #2d374d;
  bottom: -0.375rem;
  left: 0;
}

.p-header__inner {
  max-width: 90rem;
  padding: 0 25px;
  margin: 0 auto;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .p-header__inner {
    max-width: 68.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__inner {
    /* flex-direction: column; */
    padding: 0.625rem 1rem;
  }
}

.p-header__logo {
  max-width: 24.7142857143vw;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    max-width: 12.5rem;
  }
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav-items {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav-items {
    gap: 0.4375rem;
  }
}

.p-header__nav-item .flex {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.p-header__nav-item .img {
  max-width: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item .img {
    max-width: 0.9375rem;
  }
}

.p-header__nav-item .phone p {
  font-weight: 800;
  font-size: 1.375rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item .phone p {
    font-size: 0.8125rem;
  }
}

.p-header__nav-item .phone p span {
  margin-top: 0.3125rem;
  font-weight: 700;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item .phone p span {
    margin-top: 0.125rem;
    font-size: 0.5rem;
  }
}

.p-header__nav-item-btn {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item-btn {
    gap: 0.125rem;
  }
}

.p-header__nav-item-btn img {
  width: 1.375rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item-btn img {
    width: 0.875rem;
  }
}

.p-header__nav-item .line {
  width: 12.5rem;
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  border: 2px solid #FFF;
  border-radius: 0.625rem;
  color: #FFF;
  background-color: #22ba4f;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item .line {
    width: 6.875rem;
    height: 1.875rem;
    font-size: 0.625rem;
    border: 1px solid #FFF;
    border-radius: 0.3125rem;
  }
}

.p-header__nav-item .contact {
  width: 13.4375rem;
  height: 3.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  border: 2px solid #d05e00;
  border-radius: 0.625rem;
  color: #d05e00;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-header__nav-item .contact {
    width: 7.4375rem;
    height: 1.875rem;
    font-size: 0.5625rem;
    border: 1px solid #d05e00;
    border-radius: 0.3125rem;
  }
}

.p-reason {
  padding: 9.375rem 0;
  background-image: url(../../shakuchiken/images/top/reason-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-reason {
    padding: 1.875rem 0 4.375rem;
    background-image: url(../../shakuchiken/images/top/reason-bg-sp.png);
  }
}

.p-reason__inner {
  max-width: 74rem;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-reason__inner {
    padding: 0;
  }
}

.p-reason__title {
  max-width: 33rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-reason__title {
    max-width: 16.5625rem;
  }
}

.p-reason-list {
  margin-top: 4.375rem;
}
@media screen and (max-width: 767px) {
  .p-reason-list {
    margin-top: 1.25rem;
  }
}

.p-reason-list__item {
  position: relative;
  padding: 1.8125rem 12rem;
  height: 13.75rem;
}
@media screen and (max-width: 999px) {
  .p-reason-list__item {
    padding: 0.9375rem 12rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason-list__item {
    padding: 0 0 0 6rem;
    height: 17.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.p-reason-list__item::before {
  content: "";
  position: absolute;
  width: 88%;
  height: 5px;
  background: #EE6B01;
  top: -0.3125rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-reason-list__item::before {
    width: 80%;
    left: unset;
    right: 0;
    transform: unset;
  }
}

.p-reason-list__item:last-of-type::after {
  content: "";
  position: absolute;
  width: 88%;
  height: 5px;
  background: #EE6B01;
  bottom: 0.3125rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-reason-list__item:last-of-type::after {
    width: 80%;
    left: unset;
    right: 0;
    transform: unset;
  }
}

.p-reason-list__item:not(:first-of-type) {
  margin-top: -0.3125rem;
}

.p-reason-list__item-img {
  position: absolute;
  top: -0.3125rem;
  left: 0;
  max-width: 12rem;
  height: 13.75rem;
}
@media screen and (max-width: 767px) {
  .p-reason-list__item-img {
    max-width: 5.9375rem;
    height: 17.75rem;
  }
}

.p-reason-list__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-reason-list__item.p-reason-list__item--reverse .p-reason-list__item-img {
  right: 0;
  left: unset;
}
@media screen and (max-width: 767px) {
  .p-reason-list__item.p-reason-list__item--reverse .p-reason-list__item-img {
    left: 0;
  }
}

.p-reason-list__item.p-reason-list__item--reverse .p-reason-list__item-title img {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-reason-list__item.p-reason-list__item--reverse .p-reason-list__item-title img {
    margin-left: unset;
  }
}

.p-reason-list__item-text {
  margin-top: 1.25rem;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 1.35;
}
@media screen and (max-width: 999px) {
  .p-reason-list__item-text {
    margin-top: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-reason-list__item-text {
    margin-top: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.p-trouble {
  padding: 2.8125rem 0 23.125rem;
  background-image: url(../../shakuchiken/images/top/trouble-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .p-trouble {
    padding: 1.0625rem 0 5.625rem;
  }
}

.p-trouble__inner {
  padding: 0 25px;
}
@media screen and (max-width: 767px) {
  .p-trouble__inner {
    padding: 0 15px;
  }
}

.p-trouble__title {
  max-width: 71.4375rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-trouble__title {
    max-width: 20.125rem;
  }
}

.p-trouble-list {
  margin: 1.875rem auto 0;
  max-width: 61.875rem;
}
@media screen and (max-width: 767px) {
  .p-trouble-list {
    margin: 1.1875rem auto 0;
  }
}

.p-trouble-list__item {
  position: relative;
  padding: 1.375rem 1.375rem 1.375rem 7.375rem;
  background-color: rgba(0, 0, 0, 0.47);
  border-radius: 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-trouble-list__item {
    padding: 0.625rem 1.6875rem 0.625rem 2.6875rem;
    border-radius: 1.8125rem;
  }
}

.p-trouble-list__item:not(:first-of-type) {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .p-trouble-list__item:not(:first-of-type) {
    margin-top: 0.375rem;
  }
}

.p-trouble-list__item-img {
  position: absolute;
  top: -4.125rem;
  left: -1.6875rem;
  max-width: 10.125rem;
}
@media screen and (max-width: 767px) {
  .p-trouble-list__item-img {
    top: -1.5rem;
    left: -0.625rem;
    max-width: 3.75rem;
  }
}

.p-trouble-list__item-text {
  font-weight: 800;
  font-size: 2rem;
  line-height: 1.1875;
  color: #FFF;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .p-trouble-list__item-text {
    font-size: 1rem;
    letter-spacing: 0;
  }
}

.p-worries {
  margin-top: -18.75rem;
}
@media screen and (max-width: 767px) {
  .p-worries {
    margin-top: -3.4375rem;
  }
}

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

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
