@charset "UTF-8";
:root {
  --color-main: #E56F23;
  --color-main-light: #f59702;
  --base-text-color: #000;
  --title-text-color: #39251A;
}

.wrapper {
  margin-top: 134px;
  overflow-x: clip;
}

@media (max-width: 767px) {
  .wrapper {
    margin-top: 71px;
  }
}
.contentWidth {
  max-width: 1300px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 2%;
  padding-right: 2%;
}
@media (max-width: 767px) {
  .contentWidth {
    width: 88%;
  }
}

.pf_page_header {
  margin-top: 134px;
}

@media (max-width: 767px) {
  .pf_page_header {
    margin-top: 71px;
  }
}
.c-button {
  width: 254px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  color: var(--color-main);
  border: 1px solid var(--color-main);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  overflow: clip;
  position: relative;
}
@media (max-width: 767px) {
  .c-button {
    width: 118px;
    height: 34px;
    font-size: 10px;
    opacity: unset !important;
  }
}

.c-button::before {
  content: "";
  width: 56px;
  height: 56px;
  border-radius: 100vh;
  background-color: var(--color-main);
  background-image: url(../img/top2025/ico-arrow-white.svg);
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  z-index: 3;
}
@media (max-width: 767px) {
  .c-button::before {
    width: 20px;
    height: 20px;
    background-size: 12px;
  }
}

.c-button__text {
  display: flex;
  align-items: center;
  padding-left: 26px;
  padding-right: 8px;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-button__text {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.c-button::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-main);
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}

@media screen and (min-width: 767px) {
  .c-button:hover {
    color: #fff;
    opacity: 1;
  }
  .c-button:hover::after {
    animation: slideIn 0.5s forwards cubic-bezier(0.63, 0.05, 0.12, 1);
    color: #fff;
    z-index: 1;
  }
  .c-button.off::after {
    animation: slideOut 0.5s forwards cubic-bezier(0.63, 0.05, 0.12, 1);
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideOut {
  0% {
    opacity: 0.8;
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(100%);
  }
}
.c-top-sectionTitle {
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.c-top-sectionTitle::after {
  display: block;
  content: "";
  width: 90px;
  height: 90px;
  background-image: url("../img/top2025/exclamation-mark.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 100%;
}
@media (max-width: 767px) {
  .c-top-sectionTitle::after {
    width: 50px;
    height: 50px;
    left: 98%;
  }
}

@media (max-width: 767px) {
  .top-support .c-top-sectionTitle::after {
    left: 74%;
  }
}

.c-top-sectionTitleText {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 44px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--title-text-color);
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .c-top-sectionTitleText {
    font-size: 28px;
  }
}

/* 2025リニューアル時ヘッダーの配置 */
.pf_nav.--2025 {
  height: 134px;
  margin-top: -3px;
}
@media (max-width: 767px) {
  .pf_nav.--2025 {
    height: 71px;
  }
}
.pf_nav.--2025 .container {
  width: 100%;
  height: auto;
  max-width: 1525px;
  display: grid;
  grid-template: "logo cta" "pc-nav pc-nav"/auto 1fr;
}
@media screen and (max-width: 767px) {
  .pf_nav.--2025 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
  }
}
.pf_nav.--2025 .pf_nav_logo {
  grid-area: logo;
}
@media screen and (max-width: 767px) {
  .pf_nav.--2025 .pf_nav_logo {
    width: 133px;
  }
  .pf_nav.--2025 .pf_nav_logo img {
    width: 100%;
    height: auto;
  }
}
.pf_nav.--2025 .header__cta {
  grid-area: cta;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-wrap: nowrap;
}
@media (max-width: 767px) {
  .pf_nav.--2025 .header__cta {
    display: none;
  }
}
.pf_nav.--2025 .link-wrapper {
  display: flex;
  align-items: center;
}
.pf_nav.--2025 .pf_nav_pc-nav {
  margin-top: 28px;
  grid-area: pc-nav;
  margin-left: auto;
  margin-right: auto;
}
.pf_nav.--2025 .header__buttonEnglish {
  padding: 0px 8px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  background-color: #fff;
}
@media (max-width: 767px) {
  .pf_nav.--2025 .header__buttonEnglish {
    position: static;
    font-size: 18px;
    margin-left: auto;
    padding-right: 8px;
  }
}
@media (max-width: 767px) {
  .pf_nav.--2025 .pf_nav_hamburger {
    margin-left: 4px;
  }
}
.pf_nav.--2025 .pf_nav_drawer-nav {
  width: 100%;
}

/* ヘッダーCTAのコンタクト情報 */
.header__cta .contact-info {
  display: grid;
  grid-template: "tel tel" "time holiday"/1fr 1fr;
  justify-items: center;
  margin-left: 12px;
}
@media (max-width: 767px) {
  .header__cta .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 2%;
    flex-shrink: 0;
  }
}
.header__cta .contact-info .tel {
  font-family: "Inter";
  grid-area: tel;
  color: var(--color-main-light);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 767px) {
  .header__cta .contact-info .tel {
    font-size: 22px;
    letter-spacing: -0.05em;
  }
}
.header__cta .contact-info .time {
  grid-area: time;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .header__cta .contact-info .time {
    font-size: 10px;
  }
}
.header__cta .contact-info .holiday {
  grid-area: holiday;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .header__cta .contact-info .holiday {
    font-size: 10px;
  }
}

html[lang=en] .header__cta .contact-info {
  grid-template: "tel" "time" "holiday"/1fr;
}

@media (max-width: 767px) {
  .header__cta .link-wrapper {
    display: flex;
    align-items: center;
  }
}
.header__cta a {
  display: block;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-main-light);
}
.header__cta .download,
.header__cta .contact {
  width: 50%;
}
.header__cta .contact {
  min-width: 169px;
}
.header__cta .download {
  min-width: 170px;
}
.header__cta .download-link {
  background-color: var(--color-main);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .header__cta .download-link {
    font-size: 16px;
    width: 78px;
  }
}
.header__cta .contact-link {
  background-color: var(--color-main-light);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .header__cta .contact-link {
    font-size: 16px;
    width: 108px;
    width: 140px;
  }
}
.header__cta .group-logo {
  width: 5%;
  min-width: 50px;
  margin-left: 1.5%;
}
.header__cta .group-logo a {
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
}
.header__cta .group-logo img {
  width: 100%;
  min-width: 60px;
}

@media (max-width: 1050px) {
  .header__cta .contact-info .tel {
    font-size: 22px;
  }
  .header__cta .contact-info .time,
  .header__cta .contact-info .holiday {
    font-size: 10px;
  }
  .pf_nav_pc-nav .menu li a {
    font-size: 12px;
  }
  .header__cta .contact-link {
    font-size: 16px;
  }
  .header__cta .download-link {
    font-size: 10px;
  }
  .header__cta .contact {
    min-width: 120px;
  }
  .header__cta .download {
    min-width: 60px;
    width: unset;
  }
  .pf_nav.--2025 .link-wrapper {
    min-width: 200px;
  }
}
/* SP用ヘッダーCTA */
.header__cta.--sp {
  display: none;
}
@media (max-width: 767px) {
  .header__cta.--sp {
    padding: 0.5em 8px 0.5em 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.4);
  }
}

.pf_nav_drawer-nav_list > li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pf_nav_drawer-nav_list > li a::after {
  content: "";
  margin-left: 4px;
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  background-image: url("../img/top2025/ico-arrow-orange.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.cta {
  padding: 106px 5% 80px;
  margin-bottom: 112px;
  max-width: 1122px;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  background-color: #F59702;
  border: 4px solid #fff;
  margin-top: -230px;
  border-radius: 16px;
}
@media (max-width: 767px) {
  .cta {
    width: 100%;
    margin-top: 0;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
  }
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__title {
  font-family: "Noto Sans JP";
  font-weight: 1050;
  font-size: 31px;
  line-height: 1.52;
}
@media (max-width: 767px) {
  .cta__title {
    font-size: 26px;
  }
}

.cta__contactInfo {
  margin-top: 33px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 12px;
}
.cta__contactInfo .opentime {
  display: block;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 28px;
  line-height: 1;
}
@media (max-width: 767px) {
  .cta__contactInfo .opentime {
    font-size: 16px;
    order: 2;
  }
}
.cta__contactInfo .closed {
  display: block;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 28px;
  line-height: 42px;
  line-height: 1;
}
@media (max-width: 767px) {
  .cta__contactInfo .closed {
    font-size: 16px;
    order: 3;
  }
}
.cta__contactInfo .tel {
  display: block;
  font-family: Inter;
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
}
@media (max-width: 767px) {
  .cta__contactInfo .tel {
    font-size: 42px;
    order: 1;
  }
}

.cta__navWrap {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}

.cta__navLink {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 21px;
  line-height: 1;
  width: 284px;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
.cta__navLink.--download {
  background-color: var(--color-main);
  color: #fff !important;
}
.cta__navLink.--contact {
  background-color: #fff;
  color: var(--color-main) !important;
}

.pf_footer {
  color: #fff;
  margin-top: 320px;
  padding: 0;
  padding-bottom: 136px;
  background: linear-gradient(to top, #e2932b 0%, #e84a1b 100%);
}
@media (max-width: 767px) {
  .pf_footer {
    margin-top: 600px;
    position: relative;
    padding-top: 80px;
  }
}
.pf_footer a {
  color: #fff !important;
}
.pf_footer .menu > .menu-item > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 15px;
  line-height: 1;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5em;
}
.pf_footer .menu > .menu-item > a::after {
  content: ">";
}

.pf_footer_inner .menu {
  margin-left: 0;
  width: 100%;
  max-width: 1028px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  row-gap: 82px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .pf_footer_inner .menu {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .pf_footer_inner .pf_footer_ul {
    row-gap: 12px;
  }
}
@media (max-width: 767px) {
  .pf_footer_inner .pf_footer_ul li:first-child {
    margin-right: 50%;
  }
}
@media (max-width: 767px) {
  .pf_footer_inner .menu li {
    width: 46%;
  }
}
.pf_footer_inner .menu .sub-menu {
  padding-top: 1em;
  padding-left: 0;
}
.pf_footer_inner .menu .sub-menu li {
  padding: 0;
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 13px;
  line-height: 21px;
  width: 100%;
}
.pf_footer_inner .sub-menu li a::before {
  content: ">";
  margin-right: 4px;
}
.pf_footer_inner .menu-item-dummy {
  display: none;
}
@media (max-width: 767px) {
  .pf_footer_inner .menu-item-dummy {
    display: block;
    opacity: 0;
  }
}

.pf_footer_copyright,
.footer__address {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .pf_footer_copyright,
  .footer__address {
    letter-spacing: -0.01em;
  }
}

.pf_post {
  margin-top: 120px;
}

@media (max-width: 767px) {
  .pf_post {
    margin-top: 71px;
  }
}
.pf_nav_drawer-nav_list .sub-menu {
  display: none;
}

/* フッターSNSアイコン */
.sns-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 21rem;
  margin-bottom: 3vw;
}

.sns-block {
  flex: 1 1 15vw;
}

.sns-title {
  font-weight: bold;
  font-size: 0.6vw;
  margin-bottom: 0.2vw;
}

.sns-icons {
  list-style: none;
  display: flex;
  gap: 1.2vw;
  padding: 0;
  margin: 0;
}

.sns-icons li img {
  width: 1.5vw;
  height: 1.5vw;
  max-width: 100%;
}

.sns-partner {
  margin-top: 0.1vw;
}

.sns-partner img {
  width: 8vw;
  height: auto;
}

.sns-icons li img[alt=YouTube] {
  width: 6vw;
  height: auto;
}
.pf_sidebar{
	height: 100%;
}
.pf_sidebar_contactbnr{
	position: sticky;
    top: 140px;
}
.pf_sidebar_contactbnr a img{
	width: 68%;
}
@media screen and (max-width: 720px) {
	.pf_sidebar_contactbnr{
		display: none;
	}
}
/* スマホ対応 */
@media screen and (max-width: 720px) {
  .sns-footer {
    margin-top: 8rem;
    flex-direction: column;
    gap: 4vw;
    margin-bottom: 12vw;
  }
  .sns-block {
    flex: 1 1 100%;
  }
  .sns-title {
    font-size: 4vw;
  }
  .sns-icons {
    gap: 4vw;
  }
  .sns-icons li img {
    width: 7vw;
    height: 7vw;
  }
  .sns-partner img {
    width: 40vw;
  }
  .sns-icons li img[alt=YouTube] {
    width: 14vw;
  }
}
/* ヘッダーお問い合わせボタン最新 */
.header__cta .contact-link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-main-light);
  /* 初期文字色（オレンジなど） */
  border: 2px solid var(--color-main-light);
  background-color: #fff;
  overflow: hidden;
  text-decoration: none;
  transition: color 0.3s ease;
  z-index: 0;
}

.header__cta .contact-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-main-light);
  transition: all 0.4s ease;
  z-index: 1;
  /* 背景としてスライド */
}

.header__cta .contact-link:hover::before {
  left: 0;
}

.header__cta .contact-link:hover {
  color: #fff;
  /* ホバー時に白文字 */
}

.header__cta .contact-link span {
  position: relative;
  z-index: 2;
  /* ← 文字を一番上に */
}

@media screen and (max-width: 1050px) {
  .header__cta .contact-link {
    font-size: 15px;
  }
}
.bogo-language-switcher {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}
.bogo-language-switcher::before {
  content: "/";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}
.bogo-language-switcher li {
  opacity: 0.4;
}
.bogo-language-switcher li.current {
  opacity: 1;
}
.bogo-language-switcher .ja {
  display: flex;
  align-items: center;
}

.bogoflags {
  display: none;
}

.bogo-language-name a {
  color: #000;
  border: none;
}

.post-type-archive-column .bogo-language-switcher .en a,
.post-type-archive-documents .bogo-language-switcher .en a {
  color: #000;
  pointer-events: none;
}

.single-documents .single-document-breadcrumb ul > li:nth-child(2),
.single-documents .single-document-breadcrumb ul > li:nth-child(3) {
  display: none !important;
}

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

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