@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*
  * Reset CSS
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* list Remove default style */
ul,
ol {
  padding: 0;
  list-style: none;
}

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

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

/* Set core body defaults */
body {
  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;
  -webkit-text-decoration-skip: ink;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* stylelint-disable */
textarea {
  resize: vertical;
}

/* stylelint-enable */
input[type=radio] {
  visibility: hidden;
}

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

/* =====================
 * Baseスタイル
===================== */
:root,
:root[theme=Default] {
  --pc-max-width:1080px;
  --pc-max-width2:1480px;
  --f-family-main: "Noto Sans JP", sans-serif;
  --f-family-en: "Poppins", sans-serif;
  --f-font-size: 16px;
  --f-font-size2: 22px;
  --f-font-size3: 20px;
  --f-h2-font-size: 32px;
  --f-line-height: 1.6;
  --f-line-height2: 2.0;
  --c-black: #3D3D3D;
  --c-red:#E60012;
  --c-orange:#FB752B;
  --c-bg-orange:#FEF3EC;
  --c-bg-orange2:#FFA25F;
  --c-yellow:#FFF98A;
  --c-bg-yellow:#FFE97C;
}
@media (max-width: 768px) {
  :root,
  :root[theme=Default] {
    --f-font-size: 16px;
    --f-font-size2: 16px;
    --f-font-size3: 18px;
    --f-h2-font-size: 28px;
  }
}

html {
  /* ----------------------------
  * リキッドレイアウト rootのfont-sizeを可変にして、単位をremで指定することでレイアウトを可変にする
    // 計算式参考サイト：https://lpeg.info/html/css_calc_font.html
    // font-size: calc([最小値px] + ([最大値] - [最小値]) * ((100vw - [最小画面幅px]) / ([最大画面幅] - [最小画面幅])));
    // clampと併用して上限下限を設定すること。しないと無限に変化し続ける
  * ---------------------------- */
  font-size: 18px;
  color: var(--c-black);
}
@media (max-width: 1140px) {
  html {
    font-size: clamp(12px, 12px + 4 * (100vw - 768px) / 372, 16px);
  }
}
@media (max-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(12px, 4.2666666667vw, 16px);
  }
}

body {
  font-family: var(--f-family-main);
  font-size: var(--f-font-size);
  line-height: var(--f-line-height);
  overflow-wrap: break-word;
  word-break: break-all;
}

img {
  height: auto;
  vertical-align: top;
}

a {
  display: inline-block;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

button {
  transition: 0.3s;
}
button:hover, button:focus {
  opacity: 0.7;
}

p {
  line-height: var(--f-line-height2);
  font-size: var(--f-font-size);
}

section {
  width: 100%;
  text-align: center;
  position: relative;
  padding: 3.75rem 0;
}
@media (max-width: 768px) {
  section {
    padding: 1.875rem 0.625rem;
  }
}
section p, section li, section dt, section dd, section h3, section h4 {
  text-align: left;
}
section img {
  width: auto;
  margin: auto;
}
section h2 {
  font-size: var(--f-h2-font-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  padding: 0 1.5rem 1.5rem;
  background-size: 40%;
  position: relative;
  text-align: center;
}
section h2:after {
  content: "";
  display: block;
  width: 40%;
  height: 0.25rem;
  background-color: var(--c-red);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
section h2:before {
  content: "";
  display: block;
  width: 20%;
  height: 0.25rem;
  background-color: #3D3D3D;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateX(50%);
  z-index: 2;
  margin: auto;
}

.l-header {
  height: 3.75rem;
  background-color: var(--c-white);
  padding: 0 1.25rem;
}

.l-header__container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}
@media (max-width: 768px) {
  .l-header__container {
    padding-left: 0;
    justify-content: center;
  }
}
.l-header__container .l-header__logo {
  padding: 0.75rem;
  height: 100%;
}
@media (max-width: 768px) {
  .l-header__container .l-header__logo {
    padding: 0.75rem;
  }
}
.l-header__container .l-header__logo img {
  width: auto;
  height: 100%;
}

.c-flex {
  display: flex;
}

.c-en {
  font-family: var(--f-family-en) !important;
}

.txt-center {
  text-align: center;
}

.c-cta {
  padding: 1.25rem 0;
  max-width: var(--pc-max-width2);
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .c-cta {
    margin: 0.625rem auto;
  }
}
.c-cta p {
  width: 98%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.c-cta p > img {
  position: absolute;
  top: -4rem;
  left: 43%;
  z-index: 2;
  width: 18.75rem;
}
@media (max-width: 768px) {
  .c-cta p > img {
    left: 34%;
    z-index: 2;
    width: 50%;
    top: -12vw;
  }
}
.c-cta a {
  background: var(--c-orange);
  margin: 0 auto;
  padding: 0.5rem 1.5rem;
  position: relative;
  max-width: 32.5rem;
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  -webkit-box-shadow: 0 4px 0 #D41C1C;
  box-shadow: 0 4px 0 #D41C1C;
  overflow: hidden;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
}
@media (max-width: 768px) {
  .c-cta a {
    margin: 0 auto 0.625rem;
    width: 98%;
    font-size: 17px;
  }
}
.c-cta a span {
  background-color: #fff;
  display: flex;
  border-radius: 50%;
  color: var(--c-orange);
  align-items: center;
  justify-content: center;
  width: 4.375rem;
  height: 4.375rem;
  margin-right: 0.625rem;
  font-size: 72%;
}
@media (max-width: 768px) {
  .c-cta a span {
    font-size: 86%;
    width: 3.75rem;
    height: 3.75rem;
  }
}
.c-cta.c-bottom-cta {
  width: 100%;
  max-width: unset;
  padding: 0.625rem 0.3125rem;
  box-shadow: none;
  position: fixed;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  transition: var(--t-all1);
  opacity: 0;
}
@media (max-width: 768px) {
  .c-cta.c-bottom-cta {
    flex-direction: column;
    width: 100%;
  }
}
.c-cta.c-bottom-cta.is-scroll {
  opacity: 1;
}

@keyframes shiny-btn3 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
@keyframes elm {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 2px 0 #db5a0a;
    box-shadow: 0 2px 0 #db5a0a;
  }
  70% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 2px 0 #db5a0a;
    box-shadow: 0 2px 0 #db5a0a;
  }
  80% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  90% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-box-shadow: 0 2px 0 #db5a0a;
    box-shadow: 0 2px 0 #db5a0a;
  }
  100% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}
.h-title {
  background: var(--c-grade-01);
  padding: 0.625rem 0.625rem 0.625rem 16%;
  color: #fff;
  position: relative;
  text-align: left;
  display: flex;
  border-radius: 0.625rem;
  font-size: var(--f-font-size2);
  margin: auto;
  margin-top: 3.75rem;
  max-width: var(--pc-max-width2);
}
@media (max-width: 768px) {
  .h-title {
    padding: 0.625rem 1.5625rem 0.625rem 24%;
  }
}
.h-title img:first-of-type {
  position: absolute;
  width: 5.3125rem;
  top: -75%;
  left: 2%;
}
@media (max-width: 768px) {
  .h-title img:first-of-type {
    width: 20%;
    bottom: 15%;
    top: unset;
  }
}
.h-title img:nth-of-type(2) {
  width: 24%;
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
}
@media (max-width: 768px) {
  .h-title img:nth-of-type(2) {
    width: 31.5%;
    bottom: 0.625rem;
    right: 0.625rem;
  }
}

.h3-title {
  background: var(--c-base) url(../images/icon-h3.svg) center left no-repeat;
  background-size: 7.5%;
  background-position: left 14px top 9px;
  padding: 0.625rem 0.625rem 0.625rem 11%;
  color: #fff;
  font-size: var(--f-font-size2);
  margin-top: 1.25rem;
}
@media (max-width: 768px) {
  .h3-title {
    padding: 0.625rem 0.625rem 0.625rem 16%;
    background-position: left 14px top 40%;
    background-size: 9%;
  }
}

.p-worry-text {
  text-align: center;
}

section.p-fv {
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 36vw;
}
@media (max-width: 768px) {
  section.p-fv {
    height: 100vw;
  }
}
section.p-fv > img {
  object-fit: cover;
}
@media (max-width: 768px) {
  section.p-fv > img {
    margin-top: 0;
  }
}
section.p-fv .p-fv-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
}
section.p-fv .p-fv-box p:nth-of-type(1) {
  margin: auto;
  display: flex;
  height: 100%;
  align-items: center;
}
section.p-fv .p-fv-box p:nth-of-type(1) img {
  max-width: 31.25rem;
  margin: auto;
}
@media (max-width: 768px) {
  section.p-fv .p-fv-box p:nth-of-type(1) img {
    width: 70vw;
    transform: translateY(-20px);
  }
}
section.p-fv .p-fv-box p:nth-of-type(2) {
  position: absolute;
  top: 1vw;
  left: 0;
  right: 0;
  height: auto;
  width: 40vw;
}
@media (max-width: 768px) {
  section.p-fv .p-fv-box p:nth-of-type(2) {
    width: 80vw;
    top: 4vw;
    left: -20vw;
  }
}

section.p-reason {
  padding: 2.5rem 2.5rem 8.75rem;
  overflow: hidden;
  background-color: var(--c-bg-orange);
}
@media (max-width: 768px) {
  section.p-reason {
    padding: 2.5rem 0 4.375rem;
  }
}
section.p-reason h3 {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: url(../images/bg-reason.png) left bottom no-repeat;
  background-size: 100%;
  padding: 0.625rem 0 6.25rem;
  font-size: var(--f-font-size2);
  margin-bottom: -3.125rem;
}
section.p-reason h3 span {
  color: var(--c-red);
}
section.p-reason h3 strong {
  position: relative;
  overflow: hidden;
  padding-top: 0.375rem;
  top: -0.1875rem;
}
section.p-reason h3 strong:before {
  content: "●●●●●●";
  position: absolute;
  top: 0;
  left: 0.4375rem;
  font-size: 0.375rem;
  letter-spacing: 2.2em;
  white-space: nowrap;
  width: 100%;
}
@media (max-width: 768px) {
  section.p-reason h3 strong:before {
    left: 0.4375rem;
    font-size: 0.375rem;
    letter-spacing: 0.58rem;
  }
}
section.p-reason h3 img {
  width: 25%;
  margin: 0 0.625rem 0 0;
}
section.p-reason .p-reason-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--pc-max-width);
  margin: 0 auto;
}
@media (max-width: 768px) {
  section.p-reason .p-reason-wrapper {
    grid-template-columns: 1fr;
  }
}
section.p-reason .p-reason-wrapper .p-reason-item {
  position: relative;
  z-index: 10;
  width: 100%;
  overflow: hidden;
  padding: 2.5rem 1.25rem;
}
@media (max-width: 768px) {
  section.p-reason .p-reason-wrapper .p-reason-item {
    width: 100%;
    padding-bottom: 5rem;
    overflow: unset;
    padding: 0 1.25rem;
  }
}
section.p-reason .p-reason-wrapper .p-reason-item:nth-of-type(2) {
  top: 17.5rem;
}
section.p-reason .p-reason-wrapper .p-reason-item:nth-of-type(2) img {
  z-index: 15;
}
@media (max-width: 768px) {
  section.p-reason .p-reason-wrapper .p-reason-item:nth-of-type(2) {
    top: 0;
  }
}
section.p-reason .p-reason-wrapper p:first-of-type {
  width: 96%;
  margin: 0 auto 2.5rem;
}
@media (max-width: 768px) {
  section.p-reason .p-reason-wrapper p:first-of-type {
    width: 90%;
  }
}
section.p-reason .p-reason-wrapper p:last-of-type {
  position: relative;
  z-index: 10;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  section.p-reason .p-reason-wrapper p:last-of-type {
    margin-top: 2.5rem;
  }
}
section.p-reason .p-reason-wrapper p:last-of-type:after {
  content: "";
  display: block;
  width: 50vw;
  height: 65%;
  background: var(--c-yellow);
  position: absolute;
  top: -3.5vw;
  right: 50%;
  z-index: -1;
}
@media (max-width: 768px) {
  section.p-reason .p-reason-wrapper p:last-of-type:after {
    top: -5vw;
  }
}
section.p-reason .p-reason-wrapper p:last-of-type:before {
  content: "";
  display: block;
  width: 50vw;
  height: 65%;
  background: var(--c-bg-orange2);
  position: absolute;
  bottom: -5vw;
  left: 50%;
  z-index: -1;
}
section.p-reason .p-reason-wrapper p:last-of-type img {
  width: 90%;
  z-index: 0;
  position: relative;
}

section.p-program {
  padding: 5rem 2.5rem;
  background: var(--c-yellow2);
}
@media (max-width: 768px) {
  section.p-program {
    padding: 1.875rem 0.625rem 0;
  }
}
section.p-program .p-program-item-header {
  padding: 0 0.625rem 3.75rem;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  section.p-program .p-program-item-header {
    width: 100%;
  }
}
section.p-program .p-program-item-header h3 {
  border-top: 2px solid;
  border-bottom: 2px solid;
  padding: 0.625rem;
  display: inline-block;
  margin: 0 auto 2.5rem;
  font-size: var(--f-font-size3);
}
section.p-program .p-program-item-header p {
  text-align: center;
}
@media (max-width: 768px) {
  section.p-program .p-program-item-header p {
    text-align: left;
  }
}
section.p-program .p-program-wrapper {
  display: grid;
  max-width: var(--pc-max-width);
  margin: 0 auto;
  justify-content: space-between;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem 2.5rem;
}
@media (max-width: 768px) {
  section.p-program .p-program-wrapper {
    grid-template-columns: 1fr;
  }
}
section.p-program .p-program-wrapper .p-program-item {
  background: #fff;
  border-radius: 2.375rem;
  padding: 4.0625rem 1.5625rem 1.875rem;
  position: relative;
}
section.p-program .p-program-wrapper .p-program-item img {
  width: 75%;
  height: auto;
  margin: 0.625rem auto;
}
section.p-program .p-program-wrapper h3 {
  background: var(--c-yellow);
  border-radius: 2.5rem;
  min-width: 10em;
  width: 60%;
  margin: 2.5rem auto 2.5rem;
  text-align: center;
  display: inline-block;
  padding: 0.625rem 1.875rem;
  position: absolute;
  top: -3.75rem;
  left: 0;
  right: 0;
}
@media (max-width: 768px) {
  section.p-program .p-program-wrapper h3 {
    width: 85%;
  }
}
section.p-program .p-program-wrapper h3 span {
  display: block;
  font-size: var(--f-font5-size);
  transform: rotate(-3.2deg);
}

section.p-voice {
  background: var(--c-bg-orange2);
}
@media (max-width: 768px) {
  section.p-voice {
    padding: 2.5rem 1.25rem;
  }
}
section.p-voice h2 {
  color: #fff;
}
section.p-voice h2:after {
  background-color: #FB752B;
}
section.p-voice h2:before {
  background-color: #fff;
}
section.p-voice .p-voice-wrapper {
  margin: 0 auto 0;
  max-width: var(--pc-max-width);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  section.p-voice .p-voice-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
section.p-voice .p-voice-item {
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 2.5rem 1.875rem 0;
}
@media (max-width: 768px) {
  section.p-voice .p-voice-item {
    border-radius: 0.9375rem;
    padding: 1.25rem 1.25rem 0;
  }
}
section.p-voice h3 {
  color: var(--c-orange);
  text-align: center;
  display: block;
  margin-bottom: 2.1875rem;
}
@media (max-width: 768px) {
  section.p-voice h3 {
    margin-top: 0.625rem;
    margin-bottom: 0.625rem;
  }
}
section.p-voice img {
  width: 70%;
  margin: 1.25rem auto 0;
}
@media (max-width: 768px) {
  section.p-voice img {
    max-width: 11.25rem;
    margin: 0.625rem auto 0;
  }
}

section.p-flow {
  max-width: var(--pc-max-width2);
  margin: 0 auto;
}
section.p-flow h3 {
  display: grid;
  grid-template-columns: 30% 1fr;
  align-items: center;
  margin-top: 1.25rem;
  margin-bottom: -1.875rem;
  padding-bottom: 4.375rem;
  background: url(../images/bg-flow.png) bottom center no-repeat;
  background-size: 100%;
  font-size: 22px;
}
@media (max-width: 768px) {
  section.p-flow h3 {
    padding-bottom: 18vw;
    font-size: 20px;
    margin-bottom: -12vw;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  section.p-flow h3 img {
    width: 100%;
    margin-right: 0.625rem;
  }
}
section.p-flow .p-flow-wrapper {
  display: flex;
  justify-content: space-around;
}
@media (max-width: 768px) {
  section.p-flow .p-flow-wrapper {
    flex-direction: column;
  }
}
section.p-flow .p-flow-wrapper .p-flow-item {
  overflow: hidden;
  width: 32%;
  padding: 1.25rem;
}
@media (max-width: 768px) {
  section.p-flow .p-flow-wrapper .p-flow-item {
    width: 100%;
    padding: 0 0.625rem 2.5rem;
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 768px) {
  section.p-flow .p-flow-wrapper .p-flow-item:last-of-type {
    margin-bottom: 1.25rem;
  }
}
section.p-flow .p-flow-wrapper .p-flow-item > div {
  background-color: var(--c-yellow);
  padding: 1.25rem 2.5rem 1.25rem 1.25rem;
  transform: translate(10%, -20%);
  margin-bottom: -3.75rem;
}
@media (max-width: 768px) {
  section.p-flow .p-flow-wrapper .p-flow-item > div {
    transform: translate(10%, -10%);
  }
}
@media (max-width: 768px) {
  section.p-flow .p-flow-wrapper .p-flow-item > p:nth-of-type(1) {
    transform: translate(-10%, 0);
  }
}

section.p-faq {
  max-width: var(--pc-max-width);
  margin: 0 auto;
  padding: 0 1.25rem 2.5rem;
}
@media (max-width: 768px) {
  section.p-faq {
    padding: 0 1.25rem;
    width: 96%;
  }
}
section.p-faq h2 {
  display: inline-block;
  border-bottom: 4px solid var(--c-orange);
  padding: 2.5rem 0 0.3125rem;
  background-image: none;
}
section.p-faq h2:before, section.p-faq h2:after {
  content: none;
}
@media (max-width: 768px) {
  section.p-faq h2 {
    width: 75%;
    margin-bottom: 0;
  }
}
section.p-faq .p-faq-box {
  margin-top: 0;
  padding: 2.5rem 0;
}
@media (max-width: 768px) {
  section.p-faq .p-faq-box {
    margin-top: 2.5rem;
  }
}
section.p-faq .p-faq-box .p-faq-item {
  margin-bottom: 2.5rem;
  position: relative;
  line-height: 1.5;
}
section.p-faq .p-faq-box .p-faq-item:last-of-type {
  margin-bottom: 0;
}
section.p-faq .p-faq-box .p-faq-item:last-of-type .p-faq_a__item {
  margin-bottom: 0;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_f__item {
  align-items: flex-start;
  margin-bottom: 1.25rem;
  text-align: left;
  position: relative;
  display: flex;
  font-weight: 600;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_f__item:before {
  position: relative;
  top: -0.3125rem;
  content: "Q";
  font-family: var(--f-family-en);
  font-weight: 600;
  color: var(--c-orange);
  background-color: var(--c-bg-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.625rem;
  width: 1.875rem;
  min-width: 1.875rem;
  height: 1.875rem;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_a__item {
  transition: var(--t-all1);
  margin-bottom: 2.5rem;
  text-align: left;
  display: flex;
  align-items: flex-start;
  position: relative;
  line-height: 1.8;
}
@media (max-width: 768px) {
  section.p-faq .p-faq-box .p-faq-item .p-faq_a__item {
    margin-bottom: 0;
  }
}
section.p-faq .p-faq-box .p-faq-item .p-faq_a__item:before {
  content: "A";
  font-family: var(--f-family-en);
  margin-right: 0.625rem;
  color: var(--c-orange);
  background-color: var(--c-bg-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 1.875rem;
  min-width: 1.875rem;
  height: 1.875rem;
  font-weight: 600;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_a__item a {
  position: relative;
  z-index: 10;
}
section.p-faq .p-faq-box .p-faq-item .p-faq_a__item a:hover {
  text-decoration: underline;
}

section.p-contact {
  width: 100%;
}
@media (max-width: 768px) {
  section.p-contact {
    padding: 1.25rem 0;
  }
}
section.p-contact h2 {
  border-bottom: 4px solid var(--c-orange);
  padding: 2.5rem 0 0.3125rem;
  background-image: none;
}
section.p-contact h2:before, section.p-contact h2:after {
  content: none;
}
@media (max-width: 768px) {
  section.p-contact h2 {
    flex-direction: column;
    width: 90%;
    margin-bottom: 0;
    padding: 0 0 0.3125rem;
  }
}
section.p-contact h2 strong {
  color: var(--c-orange);
  display: block;
}
section.p-contact p {
  max-width: 43.75rem;
  margin: 1.25rem auto;
  font-size: var(--f-font3-size);
}
section.p-contact iframe {
  width: 700px;
  height: 800px;
}
@media (max-width: 768px) {
  section.p-contact iframe {
    width: 100%;
  }
}

.u-pc-hidden {
  display: none !important;
}
@media (max-width: 768px) {
  .u-pc-hidden {
    display: block !important;
  }
}

.u-sm-hidden {
  display: none;
}
@media (max-width: 450px) {
  .u-sm-hidden {
    display: initial;
  }
}

.u-xl-hidden {
  display: none;
}
@media (max-width: 1200px) {
  .u-xl-hidden {
    display: initial;
  }
}

.u-sp-hidden {
  display: initial;
}
@media (max-width: 768px) {
  .u-sp-hidden {
    display: none !important;
  }
}

.u-space-contact {
  margin-top: 7.5rem;
}
@media (max-width: 768px) {
  .u-space-contact {
    margin-top: 10rem;
  }
}/*# sourceMappingURL=style.css.map */