@charset "UTF-8";
/*************************************
MIXINS
*************************************/
/*************************************
MIXINS
*************************************/
.scpop {
  transform: scale3d(0, 0, 0);
  transform-origin: center center;
  will-change: animation;
}

.scpop.ac {
  animation: bounce 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/*------------------------------------
animation
	*/
@keyframes hueRotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(359deg);
  }
}
@keyframes photoCoverAnim {
  0% {
    filter: grayscale(95%);
  }
  100% {
    filter: grayscale(0%);
  }
}
@keyframes bounce {
  0% {
    transform: scale3d(0, 0, 0);
  }
  40% {
    transform: scale3d(1.2, 1.2, 1.2);
  }
  60% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  80% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
/*------------------------
SIZE
-------------------------*/
/*------------------------
COLOR
-------------------------*/
a {
  color: #333;
  text-decoration: none;
}

/*------------------------
TEXT SET
-------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4em;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  box-sizing: border-box;
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "Poppins", sans-serif;
  }
}
/*------------------------
BASIC LAYOUT / MODULE
-------------------------*/
img {
  image-rendering: -webkit-optimize-contrast;
}

.pcHide {
  display: none;
}
@media screen and ( max-width : 768px ) {
  .pcHide {
    display: block;
  }
}

.spHide {
  display: block;
}
@media screen and ( max-width : 768px ) {
  .spHide {
    display: none;
  }
}

.lbx {
  cursor: pointer;
}

.tac {
  text-align: center;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.wrap {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  box-sizing: border-box;
}
.minWrap {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

figure {
  margin: 0;
}

/*------------------------
RESET
-------------------------*/
body {
  word-wrap: break-word;
}

th, td {
  text-align: left;
  vertical-align: top;
  border: none;
}

caption {
  text-align: left;
}

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

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

fieldset, img {
  border: 0;
}

a {
  outline: none;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
}

/*
	clearfix
------------------------------------- */
.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
}

* html .clearfix {
  display: inline-block;
}

.clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/*html5の要素をblock*/
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
  box-sizing: border-box;
}

/*------------------------
FORM
-------------------------*/
input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/*------------------------
TABLE
-------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
  width: 100%;
}

/*==============================================
  Base Styles
==============================================*/
html {
  overflow-x: hidden;
}

body {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  letter-spacing: 0.03em;
  line-height: 2.18;
  background: #F5F2E9;
}

.en {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  font-family: "Poppins", sans-serif;
}

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

.sp {
  display: none !important;
}
@media screen and ( max-width : 768px ) {
  .sp {
    display: block !important;
  }
}

.textSetting {
  display: block;
}

.bottom0 {
  margin-bottom: 0 !important;
}

/*==============================================
  Header
==============================================*/
header {
  position: relative;
  width: 100%;
}
header .headerWrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #F5F2E9;
}
header .headerWrap.newsDetailHeader {
  background: #000;
}
header .headerWrap .headerBox {
  width: 100%;
}
header .headerWrap .headerBox .child {
  padding: 0 20px;
}
header .headerWrap .headerBox .child .inner {
  display: flex;
  align-items: center;
  padding: 20px 0;
}
header .headerWrap .headerBox .child .inner .logoBox {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and ( max-width : 768px ) {
  header .headerWrap .headerBox .child .inner .logoBox {
    gap: 8px;
  }
}
header .headerWrap .headerBox .child .inner .logoBox h1 {
  margin: 0;
  line-height: 1;
}
header .headerWrap .headerBox .child .inner .logoBox h1 a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}
@media screen and ( max-width : 768px ) {
  header .headerWrap .headerBox .child .inner .logoBox h1 a {
    gap: 8px;
  }
}
header .headerWrap .headerBox .child .inner .logoBox h1 a img {
  width: 137px;
  object-fit: contain;
}
@media screen and ( max-width : 768px ) {
  header .headerWrap .headerBox .child .inner .logoBox h1 a img {
    width: 120px;
  }
}
header .headerWrap .headerBox .child .inner .navBox {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and ( max-width : 768px ) {
  header .headerWrap .headerBox .child .inner .navBox {
    display: none;
  }
}
header .headerWrap .headerBox .child .inner .navBox .navList {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and ( max-width : 1024px ) {
  header .headerWrap .headerBox .child .inner .navBox .navList {
    gap: 20px;
  }
}
header .headerWrap .headerBox .child .inner .navBox .navList .list {
  margin: 0;
  padding: 0;
}
header .headerWrap .headerBox .child .inner .navBox .navList .list .navLink {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
header .headerWrap .headerBox .child .inner .navBox .navList .list .navLink:hover {
  opacity: 0.7;
}
header .headerWrap .headerBox .child .inner .navBox .navList .list .navLink.homeLink {
  padding-left: 20px;
}
header .headerWrap .headerBox .child .inner .navBox .navList .list .navLink.homeLink .iconHome {
  width: 15.31px;
  height: auto;
}
header .headerWrap .headerBox .child .inner .headerCta {
  flex-shrink: 0;
}
@media screen and ( max-width : 768px ) {
  header .headerWrap .headerBox .child .inner .headerCta {
    display: none;
  }
}
header .headerWrap .headerBox .child .inner .headerCta .ctaBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
  padding-left: 40px;
}
header .headerWrap .headerBox .child .inner .headerCta .ctaBlock:hover {
  opacity: 0.9;
}
@media screen and ( max-width : 1024px ) {
  header .headerWrap .headerBox .child .inner .headerCta .ctaBlock {
    padding-left: 20px;
  }
}
header .headerWrap .headerBox .child .inner .headerCta .ctaBlock .ctaLabelWrap {
  display: inline-block;
  background: #ED6C00;
  border-radius: 7px;
  padding: 8px 23px;
}
header .headerWrap .headerBox .child .inner .headerCta .ctaBlock .ctaLabel {
  display: block;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.1em;
  line-height: 1;
}
header .headerWrap .headerBox .child .inner .headerCta .ctaBlock .ctaTel {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #ED6C00;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
header .headerWrap .headerBox .child .inner .headerCta .ctaBlock .ctaHours {
  display: block;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.07em;
}
header .headerWrap .headerBox .child .inner .spNavBox {
  display: none;
}
@media screen and ( max-width : 768px ) {
  header .headerWrap .headerBox .child .inner .spNavBox {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 1000;
  }
}
header .headerWrap .headerBox .child .inner .spNavBox.active .drawer .menu-icon .line1 {
  transform: rotate(45deg) translate(3px, 3px);
}
header .headerWrap .headerBox .child .inner .spNavBox.active .drawer .menu-icon .line2 {
  transform: rotate(-45deg) translate(3px, -3px);
}
header .headerWrap .headerBox .child .inner .spNavBox.active .drawer .menu-icon .menu-label {
  opacity: 1;
}
header .headerWrap .headerBox .child .inner .spNavBox .drawer .menu-icon {
  width: 65px;
  height: 65px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #ED6C00;
  border-radius: 50%;
  transition: opacity 0.3s;
}
header .headerWrap .headerBox .child .inner .spNavBox .drawer .menu-icon:hover {
  opacity: 0.9;
}
header .headerWrap .headerBox .child .inner .spNavBox .drawer .menu-icon .line1,
header .headerWrap .headerBox .child .inner .spNavBox .drawer .menu-icon .line2 {
  width: 31px;
  height: 2px;
  background: #fff;
  flex-shrink: 0;
  transition: all 0.3s;
}
header .headerWrap .headerBox .child .inner .spNavBox .drawer .menu-icon .menu-label {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.02em;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
}
header .heroWrap {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #ED6C00;
  background-image: url("../images/common/logoonlyW.svg");
  background-repeat: no-repeat;
  background-position: 60px bottom;
  background-size: 25vw auto;
  overflow: hidden;
}
@media screen and ( max-width : 768px ) {
  header .heroWrap {
    background-size: 70vw auto;
    background-position: -15vw bottom;
  }
}
header .heroWrap .heroBox {
  width: 100%;
}
header .heroWrap .heroBox .child {
  width: 100%;
}
header .heroWrap .heroBox .child .heroInner {
  position: relative;
  width: 100%;
  height: 100vh;
}
header .heroWrap .heroBox .child .heroInner .heroImage {
  width: 100%;
  position: relative;
}
header .heroWrap .heroBox .child .heroInner .heroImage p {
  margin: 0;
  padding: 0;
  width: 100%;
}
header .heroWrap .heroBox .child .heroInner .heroImage p img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
header .heroWrap .heroBox .child .heroInner .heroImage .sp {
  display: none;
}
@media screen and ( max-width : 768px ) {
  header .heroWrap .heroBox .child .heroInner .heroImage .sp {
    display: block;
  }
}
header .heroWrap .heroBox .child .heroInner .heroImage .pc {
  display: block;
}
@media screen and ( max-width : 768px ) {
  header .heroWrap .heroBox .child .heroInner .heroImage .pc {
    display: none;
  }
}
header .heroWrap .heroBox .child .heroInner .heroText {
  position: absolute;
  top: 175px;
  left: 60px;
  z-index: 10;
  width: 45vw;
}
@media screen and ( max-width : 768px ) {
  header .heroWrap .heroBox .child .heroInner .heroText {
    top: 135px;
    left: 0;
    width: calc(100vw - 40px);
    padding-left: 20px;
  }
}
header .heroWrap .heroBox .child .heroInner .heroText h2 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/*==============================================
  Hero Slide Area
==============================================*/
.heroSlideArea {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  gap: 15px;
  width: 60%;
  height: 100vh;
}
@media screen and ( max-width : 768px ) {
  .heroSlideArea {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: auto;
    top: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    height: auto;
    width: 100%;
    gap: 0;
  }
}

.heroSlideCol {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 50%;
  flex-shrink: 0;
}
@media screen and ( max-width : 768px ) {
  .heroSlideCol {
    flex-direction: row;
    width: auto;
    gap: 10px;
    animation: none !important;
  }
}
.heroSlideCol--left {
  animation: heroScrollUp 20s linear infinite;
}
@media screen and ( max-width : 768px ) {
  .heroSlideCol--left {
    animation: heroScrollLeft 15s linear infinite !important;
    padding-right: 10px;
  }
}
.heroSlideCol--right {
  animation: heroScrollDown 20s linear infinite;
}
@media screen and ( max-width : 768px ) {
  .heroSlideCol--right {
    display: none;
  }
}

.heroSlideItem {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 15px;
}
@media screen and ( max-width : 768px ) {
  .heroSlideItem {
    border-radius: 10px;
    width: 260px;
  }
}
.heroSlideItem img {
  width: 100%;
  height: auto;
  display: block;
}
@media screen and ( max-width : 768px ) {
  .heroSlideItem img {
    width: 260px;
  }
}

@keyframes heroScrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-50% - 7.5px));
  }
}
@keyframes heroScrollDown {
  0% {
    transform: translateY(calc(-50% - 7.5px));
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes heroScrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - 5px));
  }
}
/*==============================================
  Drawer Menu
==============================================*/
.drawer-content-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.drawer-content-bg.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: #fff;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}
.drawer-content.is-open {
  transform: translateX(0);
}

.drawer-content-wrap {
  padding: 120px 30px 40px;
}
.drawer-content-wrap .box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.drawer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer-nav-list li {
  border-bottom: 1px solid #eee;
}
.drawer-nav-list li a {
  display: block;
  padding: 15px 0;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  font-weight: 700;
}

.drawer-cta {
  text-align: center;
}
.drawer-cta-label {
  display: inline-block;
  background: #ED6C00;
  color: #fff;
  font-size: 12px;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.drawer-cta-tel {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #ED6C00;
  text-decoration: none;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}
.drawer-cta-hours {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
}
.drawer-cta-line {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}
.drawer-cta-line img {
  width: 100%;
  height: auto;
}

body.drawer-open {
  overflow: hidden;
}

.subTitle {
  display: flex;
  align-items: center;
  min-height: 27px;
  font-size: 24px;
  color: #ED6C00;
  letter-spacing: 0.05em;
  line-height: 27px;
  font-weight: 700;
}
.subTitle::before {
  content: "";
  display: inline-block;
  width: 31px;
  height: 27px;
  margin-right: 15px;
  background: url("../images/common/titleIcon.svg") no-repeat center/contain;
  flex-shrink: 0;
}
@media screen and ( max-width : 768px ) {
  .subTitle::before {
    width: 23px;
    height: 20px;
    margin-right: 10px;
  }
}
@media screen and ( max-width : 768px ) {
  .subTitle {
    font-size: 21px;
  }
}
@media screen and ( max-width : 768px ) {
  .subTitle.center {
    text-align: left;
  }
}
.subTitle.white {
  color: #fff;
}
.subTitle.white::before {
  background: url("../images/common/titleIconW.svg") no-repeat center/contain;
}

.subsubTitle {
  font-size: 24px;
  text-align: center;
  padding-top: 40px;
  margin: -0.5em 0;
}
@media screen and ( max-width : 768px ) {
  .subsubTitle {
    font-size: 21px;
    padding-top: 20px;
  }
}

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

.mainTitle {
  font-size: 36px;
  font-weight: 700;
  margin: -0.5em 0;
  line-height: 1.85;
  padding-top: 30px;
}
@media screen and ( max-width : 768px ) {
  .mainTitle {
    font-size: 21px;
  }
}

.underTitle {
  display: flex;
  align-items: center;
  min-height: 27px;
  font-size: 36px;
  color: #ED6C00;
  letter-spacing: 0.05em;
  line-height: 27px;
  font-weight: 700;
}
.underTitle::before {
  content: "";
  display: inline-block;
  width: 31px;
  height: 27px;
  margin-right: 15px;
  background: url("../images/common/titleIcon.svg") no-repeat center/contain;
  flex-shrink: 0;
}
@media screen and ( max-width : 768px ) {
  .underTitle::before {
    width: 23px;
    height: 20px;
    margin-right: 10px;
  }
}
@media screen and ( max-width : 768px ) {
  .underTitle {
    font-size: 21px;
  }
}

.topAbouWrap {
  position: relative;
  padding: 114px 40px 90px;
}
.topAbouWrap .aboutBgImg {
  position: absolute;
  right: -391px;
  top: 40px;
  width: 551px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}
@media screen and ( max-width : 768px ) {
  .topAbouWrap .aboutBgImg {
    right: 10px;
    top: auto;
    bottom: 10px;
    width: 110px;
  }
}
@media screen and ( max-width : 768px ) {
  .topAbouWrap {
    padding: 97px 20px 80px;
  }
}
.topAbouWrap .titleBox {
  max-width: 1280px;
  margin: 0 auto 90px;
  z-index: 2;
  position: relative;
  display: block;
  flex-direction: none;
  align-items: center;
}
@media screen and ( max-width : 768px ) {
  .topAbouWrap .titleBox {
    margin: 0 auto 45px;
  }
}
.topAbouWrap .topAboutBox {
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto 60px;
  z-index: 2;
  position: relative;
}
@media screen and ( max-width : 768px ) {
  .topAbouWrap .topAboutBox {
    flex-direction: column;
    align-items: center;
  }
}
.topAbouWrap .topAboutBox .imageChild {
  width: 47%;
}
@media screen and ( max-width : 768px ) {
  .topAbouWrap .topAboutBox .imageChild {
    width: 100%;
    padding: 0 30px;
    margin-bottom: 40px;
  }
}
.topAbouWrap .topAboutBox .imageChild img {
  width: 100%;
  height: 100%;
}
.topAbouWrap .topAboutBox .textChild {
  width: 53%;
  padding-left: 60px;
}
@media screen and ( max-width : 768px ) {
  .topAbouWrap .topAboutBox .textChild {
    width: 100%;
    padding-left: 0;
  }
}
.topAbouWrap .topAboutBox .textChild p {
  font-size: 16px;
  line-height: 2.18;
  letter-spacing: 0.07em;
  margin: -0.5em 0;
}
.topAbouWrap .topAboutSlideBox {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  overflow: visible;
  z-index: 2;
  position: relative;
}
@media screen and ( max-width : 768px ) {
  .topAbouWrap .topAboutSlideBox {
    display: none;
  }
}
.topAbouWrap .topAboutSlideBox .galleryBox {
  overflow: visible;
}
.topAbouWrap .topAboutSlideBox .galleryBox .galleryInner {
  display: flex;
}
.topAbouWrap .topAboutSlideBox .galleryBox .galleryInner.slick-initialized .slick-list {
  overflow: visible;
}
.topAbouWrap .topAboutSlideBox .galleryBox .galleryInner .galleryItem img {
  width: 100%;
  height: auto;
}
.topAbouWrap .topAboutSlideBox .galleryBox .galleryInner .galleryItem.galleryItem1 {
  min-width: 270px;
  max-width: 270px;
  padding-top: 90px !important;
  padding-right: 40px;
}
.topAbouWrap .topAboutSlideBox .galleryBox .galleryInner .galleryItem.galleryItem2 {
  min-width: 264px;
  max-width: 264px;
  padding-top: 120px !important;
  padding-right: 40px;
}
.topAbouWrap .topAboutSlideBox .galleryBox .galleryInner .galleryItem.galleryItem3 {
  min-width: 250px;
  max-width: 250px;
  padding-top: 60px !important;
  padding-right: 30px;
}
.topAbouWrap .topAboutSlideBox .galleryBox .galleryInner .galleryItem.galleryItem4 {
  min-width: 394px;
  max-width: 394px;
  padding-top: 120px !important;
}
.topAbouWrap .topAboutSlideBox .galleryBox .galleryInner .galleryItem.galleryItem5 {
  min-width: 237px;
  max-width: 237px;
  padding-right: 30px;
}

.topTroublesSection {
  padding: 90px 40px 100px;
  background: #F1F4F6;
}
@media screen and ( max-width : 768px ) {
  .topTroublesSection {
    padding: 60px 0px 60px;
  }
}
.topTroublesSection .titleBox {
  max-width: 1280px;
  margin: 0 auto 60px;
}
@media screen and ( max-width : 768px ) {
  .topTroublesSection .titleBox {
    padding: 0 20px;
  }
}
.topTroublesSection .topTroublesBox {
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and ( max-width : 768px ) {
  .topTroublesSection .topTroublesBox {
    padding: 0;
  }
}
.topTroublesSection .topTroublesBox .child {
  width: 100%;
}
@media screen and ( max-width : 768px ) {
  .topTroublesSection .topTroublesBox .child {
    position: relative;
  }
}
.topTroublesSection .topTroublesBox .child .troubleCardList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and ( max-width : 768px ) {
  .topTroublesSection .topTroublesBox .child .troubleCardList {
    grid-template-columns: 1fr;
    gap: 25px 0;
  }
  .topTroublesSection .topTroublesBox .child .troubleCardList.slick-initialized {
    display: block;
    gap: 0;
  }
  .topTroublesSection .topTroublesBox .child .troubleCardList.slick-initialized .slick-track {
    display: flex;
    align-items: stretch;
  }
  .topTroublesSection .topTroublesBox .child .troubleCardList.slick-initialized .slick-slide {
    height: auto;
  }
  .topTroublesSection .topTroublesBox .child .troubleCardList.slick-initialized .slick-slide > div {
    height: 100%;
  }
  .topTroublesSection .topTroublesBox .child .troubleCardList.slick-initialized .slick-slide .troubleCard {
    height: 100%;
  }
}
.topTroublesSection .topTroublesBox .child .troubleCardList .troubleCard {
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and ( max-width : 768px ) {
  .topTroublesSection .topTroublesBox .child .troubleCardList .troubleCard {
    padding: 35px 40px 0;
    margin: 0 15px 6px;
  }
}
@media screen and ( max-width : 768px ) {
  .topTroublesSection .topTroublesBox .child .troubleCardList .troubleCard {
    min-width: calc(100vw - 100px);
    max-width: calc(100vw - 100px);
    margin: 20px 15px 8px;
  }
}
.topTroublesSection .topTroublesBox .child .troubleCardList .troubleCard .troubleCardText {
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333;
  margin: -0.5em 0;
  padding-bottom: 30px;
}
@media screen and ( max-width : 768px ) {
  .topTroublesSection .topTroublesBox .child .troubleCardList .troubleCard .troubleCardText {
    font-size: 18px;
  }
}
.topTroublesSection .topTroublesBox .child .troubleCardList .troubleCard .troubleCardArrow {
  line-height: 0;
  margin-bottom: 30px;
}
.topTroublesSection .topTroublesBox .child .troubleCardList .troubleCard .troubleCardArrow img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
.topTroublesSection .topTroublesBox .child .troubleCardList .troubleCard .troubleCardImage {
  margin-top: auto;
}
.topTroublesSection .topTroublesBox .child .troubleCardList .troubleCard .troubleCardImage img {
  width: 100%;
  height: auto;
  width: 167px;
}
@media screen and ( max-width : 768px ) {
  .topTroublesSection .topTroublesBox .child .slick-prev.troubleCardSliderArrow,
.topTroublesSection .topTroublesBox .child .slick-next.troubleCardSliderArrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
  }
  .topTroublesSection .topTroublesBox .child .slick-prev.troubleCardSliderArrow::before,
.topTroublesSection .topTroublesBox .child .slick-next.troubleCardSliderArrow::before {
    display: none;
  }
  .topTroublesSection .topTroublesBox .child .slick-prev.troubleCardSliderArrow img,
.topTroublesSection .topTroublesBox .child .slick-next.troubleCardSliderArrow img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .topTroublesSection .topTroublesBox .child .slick-prev.troubleCardSliderArrow {
    left: 30px;
  }
  .topTroublesSection .topTroublesBox .child .slick-next.troubleCardSliderArrow {
    right: 30px;
  }
}

.bannerWrap {
  background: #ed6c00;
  padding: 0px 20px 60px;
  position: relative;
}
@media screen and ( max-width : 768px ) {
  .bannerWrap {
    padding: 0px 20px 60px;
  }
}
.bannerWrap .bannerTriangle {
  line-height: 0;
  text-align: center;
  margin-bottom: 40px;
}
.bannerWrap .bannerTriangle img {
  display: block;
  width: 100%;
  max-width: 185px;
  height: auto;
  margin: 0 auto;
}
.bannerWrap .bannerInner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.bannerWrap .bannerInner .bottomLogo {
  margin-bottom: 30px;
}
.bannerWrap .bannerInner .bottomLogo img {
  width: 101px;
  height: auto;
  max-width: 100%;
}
.bannerWrap .bannerInner .bannerCopy {
  font-size: 24px;
  letter-spacing: 0.1em;
  color: #fff;
  margin: -0.5em 0;
  padding-bottom: 30px;
  line-height: 2.16;
}
@media screen and ( max-width : 768px ) {
  .bannerWrap .bannerInner .bannerCopy {
    font-size: 18px;
  }
}
.bannerWrap .bannerInner .bannerCta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and ( max-width : 768px ) {
  .bannerWrap .bannerInner .bannerCta {
    gap: 10px;
  }
}
.bannerWrap .bannerInner .bannerCta .bannerCtaLabelWrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 238px;
  border: 2px solid #f5f2e9;
  border-radius: 7px;
}
@media screen and ( max-width : 768px ) {
  .bannerWrap .bannerInner .bannerCta .bannerCtaLabelWrap {
    width: 100%;
    max-width: 292px;
  }
}
.bannerWrap .bannerInner .bannerCta .bannerCtaLabelWrap.bottom {
  height: 79px;
}
@media screen and ( max-width : 768px ) {
  .bannerWrap .bannerInner .bannerCta .bannerCtaLabelWrap.bottom {
    height: auto;
  }
}
.bannerWrap .bannerInner .bannerCta .bannerCtaLabelWrap .bannerCtaLabel {
  font-size: 21px;
  letter-spacing: 0.1em;
  color: #f5f2e9;
  padding: 0 15px;
}
.bannerWrap .bannerInner .bannerCta .bannerTel {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #f5f2e9;
  text-decoration: none;
}
@media screen and ( max-width : 768px ) {
  .bannerWrap .bannerInner .bannerCta .bannerTel {
    font-size: 36px;
  }
}
.bannerWrap .bannerInner .bannerCta .bannerHours {
  font-size: 16px;
  letter-spacing: 0.07em;
  color: #f5f2e9;
  margin: 0;
  flex-shrink: 0;
}
@media screen and ( max-width : 768px ) {
  .bannerWrap .bannerInner .bannerCta .bannerHours {
    font-size: 14px;
  }
}
.bannerWrap .bannerInner .bannerCta .line {
  width: 326px;
}
.bannerWrap .bannerInner .bannerCta .line img {
  display: block;
}
.bannerWrap .bannerInner .ctaBlock {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and ( max-width : 768px ) {
  .bannerWrap .bannerInner .ctaBlock {
    margin-bottom: 30px;
  }
}
.bannerWrap .bannerInner .ctaBlock:hover {
  opacity: 0.9;
}
.bannerWrap .bannerInner .ctaBlock .ctaLabel {
  display: block;
  font-size: 14px;
  color: #ED6C00;
  white-space: nowrap;
  letter-spacing: 0.1em;
  line-height: 1;
}
.bannerWrap .bannerInner .ctaBlock .ctaTel {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 7px;
}
@media screen and ( max-width : 768px ) {
  .bannerWrap .bannerInner .ctaBlock .ctaTel {
    font-size: 36px;
  }
}
.bannerWrap .bannerInner .ctaBlock .ctaHours {
  display: block;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}
@media screen and ( max-width : 768px ) {
  .bannerWrap .bannerInner .ctaBlock .ctaHours {
    font-size: 16px;
  }
}
.bannerWrap .bannerInner .ctaBlock .ctaText {
  display: block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and ( max-width : 768px ) {
  .bannerWrap .bannerInner .ctaBlock .ctaText {
    font-size: 11px;
  }
}

.topServiceAboutWrap {
  background: #F5F2E9;
  padding: 90px 40px 100px;
}
@media screen and ( max-width : 768px ) {
  .topServiceAboutWrap {
    padding: 90px 20px 90px;
  }
}
.topServiceAboutWrap .titleBox {
  max-width: 1280px;
  margin: 0 auto 60px;
}
@media screen and ( max-width : 768px ) {
  .topServiceAboutWrap .titleBox {
    margin: 0 auto 45px;
    padding: 0 20px;
  }
}
.topServiceAboutWrap .topServiceAboutBox {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and ( max-width : 768px ) {
  .topServiceAboutWrap .topServiceAboutBox {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
  }
}
.topServiceAboutWrap .topServiceAboutBox .child {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and ( max-width : 768px ) {
  .topServiceAboutWrap .topServiceAboutBox .child:last-child {
    margin-bottom: 0;
  }
}
.topServiceAboutWrap .topServiceAboutBox .child .imageInner {
  line-height: 0;
  margin-bottom: 30px;
}
.topServiceAboutWrap .topServiceAboutBox .child .imageInner img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 15px;
}
@media screen and ( max-width : 768px ) {
  .topServiceAboutWrap .topServiceAboutBox .child .imageInner {
    padding: 0 30px;
  }
}
.topServiceAboutWrap .topServiceAboutBox .child .title {
  text-align: center;
  margin-bottom: 30px;
}
.topServiceAboutWrap .topServiceAboutBox .child .title h4 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ED6C00;
  margin: 0;
  line-height: 1.4;
  margin: -0.5em 0;
}
@media screen and ( max-width : 768px ) {
  .topServiceAboutWrap .topServiceAboutBox .child .title h4 {
    font-size: 21px;
  }
}
.topServiceAboutWrap .topServiceAboutBox .child .textInner {
  flex: 1;
}
.topServiceAboutWrap .topServiceAboutBox .child .textInner p {
  font-size: 16px;
  line-height: 2.18;
  letter-spacing: 0.03em;
  color: #333;
  margin: -0.5em 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.topAttemptWrap {
  position: relative;
  background: url("../images/top/topAttemptBg.jpg") no-repeat center/cover;
  padding: 100px 40px 95px;
  text-align: center;
}
@media screen and ( max-width : 768px ) {
  .topAttemptWrap {
    padding: 85px 20px 90px;
  }
}
.topAttemptWrap .titleBox {
  max-width: 1280px;
  margin: 0 auto 60px;
  text-align: center;
}
@media screen and ( max-width : 768px ) {
  .topAttemptWrap .titleBox {
    margin: 0 auto 45px;
  }
}
.topAttemptWrap .topAttemptBox {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.topAttemptWrap .topAttemptBox .child .text {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and ( max-width : 768px ) {
  .topAttemptWrap .topAttemptBox .child .text {
    text-align: left;
  }
}
.topAttemptWrap .topAttemptBox .child .text p {
  font-size: 16px;
  line-height: 2.18;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
  margin: -0.5em 0;
}
@media screen and ( max-width : 768px ) {
  .topAttemptWrap .topAttemptBox .child .text p {
    font-size: 14px;
  }
}
.topAttemptWrap .topAttemptBox .child .headerCta {
  text-align: center;
}
.topAttemptWrap .topAttemptBox .child .headerCta .ctaBlock {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.topAttemptWrap .topAttemptBox .child .headerCta .ctaBlock:hover {
  opacity: 0.9;
}
.topAttemptWrap .topAttemptBox .child .headerCta .ctaBlock .ctaLabelWrap {
  display: inline-block;
  background: #fff;
  border-radius: 7px;
  padding: 8px 23px;
  margin-bottom: 8px;
}
.topAttemptWrap .topAttemptBox .child .headerCta .ctaBlock .ctaLabel {
  display: block;
  font-size: 14px;
  color: #ED6C00;
  white-space: nowrap;
  letter-spacing: 0.1em;
  line-height: 1;
}
.topAttemptWrap .topAttemptBox .child .headerCta .ctaBlock .ctaTel {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
@media screen and ( max-width : 768px ) {
  .topAttemptWrap .topAttemptBox .child .headerCta .ctaBlock .ctaTel {
    font-size: 20px;
  }
}
.topAttemptWrap .topAttemptBox .child .headerCta .ctaBlock .ctaHours {
  display: block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.9);
}
@media screen and ( max-width : 768px ) {
  .topAttemptWrap .topAttemptBox .child .headerCta .ctaBlock .ctaHours {
    font-size: 11px;
  }
}

.topFlowWrap {
  background: #F6F2E9;
  padding: 120px 40px;
  position: relative;
}
@media screen and ( max-width : 768px ) {
  .topFlowWrap {
    padding: 90px 40px;
  }
}
.topFlowWrap .aboutBgImg {
  position: absolute;
  right: -391px;
  bottom: -90px;
  width: 551px;
  height: auto;
  pointer-events: none;
  z-index: 1;
}
@media screen and ( max-width : 1024px ) {
  .topFlowWrap .aboutBgImg {
    right: -300px;
    bottom: -90px;
    width: 450px;
  }
}
@media screen and ( max-width : 768px ) {
  .topFlowWrap .aboutBgImg {
    right: -100px;
    top: auto;
    bottom: 5px;
    width: 204.16px;
  }
}
.topFlowWrap .titleBox {
  max-width: 1280px;
  margin: 0 auto 60px;
}
.topFlowWrap .topFlowBox {
  max-width: 1280px;
  margin: 0 auto;
}
.topFlowWrap .topFlowBox .child {
  position: relative;
}
.topFlowWrap .topFlowBox .topFlowList {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 50px 60px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: visible;
}
@media screen and ( max-width : 768px ) {
  .topFlowWrap .topFlowBox .topFlowList {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 30px;
  }
  .topFlowWrap .topFlowBox .topFlowList::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(to bottom, #999 0, #999 2px, transparent 2px, transparent 8px);
    z-index: 0;
    pointer-events: none;
  }
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem {
  position: relative;
  margin: 0;
  overflow: visible;
}
@media screen and ( max-width : 768px ) {
  .topFlowWrap .topFlowBox .topFlowList .topFlowItem {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  right: -30px;
  height: 2px;
  background: repeating-linear-gradient(to right, #999 0, #999 2px, transparent 2px, transparent 8px);
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}
@media screen and ( max-width : 768px ) {
  .topFlowWrap .topFlowBox .topFlowList .topFlowItem::before {
    display: none;
  }
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem.topFlowItem01 {
  grid-column: 1/3;
  grid-row: 1;
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem.topFlowItem01::before {
  left: 50%;
  right: -30px;
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem.topFlowItem02 {
  grid-column: 3/5;
  grid-row: 1;
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem.topFlowItem03 {
  grid-column: 5/7;
  grid-row: 1;
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem.topFlowItem03::before {
  right: -5000px;
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem.topFlowItem04 {
  grid-column: 2/4;
  grid-row: 2;
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem.topFlowItem04::before {
  left: -5000px;
}
@media screen and ( max-width : 768px ) {
  .topFlowWrap .topFlowBox .topFlowList .topFlowItem.topFlowItem04 {
    grid-column: 1;
  }
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem.topFlowItem05 {
  grid-column: 4/6;
  grid-row: 2;
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem.topFlowItem05::before {
  left: -30px;
  right: 50%;
}
@media screen and ( max-width : 768px ) {
  .topFlowWrap .topFlowBox .topFlowList .topFlowItem.topFlowItem05 {
    grid-column: 1;
  }
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem .topFlowCard {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  padding: 35px 30px 30px;
  height: 100%;
  min-height: 252px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}
@media screen and ( max-width : 768px ) {
  .topFlowWrap .topFlowBox .topFlowList .topFlowItem .topFlowCard {
    min-height: 0;
  }
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem .topFlowCard .topFlowNum {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  font-weight: 600;
  color: #ED6C00;
  font-family: "Poppins", sans-serif;
  margin: 0;
  line-height: 1.45;
}
@media screen and ( max-width : 768px ) {
  .topFlowWrap .topFlowBox .topFlowList .topFlowItem .topFlowCard .topFlowNum {
    top: 20px;
    right: 20px;
    font-size: 21px;
  }
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem .topFlowCard .topFlowIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 30px;
  flex-shrink: 0;
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem .topFlowCard .topFlowIcon img {
  display: block;
  width: auto;
  height: auto;
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
  object-position: center;
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem .topFlowCard .topFlowTitle {
  font-size: 21px;
  font-weight: 700;
  color: #ED6C00;
  letter-spacing: 0.1em;
  padding: 0 0 20px 0;
  line-height: 1.4;
  margin: -0.5em 0;
}
.topFlowWrap .topFlowBox .topFlowList .topFlowItem .topFlowCard .topFlowText {
  font-size: 16px;
  color: #333;
  letter-spacing: 0.07em;
  line-height: 1.625;
  margin: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media screen and ( max-width : 768px ) {
  .topFlowWrap .topFlowBox .topFlowList .topFlowItem .topFlowCard .topFlowText {
    font-size: 14px;
  }
}

.topVoiceWrap {
  padding: 90px 0px 100px;
  background: #fff url("../images/top/voiceBg.png") no-repeat center/cover;
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}
@media screen and ( max-width : 768px ) {
  .topVoiceWrap {
    padding: 60px 0 80px;
  }
}
.topVoiceWrap .titleBox {
  max-width: 1280px;
  margin: 0 auto 60px;
}
@media screen and ( max-width : 768px ) {
  .topVoiceWrap .titleBox {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
.topVoiceWrap .topVoiceBox {
  position: relative;
  max-width: 1330px;
  margin: 0 auto;
}
.topVoiceWrap .topVoiceBox .topVoiceBoxSlider {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}
.topVoiceWrap .topVoiceBox .voiceSliderList {
  list-style: none;
  padding: 0;
  display: flex;
  /* Slick 初期化時も voiceCard のデザインを崩さない ＋ 高さ揃え */
}
.topVoiceWrap .topVoiceBox .voiceSliderList.slick-initialized .slick-track {
  height: 100%;
  display: flex;
  align-items: stretch;
}
.topVoiceWrap .topVoiceBox .voiceSliderList.slick-initialized .slick-slide {
  height: 100%;
  /* 336px + margin 25px×2 = 386px で固定し、中央揃え・ガタつき防止 */
  width: 386px;
}
@media screen and ( max-width : 768px ) {
  .topVoiceWrap .topVoiceBox .voiceSliderList.slick-initialized .slick-slide {
    /* 336px + margin 50px×2 = 436px */
    width: 436px;
  }
}
.topVoiceWrap .topVoiceBox .voiceSliderList.slick-initialized .slick-slide.voiceCard {
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
}
.topVoiceWrap .topVoiceBox .voiceSliderList.slick-initialized .voiceCard .voiceCardText {
  flex: 1;
  min-height: 0;
}
.topVoiceWrap .topVoiceBox .voiceSliderList .voiceCard {
  background: #f5f2e9;
  border-radius: 20px;
  padding: 60px 30px 30px;
  box-sizing: border-box;
  margin: 20px 25px 0;
  position: relative;
  min-width: 27.5vw;
  max-width: 27.5vw;
}
@media screen and ( max-width : 768px ) {
  .topVoiceWrap .topVoiceBox .voiceSliderList .voiceCard {
    min-width: calc(100vw - 100px);
    max-width: calc(100vw - 100px);
    margin: 20px 15px 0;
  }
}
.topVoiceWrap .topVoiceBox .voiceSliderList .voiceCard .voiceCardCategory {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #fff;
  background: #ED6C00;
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 7px;
  line-height: 1;
  white-space: nowrap;
  height: 39px;
}
.topVoiceWrap .topVoiceBox .voiceSliderList .voiceCard .voiceCardImageWrap {
  overflow: hidden;
  margin: 0 auto 30px;
  width: 106px;
  height: 106px;
}
.topVoiceWrap .topVoiceBox .voiceSliderList .voiceCard .voiceCardImageWrap .voiceCardImage {
  width: 106px;
  height: 106px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.topVoiceWrap .topVoiceBox .voiceSliderList .voiceCard .voiceCardLabelWrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -0.5em 0;
  padding-bottom: 20px;
}
.topVoiceWrap .topVoiceBox .voiceSliderList .voiceCard .voiceCardLabel {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #333;
}
.topVoiceWrap .topVoiceBox .voiceSliderList .voiceCard .voiceCardStars {
  display: flex;
  align-items: center;
  gap: 3px;
}
.topVoiceWrap .topVoiceBox .voiceSliderList .voiceCard .voiceCardStars img {
  width: 14px;
  height: 14px;
  display: block;
}
.topVoiceWrap .topVoiceBox .voiceSliderList .voiceCard .voiceCardName {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: #333;
  margin: -0.5em 0;
  padding-bottom: 20px;
}
.topVoiceWrap .topVoiceBox .voiceSliderList .voiceCard .voiceCardText {
  font-size: 14px;
  letter-spacing: 0.07em;
  line-height: 1.8;
  color: #333;
  margin: -0.5em 0;
  padding-bottom: 50px;
}
.topVoiceWrap .topVoiceBox .voiceSliderList .voiceCard .voiceCardQuote {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #333;
  margin: 0;
  text-align: center;
  padding-top: 55px;
}
.topVoiceWrap .topVoiceBox .slick-prev,
.topVoiceWrap .topVoiceBox .slick-next,
.topVoiceWrap .topVoiceBox .slick-prev.voiceSliderArrow,
.topVoiceWrap .topVoiceBox .slick-next.voiceSliderArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  /* Slickテーマの白い矢印（::before）を非表示にしてオレンジ画像だけ見せる */
}
.topVoiceWrap .topVoiceBox .slick-prev::before,
.topVoiceWrap .topVoiceBox .slick-next::before,
.topVoiceWrap .topVoiceBox .slick-prev.voiceSliderArrow::before,
.topVoiceWrap .topVoiceBox .slick-next.voiceSliderArrow::before {
  display: none;
}
.topVoiceWrap .topVoiceBox .slick-prev img,
.topVoiceWrap .topVoiceBox .slick-next img,
.topVoiceWrap .topVoiceBox .slick-prev.voiceSliderArrow img,
.topVoiceWrap .topVoiceBox .slick-next.voiceSliderArrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.topVoiceWrap .topVoiceBox .slick-prev,
.topVoiceWrap .topVoiceBox .slick-prev.voiceSliderArrow,
.topVoiceWrap .topVoiceBox .slick-next,
.topVoiceWrap .topVoiceBox .slick-next.voiceSliderArrow {
  /* 位置はJSで動的に設定 */
  right: auto;
}

.topNewsWrap {
  padding: 90px 40px 100px;
  background: #F5F2E9;
  position: relative;
  z-index: 2;
}
@media screen and ( max-width : 768px ) {
  .topNewsWrap {
    padding: 90px 0 80px;
  }
}
.topNewsWrap .titleBox {
  max-width: 1280px;
  margin: 0 auto 60px;
}
@media screen and ( max-width : 768px ) {
  .topNewsWrap .titleBox {
    padding: 0 20px;
    margin-bottom: 40px;
  }
}
.topNewsWrap .titleBoxNews {
  align-items: stretch;
}
.topNewsWrap .titleBoxNews .titleBoxNewsInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
@media screen and ( max-width : 768px ) {
  .topNewsWrap .titleBoxNews .titleBoxNewsInner .subTitle {
    margin: 0 auto;
  }
}
.topNewsWrap .titleBoxNews .newsListLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 41px;
  padding: 0 10px 0 55px;
  background: #fff;
  border: 1px solid #ED6C00;
  border-radius: 20.5px;
  color: #ED6C00;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
}
.topNewsWrap .titleBoxNews .newsListLink img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  padding-left: 23px;
}
.topNewsWrap .titleBoxNews .newsListLink:hover {
  background: #ED6C00;
  color: #fff;
}
.topNewsWrap .titleBoxNews .newsListLink:hover img {
  filter: brightness(0) invert(1);
}
@media screen and ( max-width : 768px ) {
  .topNewsWrap .titleBoxNews .newsListLink {
    display: none;
  }
}
.topNewsWrap .titleBoxNews .newsListLink.smartPhone {
  display: none;
  margin: 0 auto;
}
@media screen and ( max-width : 768px ) {
  .topNewsWrap .titleBoxNews .newsListLink.smartPhone {
    display: inline-flex;
  }
}
.topNewsWrap .topNewsBox {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
@media screen and ( max-width : 768px ) {
  .topNewsWrap .topNewsBox {
    padding: 0 50px;
    margin-bottom: 60px;
  }
}
.topNewsWrap .topNewsBox .newsSliderList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 50px;
  justify-content: flex-start;
}
.topNewsWrap .topNewsBox .newsSliderList > .newsCard {
  flex: 0 1 calc((100% - 100px) / 3);
  min-width: 0;
}
@media screen and ( max-width : 768px ) {
  .topNewsWrap .topNewsBox .newsSliderList {
    flex-direction: column;
    gap: 30px;
  }
  .topNewsWrap .topNewsBox .newsSliderList > .newsCard {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}
.topNewsWrap .topNewsBox .newsSliderList.slick-initialized {
  display: block;
}
.topNewsWrap .topNewsBox .newsSliderList.slick-initialized .slick-track {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}
.topNewsWrap .topNewsBox .newsSliderList.slick-initialized .slick-slide {
  height: auto;
}
.topNewsWrap .topNewsBox .newsSliderList.slick-initialized .slick-slide > div {
  height: 100%;
}
.topNewsWrap .topNewsBox .newsSliderList.slick-initialized .slick-slide .newsCard {
  width: 100%;
  height: 100%;
  margin: 0 15px;
  box-sizing: border-box;
}
.topNewsWrap .topNewsBox .newsSliderList .newsCard {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
}
@media screen and ( max-width : 768px ) {
  .topNewsWrap .topNewsBox .newsSliderList .newsCard {
    margin: 0;
    max-width: none;
  }
}
.topNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardImageWrap {
  line-height: 0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.topNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardImageWrap .newsCardImage {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.topNewsWrap .topNewsBox .newsSliderList .newsCard .inner {
  padding: 30px;
}
.topNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardMeta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.topNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardMeta .newsCardDate {
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #ED6C00;
  letter-spacing: 0;
}
.topNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardMeta .newsCardCategory {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background: #ED6C00;
  padding: 10px 20px;
  border-radius: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  text-decoration: underline;
}
.topNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardTitle {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.78;
  padding: 0 0 30px;
  margin: -0.5em 0;
  letter-spacing: 0.05em;
}
.topNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardText {
  font-size: 14px;
  color: #333;
  line-height: 1.78;
  letter-spacing: 0.05em;
  margin: -0.5em 0;
}
.topNewsWrap .topNewsBox .slick-prev.newsSliderArrow,
.topNewsWrap .topNewsBox .slick-next.newsSliderArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.topNewsWrap .topNewsBox .slick-prev.newsSliderArrow img,
.topNewsWrap .topNewsBox .slick-next.newsSliderArrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.topNewsWrap .topNewsBox .slick-prev.newsSliderArrow {
  left: -20px;
}
@media screen and ( max-width : 768px ) {
  .topNewsWrap .topNewsBox .slick-prev.newsSliderArrow {
    left: 10px;
  }
}
.topNewsWrap .topNewsBox .slick-next.newsSliderArrow {
  right: -20px;
}
@media screen and ( max-width : 768px ) {
  .topNewsWrap .topNewsBox .slick-next.newsSliderArrow {
    right: 10px;
  }
}

.topQuestionWrap {
  background: #fff;
  padding: 110px 40px 90px;
  position: relative;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap {
    padding: 90px 20px;
  }
}
.topQuestionWrap .aboutBgImg {
  position: absolute;
  left: -391px;
  bottom: -1px;
  width: 551px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .aboutBgImg {
    left: -100px;
    width: 204px;
  }
}
.topQuestionWrap .topQuestionBox {
  max-width: 988px;
  margin: 0 auto;
}
.topQuestionWrap .topQuestionBox .titleBox {
  margin-bottom: 60px;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .titleBox {
    margin-bottom: 40px;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #ED6C00;
  letter-spacing: 0.03em;
}
.topQuestionWrap .topQuestionBox .topQuestionTitleIcon {
  font-size: 24px;
  letter-spacing: 0.1em;
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList {
  list-style: none;
  margin: 0 0 90px;
  padding: 0;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionFaqList {
    margin-bottom: 60px;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  background: #F5F2E9;
  z-index: 2;
  position: relative;
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem:last-of-type {
  margin-bottom: 0;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem {
    margin-bottom: 30px;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqQ {
  display: flex;
  align-items: flex-start;
  padding: 40px;
  position: relative;
  cursor: pointer;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqQ {
    padding: 25px 20px 30px;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqQ .topQuestionFaqQText {
  flex: 1;
  margin: -0.5em 0;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 700;
  padding-left: 10px;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqQ .topQuestionFaqQText {
    font-size: 18px;
    padding-right: 47px;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqQ .topQuestionFaqQLabel {
  line-height: 1.5;
  margin: -0.5em 0;
  font-size: 24px;
  color: #ED6C00;
  letter-spacing: 0.1em;
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqQ .topQuestionFaqToggle {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #ED6C00;
  color: #fff;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqQ .topQuestionFaqToggle {
    right: 20px;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqQ .topQuestionFaqToggle:hover {
  opacity: 0.9;
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqQ .topQuestionFaqToggle .topQuestionFaqToggleIcon {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqQ .topQuestionFaqToggle .topQuestionFaqToggleIconMinus {
  display: none;
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqQ .topQuestionFaqToggle.is-expanded .topQuestionFaqToggleIconPlus {
  display: none;
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqQ .topQuestionFaqToggle.is-expanded .topQuestionFaqToggleIconMinus {
  display: block;
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqA {
  padding: 20px 0 28px;
  margin: 0 40px;
  border-top: none;
  background-image: repeating-linear-gradient(to right, #666 0, #666 2px, transparent 2px, transparent 8px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left top;
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqA.topQuestionFaqAClosed {
  display: none;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqA {
    margin: 0 20px;
    display: flex;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqA .topQuestionFaqALabel {
  color: #6ec878;
  line-height: 1;
  margin: -0.5em 0;
  font-size: 24px;
  letter-spacing: 0.1em;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqA .topQuestionFaqALabel {
    padding-top: 20px;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqA .topQuestionFaqAText {
  display: inline-block;
  width: calc(100% - 50px);
  vertical-align: top;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqA .topQuestionFaqAText {
    width: 100%;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqA .topQuestionFaqAText p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 700;
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqA .topQuestionFaqAText p:last-child {
  margin-bottom: 0;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqA .topQuestionFaqAText p {
    font-size: 16px;
    padding-top: 10px;
    padding-left: 15px;
    margin-bottom: 10px;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqA .topQuestionFaqAText span {
  font-size: 14px;
  line-height: 1.78;
  letter-spacing: 0.05em;
  color: #333;
  font-weight: 700;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionFaqList .topQuestionFaqItem .topQuestionFaqA .topQuestionFaqAText span {
    padding-left: 15px;
    display: block;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionPartner {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #f38200;
  border-radius: 20px;
  position: relative;
  transition: opacity 0.3s;
}
.topQuestionWrap .topQuestionBox .topQuestionPartner:hover {
  opacity: 0.95;
}
.topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerInner {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and ( max-width : 1024px ) {
  .topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerInner {
    gap: 40px;
  }
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerInner {
    flex-direction: column;
    gap: 0;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerImageWrap {
  flex-shrink: 0;
  width: 211px;
  line-height: 0;
  min-width: 399px;
  background: #fff;
  text-align: center;
  border: 4px solid #f38200;
  border-radius: 20px 0 0 20px;
}
@media screen and ( max-width : 1024px ) {
  .topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerImageWrap {
    min-width: 320px;
  }
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerImageWrap {
    border-radius: 20px 20px 0 0;
    min-width: 100%;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerImageWrap .topQuestionPartnerImage {
  width: auto;
  height: 198px;
  object-fit: contain;
  padding-top: 17px;
}
@media screen and ( max-width : 1024px ) {
  .topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerImageWrap .topQuestionPartnerImage {
    height: 161px;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerContent {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerContent {
    text-align: left;
    padding: 30px 20px 40px;
    width: 100%;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerContentText {
  flex: 1;
  min-width: 0;
}
.topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerContentArrow {
  flex-shrink: 0;
  margin-left: auto;
  display: block;
  width: 38px;
  height: 38px;
  padding-right: 20px;
  object-fit: contain;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerContentArrow {
    display: none;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerContentArrowSp {
  display: none;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerContentArrowSp {
    display: block;
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 24px;
    height: 24px;
  }
}
.topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerTitle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}
.topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerTitleIcon {
  flex-shrink: 0;
}
.topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerTitleIcon img {
  display: block;
  width: 32px;
  height: auto;
  object-fit: contain;
}
.topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerText {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 700;
}
@media screen and ( max-width : 768px ) {
  .topQuestionWrap .topQuestionBox .topQuestionPartner .topQuestionPartnerText {
    font-size: 14px;
  }
}

footer {
  background: #F5F2E9;
  position: relative;
}
footer .footerBox {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
footer .footerBox .footerTopBtn {
  position: absolute;
  top: -60px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 119px;
  height: 119px;
  background: #ed6c00;
  border: 5px solid #f5f2e9;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.3s;
  z-index: 2;
}
@media screen and ( max-width : 768px ) {
  footer .footerBox .footerTopBtn {
    width: 57px;
    height: 57px;
    top: -30px;
    right: 10px;
  }
}
footer .footerBox .footerTopBtn:hover {
  opacity: 0.9;
}
footer .footerBox .footerTopBtn__label {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and ( max-width : 768px ) {
  footer .footerBox .footerTopBtn__label {
    display: none;
  }
}
footer .footerBox .footerTopBtn .topAr {
  margin-top: -20px;
}
@media screen and ( max-width : 768px ) {
  footer .footerBox .footerTopBtn .topAr {
    margin-top: 0px;
  }
}
footer .footerBox .child {
  padding: 0 20px;
  margin: 0 auto;
}
footer .footerBox .child .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 60px;
}
@media screen and ( max-width : 768px ) {
  footer .footerBox .child .inner {
    padding: 0;
  }
}
footer .footerBox .child .inner .navBox {
  display: flex;
  align-items: center;
}
@media screen and ( max-width : 768px ) {
  footer .footerBox .child .inner .navBox {
    display: none;
  }
}
footer .footerBox .child .inner .navBox .navList {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and ( max-width : 1024px ) {
  footer .footerBox .child .inner .navBox .navList {
    gap: 20px;
  }
}
footer .footerBox .child .inner .navBox .navList .list {
  margin: 0;
  padding: 0;
}
footer .footerBox .child .inner .navBox .navList .list .navLink {
  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.3s;
  white-space: nowrap;
  letter-spacing: 0.1em;
}
footer .footerBox .child .inner .navBox .navList .list .navLink:hover {
  opacity: 0.7;
}
footer .footerBox .child .inner .navBox .navList .list .navLink.homeLink {
  padding-left: 20px;
}
footer .footerBox .child .inner .navBox .navList .list .navLink.homeLink .iconHome {
  width: 15.31px;
  height: auto;
}
footer .footerBox .child .inner .footerCta {
  flex-shrink: 0;
}
@media screen and ( max-width : 768px ) {
  footer .footerBox .child .inner .footerCta {
    display: none;
  }
}
footer .footerBox .child .inner .footerCta .ctaBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
  padding-left: 40px;
}
footer .footerBox .child .inner .footerCta .ctaBlock:hover {
  opacity: 0.9;
}
@media screen and ( max-width : 1024px ) {
  footer .footerBox .child .inner .footerCta .ctaBlock {
    padding-left: 20px;
  }
}
footer .footerBox .child .inner .footerCta .ctaBlock .ctaLabelWrap {
  display: inline-block;
  background: #ED6C00;
  border-radius: 7px;
  padding: 8px 23px;
}
footer .footerBox .child .inner .footerCta .ctaBlock .ctaLabel {
  display: block;
  font-size: 14px;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.1em;
  line-height: 1;
}
footer .footerBox .child .inner .footerCta .ctaBlock .ctaTel {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #ED6C00;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
footer .footerBox .child .inner .footerCta .ctaBlock .ctaHours {
  display: block;
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.07em;
}
footer .footerBox .credit {
  text-align: center;
  font-size: 12px;
  color: #ED6C00;
  letter-spacing: 0.1em;
  padding: 0 20px 90px;
  font-weight: 500;
}
@media screen and ( max-width : 768px ) {
  footer .footerBox .credit {
    padding: 30px 20px;
  }
}

.underContent header {
  position: relative;
}
.underContent header .headerBgImg {
  position: absolute;
  right: -160px;
  top: 35px;
  width: 519px;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
@media screen and ( max-width : 768px ) {
  .underContent header .headerBgImg {
    right: 10px;
    top: auto;
    bottom: 10px;
    width: 110px;
  }
}
.underContent header .headerWrap {
  background: none;
}
.underContent .privacyWrap {
  background: #F5F2E9;
  padding: 180px 40px 120px;
}
@media screen and ( max-width : 768px ) {
  .underContent .privacyWrap {
    padding: 110px 20px 80px;
  }
}
.underContent .privacyWrap .titleBox {
  max-width: 1280px;
  margin: 0 auto;
  z-index: 2;
  position: relative;
  display: block;
  flex-direction: none;
  align-items: center;
}
.underContent .privacyWrap .privacyBox {
  padding: 90px 0 0;
  max-width: 988px;
  margin: 0 auto;
}
@media screen and ( max-width : 768px ) {
  .underContent .privacyWrap .privacyBox {
    padding: 60px 0 0;
  }
}
.underContent .privacyWrap .privacyBox .privacySection {
  margin-bottom: 90px;
}
@media screen and ( max-width : 768px ) {
  .underContent .privacyWrap .privacyBox .privacySection {
    margin-bottom: 50px;
  }
}
.underContent .privacyWrap .privacyBox .privacySection .privacySectionTitle {
  padding: 0 0 40px;
  font-size: 24px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.05em;
  margin: -0.5em 0;
  line-height: 1.4;
}
@media screen and ( max-width : 768px ) {
  .underContent .privacyWrap .privacyBox .privacySection .privacySectionTitle {
    font-size: 20px;
    padding: 0 0 20px;
  }
}
.underContent .privacyWrap .privacyBox .privacySection .privacySectionBody {
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0.1em;
  color: #333;
  margin: -0.5em 0;
}
.underContent .privacyWrap .privacyBox .privacySection .privacySectionBody p {
  margin: 0 0 16px;
  font-weight: 400;
}
.underContent .privacyWrap .privacyBox .privacySection .privacySectionBody p:last-child {
  margin-bottom: 0;
}
@media screen and ( max-width : 768px ) {
  .underContent .privacyWrap .privacyBox .privacySection .privacySectionBody {
    font-size: 14px;
  }
}
.underContent .privacyWrap .privacyBox .privacyFooter {
  margin-top: 100px;
  text-align: right;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #333;
}
@media screen and ( max-width : 768px ) {
  .underContent .privacyWrap .privacyBox .privacyFooter {
    margin-top: 60px;
    font-size: 14px;
  }
}
.underContent .privacyWrap .privacyBox .privacyFooter .privacyFooterDate,
.underContent .privacyWrap .privacyBox .privacyFooter .privacyFooterCompany,
.underContent .privacyWrap .privacyBox .privacyFooter .privacyFooterRepresentative {
  margin: 0 0 8px;
  font-weight: 400;
}
.underContent .privacyWrap .privacyBox .privacyFooter .privacyFooterDate:last-child,
.underContent .privacyWrap .privacyBox .privacyFooter .privacyFooterCompany:last-child,
.underContent .privacyWrap .privacyBox .privacyFooter .privacyFooterRepresentative:last-child {
  margin-bottom: 0;
}
.underContent .topQuestionWrap {
  padding: 90px 40px 120px;
}
@media screen and ( max-width : 768px ) {
  .underContent .topQuestionWrap {
    padding: 90px 20px 80px;
  }
}
.underContent .topQuestionWrap .topQuestionFaqList {
  margin-bottom: 0;
}
.underContent .underNewsWrap {
  position: relative;
  padding: 180px 40px 25px;
}
@media screen and ( max-width : 768px ) {
  .underContent .underNewsWrap {
    padding: 110px 20px 25px;
  }
}
.underContent .underNewsWrap .titleBox {
  max-width: 1280px;
  margin: 0 auto 60px;
  z-index: 2;
  position: relative;
  display: block;
  flex-direction: none;
  align-items: center;
}
@media screen and ( max-width : 768px ) {
  .underContent .underNewsWrap .titleBox {
    margin: 0 auto 30px;
  }
}
.underContent .underNewsWrap .menuBoxBox {
  border: 2px solid #ED6C00;
  border-radius: 18px;
  max-width: 1280px;
  margin: 0 auto 60px;
}
.underContent .underNewsWrap .menuBoxBox .menuBox {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
}
.underContent .underNewsWrap .menuBoxBox .menuBox .divider {
  width: 2px;
  height: 40px;
  background: #fff;
}
.underContent .underNewsWrap .menuBoxBox .menuBox .child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc((100% - 4px) / 3);
  text-align: center;
  line-height: 1;
}
.underContent .underNewsWrap .menuBoxBox .menuBox .child.orange {
  background: #ed6c00;
}
.underContent .underNewsWrap .menuBoxBox .menuBox .child.orange a {
  color: #fff;
}
.underContent .underNewsWrap .menuBoxBox .menuBox .child.white {
  background: #fff;
}
.underContent .underNewsWrap .menuBoxBox .menuBox .child.white a {
  color: #ed6c00;
}
.underContent .underNewsWrap .menuBoxBox .menuBox .child:first-child {
  border-radius: 15px 0 0 15px;
}
.underContent .underNewsWrap .menuBoxBox .menuBox .child:last-child {
  border-radius: 0 15px 15px 0;
}
.underContent .underNewsWrap .menuBoxBox .menuBox .child a {
  display: inline-block;
  width: 100%;
  padding: 27px 0;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
}
@media screen and ( max-width : 768px ) {
  .underContent .underNewsWrap .menuBoxBox .menuBox .child a {
    padding: 13px 0;
    font-size: 14px;
  }
}
.underContent .underNewsWrap .topNewsBox {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
@media screen and ( max-width : 768px ) {
  .underContent .underNewsWrap .topNewsBox {
    padding: 0 50px;
    margin-bottom: 60px;
  }
}
.underContent .underNewsWrap .topNewsBox .newsSliderList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media screen and ( max-width : 1240px ) {
  .underContent .underNewsWrap .topNewsBox .newsSliderList {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and ( max-width : 1024px ) {
  .underContent .underNewsWrap .topNewsBox .newsSliderList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and ( max-width : 768px ) {
  .underContent .underNewsWrap .topNewsBox .newsSliderList {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.underContent .underNewsWrap .topNewsBox .newsSliderList.slick-initialized {
  display: block;
}
.underContent .underNewsWrap .topNewsBox .newsSliderList.slick-initialized .slick-track {
  display: flex;
  align-items: stretch;
}
.underContent .underNewsWrap .topNewsBox .newsSliderList.slick-initialized .slick-slide {
  height: auto;
}
.underContent .underNewsWrap .topNewsBox .newsSliderList.slick-initialized .slick-slide > div {
  height: 100%;
}
.underContent .underNewsWrap .topNewsBox .newsSliderList.slick-initialized .slick-slide .newsCard {
  width: 100%;
  height: 100%;
  margin: 0 15px;
  box-sizing: border-box;
}
.underContent .underNewsWrap .topNewsBox .newsSliderList .newsCard {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
}
@media screen and ( max-width : 768px ) {
  .underContent .underNewsWrap .topNewsBox .newsSliderList .newsCard {
    margin: 0;
    max-width: none;
  }
}
.underContent .underNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardImageWrap {
  line-height: 0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.underContent .underNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardImageWrap .newsCardImage {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.underContent .underNewsWrap .topNewsBox .newsSliderList .newsCard .inner {
  padding: 30px;
}
.underContent .underNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardMeta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.underContent .underNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardMeta .newsCardDate {
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #ED6C00;
  letter-spacing: 0;
}
.underContent .underNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardMeta .newsCardCategory {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background: #ED6C00;
  padding: 10px 20px;
  border-radius: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  text-decoration: underline;
}
.underContent .underNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardTitle {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.78;
  padding: 0 0 30px;
  margin: -0.5em 0;
  letter-spacing: 0.05em;
}
.underContent .underNewsWrap .topNewsBox .newsSliderList .newsCard .newsCardText {
  font-size: 14px;
  color: #333;
  line-height: 1.78;
  letter-spacing: 0.05em;
  margin: -0.5em 0;
}
.underContent .underNewsWrap .topNewsBox .slick-prev.newsSliderArrow,
.underContent .underNewsWrap .topNewsBox .slick-next.newsSliderArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.underContent .underNewsWrap .topNewsBox .slick-prev.newsSliderArrow img,
.underContent .underNewsWrap .topNewsBox .slick-next.newsSliderArrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.underContent .underNewsWrap .topNewsBox .slick-prev.newsSliderArrow {
  left: -20px;
}
@media screen and ( max-width : 768px ) {
  .underContent .underNewsWrap .topNewsBox .slick-prev.newsSliderArrow {
    left: 10px;
  }
}
.underContent .underNewsWrap .topNewsBox .slick-next.newsSliderArrow {
  right: -20px;
}
@media screen and ( max-width : 768px ) {
  .underContent .underNewsWrap .topNewsBox .slick-next.newsSliderArrow {
    right: 10px;
  }
}
.underContent .underNewsWrap .newsStepPagination {
  margin-top: 40px;
  padding: 0 50px;
  margin-bottom: 120px;
}
@media screen and ( max-width : 768px ) {
  .underContent .underNewsWrap .newsStepPagination {
    margin-top: 30px;
    padding: 0 20px;
    margin-bottom: 80px;
  }
}
.underContent .underNewsWrap .newsStepPagination .newsStepPaginationList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.underContent .underNewsWrap .newsStepPagination .newsStepPaginationItem {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #ED6C00;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.underContent .underNewsWrap .newsStepPagination .newsStepPaginationItem.is-current {
  background: #fff;
  color: #ED6C00;
  border: 2px solid #ED6C00;
}
.underContent .underNewsWrap .underNewsBreadcrumb {
  max-width: 1280px;
  margin: 0 auto;
}
.underContent .underNewsWrap .underNewsBreadcrumb .underNewsBreadcrumbList {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.underContent .underNewsWrap .underNewsBreadcrumb .underNewsBreadcrumbItem {
  display: flex;
  align-items: center;
}
.underContent .underNewsWrap .underNewsBreadcrumb .underNewsBreadcrumbItem.underNewsBreadcrumbSeparator {
  color: #333;
  font-size: 14px;
  line-height: 1;
}
.underContent .underNewsWrap .underNewsBreadcrumb .underNewsBreadcrumbLink {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
}
.underContent .underNewsWrap .underNewsBreadcrumb .underNewsBreadcrumbLink:hover {
  opacity: 0.85;
}
.underContent .underNewsWrap .underNewsBreadcrumb .underNewsBreadcrumbLink .underNewsBreadcrumbHomeIcon {
  display: block;
  width: 12px;
  height: 15px;
  vertical-align: middle;
}
.underContent .underNewsWrap .underNewsBreadcrumb .underNewsBreadcrumbCurrent {
  font-size: 12px;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1;
}
.underContent .newsDetailWrap {
  padding: 180px 40px 25px;
  position: relative;
}
@media screen and ( max-width : 768px ) {
  .underContent .newsDetailWrap {
    padding: 110px 20px 25px;
  }
}
.underContent .newsDetailWrap .titleBox {
  max-width: 1280px;
  margin: 0 auto 60px;
  z-index: 2;
  position: relative;
  display: block;
  flex-direction: none;
  align-items: center;
}
@media screen and ( max-width : 768px ) {
  .underContent .newsDetailWrap .titleBox {
    margin: 0 auto 30px;
  }
}
.underContent .newsDetailWrap .newsDetailBox {
  max-width: 1280px;
  margin: 0 auto;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailHeader .newsDetailMeta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailHeader .newsDetailMeta .newsDetailDate {
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #ED6C00;
  letter-spacing: 0;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailHeader .newsDetailMeta .newsDetailCategory {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background: #ED6C00;
  padding: 10px 20px;
  border-radius: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  text-decoration: underline;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailHeader .newsDetailTitle {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  letter-spacing: 0.05em;
  margin: 0 0 60px;
  line-height: 1.5;
}
@media screen and ( max-width : 768px ) {
  .underContent .newsDetailWrap .newsDetailBox .newsDetailHeader .newsDetailTitle {
    margin: 0 0 30px;
  }
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 160px;
}
@media screen and ( max-width : 1024px ) {
  .underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
  }
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailMainChild {
  width: calc(65% - 30px);
}
@media screen and ( max-width : 1024px ) {
  .underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailMainChild {
    width: 100%;
  }
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailMainChild .newsDetailInner .newsDetailImageWrap {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
  line-height: 0;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailMainChild .newsDetailInner .newsDetailImage {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailMainChild .newsDetailInner .newsDetailBody {
  font-size: 16px;
  color: #333;
  letter-spacing: 0.1em;
  margin-bottom: 70px;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailMainChild .newsDetailInner .newsDetailBody p {
  margin: -0.5em 0;
  line-height: 2.44;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailMainChild .newsDetailInner .newsDetailBody p:last-child {
  margin-bottom: 0;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailMainChild .newsDetailInner .newsDetailNav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 10px;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailMainChild .newsDetailInner .newsDetailNav .newsDetailNavPrev {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  font-weight: 600;
  text-align: center;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.05em;
  background: #fafafa url("../images/news/orangePoint.svg") left 20px center no-repeat;
  background-size: 8px;
  padding: 24px 24px 24px 36px;
  border-radius: 10px 0 0 10px;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailMainChild .newsDetailInner .newsDetailNav .newsDetailNavNext {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  font-weight: 600;
  text-align: center;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.05em;
  background: #fafafa url("../images/news/orangePoint.svg") right 20px center no-repeat;
  background-size: 8px;
  padding: 24px 36px 24px 24px;
  border-radius: 0 10px 10px 0;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailSidebarChild {
  width: calc(35% - 30px);
  background: #fff;
  border-radius: 20px;
}
@media screen and ( max-width : 1024px ) {
  .underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailSidebarChild {
    width: 100%;
  }
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailSidebarChild .newsDetailInner {
  padding: 30px;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailSidebarChild .newsDetailInner .newsDetailSidebarTitle {
  font-size: 24px;
  color: #ED6C00;
  letter-spacing: 0.03em;
  margin: 0 0 30px;
  text-align: center;
  line-height: 1;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailSidebarChild .newsDetailInner .newsDetailSidebarList {
  list-style: none;
  margin: 0;
  padding: 0;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailSidebarChild .newsDetailInner .newsDetailSidebarCard {
  border-top: 1px solid #f5f2e9;
  padding-top: 30px;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailSidebarChild .newsDetailInner .newsDetailSidebarCard .newsDetailSidebarDate {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #ED6C00;
  letter-spacing: 0;
  margin-right: 15px;
  margin-bottom: 20px;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailSidebarChild .newsDetailInner .newsDetailSidebarCard .newsDetailSidebarCategory {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  background: #ED6C00;
  padding: 10px 20px;
  border-radius: 18px;
  line-height: 1;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  text-decoration: underline;
  margin-bottom: 20px;
}
.underContent .newsDetailWrap .newsDetailBox .newsDetailContentBox .newsDetailSidebarChild .newsDetailInner .newsDetailSidebarCard .newsDetailSidebarCardTitle {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #333;
  line-height: 1.78;
  padding: 0 0 30px;
  margin: -0.5em 0;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.underContent .newsDetailWrap .underNewsBreadcrumb {
  max-width: 1280px;
  margin: 0 auto;
}
.underContent .newsDetailWrap .underNewsBreadcrumb .underNewsBreadcrumbList {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.underContent .newsDetailWrap .underNewsBreadcrumb .underNewsBreadcrumbItem {
  display: flex;
  align-items: center;
}
.underContent .newsDetailWrap .underNewsBreadcrumb .underNewsBreadcrumbItem.underNewsBreadcrumbSeparator {
  color: #333;
  font-size: 14px;
  line-height: 1;
}
.underContent .newsDetailWrap .underNewsBreadcrumb .underNewsBreadcrumbLink {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
}
.underContent .newsDetailWrap .underNewsBreadcrumb .underNewsBreadcrumbLink:hover {
  opacity: 0.85;
}
.underContent .newsDetailWrap .underNewsBreadcrumb .underNewsBreadcrumbLink .underNewsBreadcrumbHomeIcon {
  display: block;
  width: 12px;
  height: 15px;
  vertical-align: middle;
}
.underContent .newsDetailWrap .underNewsBreadcrumb .underNewsBreadcrumbCurrent {
  font-size: 12px;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1;
}
.underContent .topAbouWrap {
  padding: 180px 40px 120px;
}
@media screen and ( max-width : 768px ) {
  .underContent .topAbouWrap {
    padding: 110px 20px 80px;
  }
}
.underContent .topAbouWrap .topAboutBox {
  margin-bottom: 0;
}
.underContent .recruitPointWrap {
  padding: 90px 40px 60px;
  position: relative;
  z-index: 2;
  background: #fff;
}
@media screen and ( max-width : 768px ) {
  .underContent .recruitPointWrap {
    padding: 90px 0 80px;
  }
}
.underContent .recruitPointWrap .pointTitle {
  position: absolute;
  top: -55px;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and ( max-width : 768px ) {
  .underContent .recruitPointWrap .pointTitle {
    top: -40px;
  }
}
.underContent .recruitPointWrap .pointTitle h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: "Poppins", sans-serif;
  color: #ED6C00;
  text-align: center;
}
@media screen and ( max-width : 768px ) {
  .underContent .recruitPointWrap .pointTitle h2 {
    font-size: 36px;
  }
}
.underContent .recruitPointWrap .pointTitle h2::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 34px;
  margin-right: 15px;
  background: url("../images/common/titleIcon.svg") no-repeat center/contain;
  flex-shrink: 0;
}
@media screen and ( max-width : 768px ) {
  .underContent .recruitPointWrap .pointTitle h2::before {
    width: 23px;
    height: 20px;
    margin-right: 10px;
  }
}
.underContent .recruitPointWrap .titleBoxrecruitPoint {
  align-items: stretch;
}
.underContent .recruitPointWrap .titleBoxrecruitPoint .titleBoxrecruitPointInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}
@media screen and ( max-width : 768px ) {
  .underContent .recruitPointWrap .titleBoxrecruitPoint .titleBoxrecruitPointInner .subTitle {
    margin: 0 auto;
  }
}
.underContent .recruitPointWrap .titleBoxrecruitPoint .recruitPointListLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 41px;
  padding: 0 10px 0 55px;
  border: 1px solid #ED6C00;
  border-radius: 20.5px;
  color: #ED6C00;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s, color 0.2s;
}
.underContent .recruitPointWrap .titleBoxrecruitPoint .recruitPointListLink img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  padding-left: 23px;
}
.underContent .recruitPointWrap .titleBoxrecruitPoint .recruitPointListLink:hover {
  background: #ED6C00;
  color: #fff;
}
.underContent .recruitPointWrap .titleBoxrecruitPoint .recruitPointListLink:hover img {
  filter: brightness(0) invert(1);
}
@media screen and ( max-width : 768px ) {
  .underContent .recruitPointWrap .titleBoxrecruitPoint .recruitPointListLink {
    display: none;
  }
}
.underContent .recruitPointWrap .titleBoxrecruitPoint .recruitPointListLink.smartPhone {
  display: none;
  margin: 0 auto;
}
@media screen and ( max-width : 768px ) {
  .underContent .recruitPointWrap .titleBoxrecruitPoint .recruitPointListLink.smartPhone {
    display: inline-flex;
  }
}
.underContent .recruitPointWrap .recruitPointBox {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
@media screen and ( max-width : 768px ) {
  .underContent .recruitPointWrap .recruitPointBox {
    padding: 0 50px;
  }
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 50px;
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList > .recruitPointCard {
  flex: 1 1 0;
  min-width: 0;
}
@media screen and ( max-width : 768px ) {
  .underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList {
    flex-direction: column;
    gap: 50px;
  }
  .underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList > .recruitPointCard {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList.slick-initialized {
  display: block;
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList.slick-initialized .slick-track {
  display: flex;
  align-items: stretch;
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList.slick-initialized .slick-slide {
  height: auto;
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList.slick-initialized .slick-slide > div {
  height: 100%;
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList.slick-initialized .slick-slide .recruitPointCard {
  width: 100%;
  height: 100%;
  margin: 0 15px;
  box-sizing: border-box;
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList .recruitPointCard {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and ( max-width : 768px ) {
  .underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList .recruitPointCard {
    margin: 0;
    max-width: none;
  }
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList .recruitPointCard .recruitPointCardImageWrap {
  line-height: 0;
  overflow: hidden;
  border-radius: 15px;
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList .recruitPointCard .recruitPointCardImageWrap .recruitPointCardImage {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList .recruitPointCard .inner {
  padding: 30px 0 0;
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList .recruitPointCard .inner .recruitPointCardMeta {
  padding-bottom: 30px;
  text-align: center;
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList .recruitPointCard .inner .recruitPointCardMeta p {
  font-size: 18px;
  color: #ED6C00;
  margin: -0.5em 0;
  letter-spacing: 0.05em;
  line-height: 1.78;
}
.underContent .recruitPointWrap .recruitPointBox .recruitPointSliderList .recruitPointCard .inner .recruitPointCardText {
  font-size: 14px;
  color: #333;
  line-height: 1.78;
  letter-spacing: 0.05em;
  margin: -0.5em 0;
}
.underContent .recruitPointWrap .recruitPointBox .slick-prev.recruitPointSliderArrow,
.underContent .recruitPointWrap .recruitPointBox .slick-next.recruitPointSliderArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
.underContent .recruitPointWrap .recruitPointBox .slick-prev.recruitPointSliderArrow img,
.underContent .recruitPointWrap .recruitPointBox .slick-next.recruitPointSliderArrow img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.underContent .recruitPointWrap .recruitPointBox .slick-prev.recruitPointSliderArrow {
  left: -20px;
}
@media screen and ( max-width : 768px ) {
  .underContent .recruitPointWrap .recruitPointBox .slick-prev.recruitPointSliderArrow {
    left: 10px;
  }
}
.underContent .recruitPointWrap .recruitPointBox .slick-next.recruitPointSliderArrow {
  right: -20px;
}
@media screen and ( max-width : 768px ) {
  .underContent .recruitPointWrap .recruitPointBox .slick-next.recruitPointSliderArrow {
    right: 10px;
  }
}
.underContent .rewardWrap {
  background: #fff;
  padding: 0 40px;
  position: relative;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap {
    padding: 0px 20px;
  }
}
.underContent .rewardWrap .rewardBox {
  max-width: 1280px;
  margin: 0 auto;
}
.underContent .rewardWrap .rewardBox .rewardTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: #ED6C00;
  letter-spacing: 0.03em;
}
.underContent .rewardWrap .rewardBox .rewardTitleIcon {
  font-size: 24px;
  letter-spacing: 0.1em;
}
.underContent .rewardWrap .rewardBox .rewardFaqList {
  list-style: none;
  margin: 0 0 90px;
  padding: 0;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardFaqList {
    margin-bottom: 60px;
  }
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  background: #F5F2E9;
  z-index: 2;
  position: relative;
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem:last-of-type {
  margin-bottom: 0;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem {
    margin-bottom: 30px;
  }
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqQ {
  display: flex;
  align-items: flex-start;
  padding: 40px;
  position: relative;
  cursor: pointer;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqQ {
    padding: 25px 20px 30px;
  }
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqQ .rewardFaqQText {
  flex: 1;
  margin: -0.5em 0;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 700;
  padding-left: 10px;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqQ .rewardFaqQText {
    font-size: 18px;
    padding-right: 47px;
  }
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqQ .rewardFaqQLabel {
  line-height: 1.5;
  margin: -0.5em 0;
  font-size: 24px;
  color: #ED6C00;
  letter-spacing: 0.1em;
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqQ .rewardFaqToggle {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #ED6C00;
  color: #fff;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqQ .rewardFaqToggle:hover {
  opacity: 0.9;
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqQ .rewardFaqToggle .rewardFaqToggleIcon {
  display: block;
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqQ .rewardFaqToggle .rewardFaqToggleIconMinus {
  display: none;
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqQ .rewardFaqToggle.is-expanded .rewardFaqToggleIconPlus {
  display: none;
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqQ .rewardFaqToggle.is-expanded .rewardFaqToggleIconMinus {
  display: block;
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqA {
  padding: 20px 0 28px;
  margin: 0 40px;
  border-top: none;
  background-image: repeating-linear-gradient(to right, #666 0, #666 2px, transparent 2px, transparent 8px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left top;
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqA.rewardFaqAClosed {
  display: none;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqA {
    margin: 0 20px;
    display: flex;
  }
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqA .rewardFaqALabel {
  color: #6ec878;
  line-height: 1;
  margin: -0.5em 0;
  font-size: 24px;
  letter-spacing: 0.1em;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqA .rewardFaqALabel {
    padding-top: 20px;
  }
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqA .rewardFaqAText {
  display: inline-block;
  width: calc(100% - 50px);
  vertical-align: top;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqA .rewardFaqAText {
    width: 100%;
  }
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqA .rewardFaqAText p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 700;
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqA .rewardFaqAText p:last-child {
  margin-bottom: 0;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqA .rewardFaqAText p {
    font-size: 16px;
    padding-top: 10px;
    padding-left: 15px;
    margin-bottom: 10px;
  }
}
.underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqA .rewardFaqAText span {
  font-size: 14px;
  line-height: 1.78;
  letter-spacing: 0.05em;
  color: #333;
  font-weight: 700;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardFaqList .rewardFaqItem .rewardFaqA .rewardFaqAText span {
    padding-left: 15px;
    display: block;
  }
}
.underContent .rewardWrap .rewardBox .rewardCard {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #ED6C00;
  border-radius: 20px;
  position: relative;
  transition: opacity 0.3s;
}
.underContent .rewardWrap .rewardBox .rewardCard:hover {
  opacity: 0.95;
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner {
  display: flex;
  align-items: center;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner {
    flex-direction: column;
  }
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardContent {
  width: 50%;
  min-width: 0;
  display: flex;
  align-items: center;
  text-align: center;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardContent {
    text-align: left;
    padding: 30px 20px 20px;
    width: 100%;
  }
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardContent .rewardCardText {
  flex: 1;
  min-width: 0;
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardContent .rewardCardText .title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: -0.5em 0;
  line-height: 1;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  padding-bottom: 30px;
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardContent .rewardCardText .rewardCardDesc {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: #fff;
  font-weight: 700;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardContent .rewardCardText .rewardCardDesc {
    font-size: 14px;
  }
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap {
  flex-shrink: 0;
  width: 50%;
  border-radius: 0 20px 20px 0;
  border: 4px solid #ED6C00;
  background: #fff;
  padding: 20px 0;
  text-align: center;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap {
    width: 100%;
    min-width: 0;
    border-radius: 0 0 20px 20px;
    border-top: none;
    padding: 20px 16px 24px;
  }
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap .rewardCardCta .ctaBlock {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
  margin-bottom: 10px;
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap .rewardCardCta .ctaBlock:hover {
  opacity: 0.9;
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap .rewardCardCta .ctaBlock .ctaLabel {
  display: block;
  font-size: 14px;
  color: #ED6C00;
  white-space: nowrap;
  letter-spacing: 0.1em;
  line-height: 1;
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap .rewardCardCta .ctaBlock .ctaTel {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #ED6C00;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 7px;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap .rewardCardCta .ctaBlock .ctaTel {
    font-size: 36px;
  }
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap .rewardCardCta .ctaBlock .ctaHours {
  display: block;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.07em;
  color: #ED6C00;
  margin-bottom: 10px;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap .rewardCardCta .ctaBlock .ctaHours {
    font-size: 16px;
  }
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap .rewardCardCta .ctaBlock .ctaText {
  display: block;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  color: #ED6C00;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap .rewardCardCta .ctaBlock .ctaText {
    font-size: 11px;
  }
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap .rewardCardCta .line {
  width: auto;
  display: block;
}
.underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap .rewardCardCta .line img {
  max-height: 79px;
  height: auto;
}
@media screen and ( max-width : 768px ) {
  .underContent .rewardWrap .rewardBox .rewardCard .rewardCardInner .rewardCardCtaWrap .rewardCardCta .line img {
    max-height: 50px;
  }
}
.underContent .breadWrap {
  background: #F5F2E9;
  padding: 27px 40px;
}
@media screen and ( max-width : 768px ) {
  .underContent .breadWrap {
    padding: 20px 20px;
  }
}
.underContent .breadWrap .underNewsBreadcrumb {
  max-width: 1280px;
  margin: 0 auto;
}
.underContent .breadWrap .underNewsBreadcrumb .underNewsBreadcrumbList {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.underContent .breadWrap .underNewsBreadcrumb .underNewsBreadcrumbItem {
  display: flex;
  align-items: center;
}
.underContent .breadWrap .underNewsBreadcrumb .underNewsBreadcrumbItem.underNewsBreadcrumbSeparator {
  color: #333;
  font-size: 14px;
  line-height: 1;
}
.underContent .breadWrap .underNewsBreadcrumb .underNewsBreadcrumbLink {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 12px;
}
.underContent .breadWrap .underNewsBreadcrumb .underNewsBreadcrumbLink:hover {
  opacity: 0.85;
}
.underContent .breadWrap .underNewsBreadcrumb .underNewsBreadcrumbLink .underNewsBreadcrumbHomeIcon {
  display: block;
  width: 12px;
  height: 15px;
  vertical-align: middle;
}
.underContent .breadWrap .underNewsBreadcrumb .underNewsBreadcrumbCurrent {
  font-size: 12px;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1;
}
