@charset "UTF-8";
/*============================================================================================================
	base
============================================================================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 100px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #533100;
  --color-red: #D50110;
  --color-yellow: #FFDB49;
  --cv-height: 54px;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

.f-nova {
  font-weight: 400;
  font-family: "Nova Round", system-ui;
}

/*------------------------------------------
	smooth scroll / frame
------------------------------------------*/
html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 769px) {
  html {
    scroll-padding-top: var(--header-height);
  }
}

body {
  background: url(../img/bg_repeat01.webp) repeat left top/153px;
}
@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}
@media screen and (max-width: 768px) {
  body {
    background-size: 76px;
  }
}

.inner {
  width: var(--inner-width);
  margin-inline: auto;
  padding-inline: var(--inner-padding);
}

/*------------------------------------------
	scroll action
------------------------------------------*/
.js-scroll {
  -webkit-transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, transform 1.5s;
  transition: opacity 1s, transform 1.5s, -webkit-transform 1.5s;
}
.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-scroll:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.js-scroll.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
}
.js-scroll.is-fadeInUp.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .js-scroll.is-fadeInUp {
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
}
.js-scroll.is-fadeIn {
  opacity: 0;
}
.js-scroll.is-fadeIn.is-view {
  opacity: 1;
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  height: var(--header-height);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header-cv {
  height: var(--cv-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.l-header-cv__btn {
  height: 100%;
  color: #fff;
  font-size: 700px;
  font-size: 15px;
  text-align: center;
  line-height: 1.5;
}
.l-header-cv__btn a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: inherit;
  background: var(--color-red);
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 40px 5px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: min(25%, 300px) 20px 1fr;
    grid-template-columns: min(25%, 300px) 1fr;
    -ms-grid-rows: var(--cv-height) 10px 1fr;
    grid-template-rows: var(--cv-height) 1fr;
    grid-gap: 10px 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .l-header > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .l-header > *:nth-child(3) {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .l-header > *:nth-child(4) {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
  .l-header.is-scroll {
    background: #F6F2E4;
  }
  .l-header__logo {
    -ms-grid-row-span: 2;
    grid-row: span 2;
    -ms-grid-row-align: end;
        align-self: end;
  }
  .l-header-cv {
    margin-inline: auto 0;
  }
  .l-header-cv__btn {
    width: 190px;
    border-radius: 0 0 8px 8px;
  }
  .l-header-cv__btn a:hover {
    opacity: 1;
    background: var(--color-yellow);
    color: var(--color-txt);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 70px 0 15px;
  }
  .l-header__logo {
    width: 190px;
  }
  .l-header-cv {
    width: calc(100% - 10px);
    gap: 5px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 9992;
  }
  .l-header-cv__btn {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    border-radius: 8px 8px 0 0;
    letter-spacing: 0.05em;
  }
  .l-header-cv__btn a {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-bottom: none;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #D50110;
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.l-footer a, .l-footer span {
  color: inherit !important;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a, .l-footer li, .l-footer div, .l-footer span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-footer-inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 50px 10px;
}
.l-footer-link, .l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  gap: 20px 0;
}
.l-footer-link__item, .l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}
.l-footer-link__item + .l-footer-link__item, .l-footer-link__item + .l-footer-nav__item, .l-footer-nav__item + .l-footer-link__item, .l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-link__item + .l-footer-link__item::after, .l-footer-link__item + .l-footer-nav__item::after, .l-footer-nav__item + .l-footer-link__item::after, .l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  margin: auto;
}
.l-footer-link__item a, .l-footer-nav__item a {
  display: block;
  padding: 0 23px;
  color: inherit;
  text-decoration: none;
}
.l-footer-link__item a:hover, .l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-link {
  margin: 0 auto 15px;
}
.l-footer-nav {
  margin: 0 auto 25px;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-weight: 400;
  font-size: 11px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 40px 20px 100px;
  }
  .l-footer-link {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 0;
    margin-bottom: 30px;
  }
  .l-footer-link__item {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .l-footer-link__item a {
    padding: 0 5px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 80px;
  height: 80px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-yellow);
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--color-txt) !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: currentColor;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: calc(var(--cv-height) + 10px);
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    margin-inline: auto 0;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
  .l-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 40px;
  }
  .l-nav-list__item {
    font-size: 16px;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-red);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9992;
    position: fixed;
    top: 0;
    right: 0;
    background: var(--color-red);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 20px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 20px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-225deg);
            transform: translateY(9px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(225deg);
            transform: translateY(-9px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 80px 20px calc(var(--cv-height) + 50px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-size: 16px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-txt);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-bottom: 160px;
  overflow-x: clip;
  position: relative;
}
.l-mv-txtBox {
  width: 86%;
  position: absolute;
  top: calc(57px + max(64px, 6.4vw));
  right: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}
.l-mv-txtBox img {
  width: 100%;
}
.l-mv__txt01 {
  width: 44%;
  margin-bottom: max(20px, 2vw);
}
.l-mv__txt02 {
  width: 36.8%;
}
.l-mv__img01 {
  width: 47.9%;
  border-radius: 20px 0 0 20px;
  position: absolute;
  top: 57px;
  right: 0;
}
.l-mv__img02 {
  width: 44.4%;
  border-radius: 0 20px 20px 0;
  position: absolute;
  left: 0;
  bottom: 0;
}
.l-mv__en {
  color: rgba(83, 49, 0, 0.2);
  font-size: max(100px, 9.75vw);
  line-height: 0.7;
  position: absolute;
  right: -1%;
  bottom: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .l-mv {
    aspect-ratio: 1440/764;
  }
}
@media screen and (max-width: 768px) {
  .l-mv {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 60px;
    padding-block: 5vw 9vw;
  }
  .l-mv-txtBox {
    width: 90%;
    margin: 0 auto 6vw;
    position: static;
  }
  .l-mv__txt01 {
    width: 94%;
    margin-bottom: 6.8vw;
  }
  .l-mv__txt02 {
    width: 57.3%;
  }
  .l-mv__img01 {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 87%;
    margin: 0 0 7vw auto;
    position: static;
  }
  .l-mv__img02 {
    width: 82%;
    position: static;
  }
  .l-mv__en {
    font-size: 15.3vw;
    right: -1.3%;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding: 0 45px 10px;
  border-bottom: 8px solid var(--color-yellow);
  font-weight: 900;
  font-size: 54px;
  text-align: center;
  letter-spacing: 0.08em;
}
.c-tit01::before {
  content: "";
  display: block;
  margin: 0 auto 2px;
  background: no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    padding: 0 20px 5px;
    border-width: 4px;
    font-size: 34px;
  }
}

.c-tit02 {
  padding-bottom: 15px;
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.08em;
  position: relative;
}
.c-tit02::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-red);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    padding-bottom: 12px;
    font-size: 26px;
  }
  .c-tit02::after {
    height: 3px;
  }
}

.c-bg01 {
  background: url(../img/bg_repeat02.webp) repeat left top/153px;
}
@media screen and (max-width: 768px) {
  .c-bg01 {
    background-size: 76px;
  }
}

/*------------------------------------------
	.secUs
------------------------------------------*/
.secUs {
  overflow-x: clip;
  padding-block: 0 120px;
  position: relative;
}
.secUs::before, .secUs::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secUs::before {
  width: 290px;
  background-image: url(../img/bg_us01.webp);
  top: 105px;
  left: calc(50% - 640px);
}
.secUs::after {
  width: 340px;
  background-image: url(../img/bg_us02.webp);
  top: -40px;
  right: calc(50% - 640px);
}
.secUs__secTit {
  margin-bottom: 80px;
}
.secUs__secTit::before {
  width: 159px;
  aspect-ratio: 159/40;
  background-image: url(../img/txt_us01.svg);
}
.secUs__catch {
  margin-bottom: 40px;
  color: var(--color-red);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  text-align: center;
}
.secUs__txt {
  width: min(100%, 660px);
  margin: 0 auto 38px;
  font-size: 21px;
  line-height: 2.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .secUs {
    padding-block: 80px;
  }
  .secUs::before {
    width: 105px;
    top: 60px;
    left: -20px;
  }
  .secUs::after {
    width: 120px;
    top: 0;
    right: -20px;
  }
  .secUs__secTit {
    margin-bottom: 40px;
  }
  .secUs__secTit::before {
    width: 127px;
  }
  .secUs__catch {
    margin: 0 calc(var(--inner-padding) * -0.5) 20px;
    font-size: min(5.4vw, 22px);
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  .secUs__txt {
    width: 100%;
    margin-bottom: 60px;
    font-size: 15px;
    text-align: left;
  }
}

/*	.secUs-message
------------------------------------------*/
.secUs-message {
  width: min(100%, 912px);
  margin: 0 auto 135px;
  padding-bottom: 35px;
  border-bottom: 2px dashed;
  position: relative;
}
.secUs-message::before, .secUs-message::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background: no-repeat center/contain;
  position: absolute;
  pointer-events: none;
}
.secUs-message::before {
  width: 410px;
  background-image: url(../img/bg_message01.webp);
  bottom: -75px;
  right: calc(100% - 102px);
}
.secUs-message::after {
  width: 480px;
  background-image: url(../img/bg_message02.webp);
  top: -127px;
  left: calc(100% - 96px);
}
.secUs-message__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}
.secUs-message__tit::before, .secUs-message__tit::after {
  content: "";
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 2px;
  border-bottom: 2px dashed;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.secUs-message__tit .in {
  padding: 10px 20px;
  background: var(--color-yellow);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.secUs-message__txt {
  font-size: 18px;
  line-height: 2.2;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .secUs-message {
    width: 100%;
    margin-bottom: 100px;
    padding-bottom: 50px;
  }
  .secUs-message::before {
    width: 120px;
    bottom: -80px;
    right: auto;
    left: -40px;
  }
  .secUs-message::after {
    width: 120px;
    top: -60px;
    left: auto;
    right: -40px;
  }
  .secUs-message__tit {
    gap: 5px;
    font-size: 20px;
  }
  .secUs-message__tit::before {
    content: none;
  }
  .secUs-message__tit .in {
    padding: 5px 10px;
  }
  .secUs-message__txt {
    font-size: 15px;
    text-align: left;
  }
}

/*	.secUs-sec
------------------------------------------*/
.secUs-sec__tit {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .secUs-sec__tit {
    margin-bottom: 30px;
  }
}

/*	.secUs-shop
------------------------------------------*/
.secUs-shop {
  margin-bottom: 80px;
}
.secUs-shop-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 13px 1fr 13px 1fr 13px 1fr;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 13px;
}
.secUs-shop-list__item a {
  display: block;
}
.secUs-shop-list__img {
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secUs-shop-list__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 8px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
}
.secUs-shop-list__more::before, .secUs-shop-list__more::after {
  content: "";
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secUs-shop-list__more::before {
  width: 14px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow02.svg);
  mask-image: url(../img/ico_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: #fff;
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.secUs-shop-list__more::after {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-red);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .secUs-shop-list__item a:hover {
    opacity: 1;
  }
  .secUs-shop-list__item a:hover .secUs-shop-list__img {
    -webkit-filter: brightness(0.9);
            filter: brightness(0.9);
  }
  .secUs-shop-list__item a:hover .secUs-shop-list__more {
    color: var(--color-red);
  }
  .secUs-shop-list__item a:hover .secUs-shop-list__more::before {
    background: var(--color-txt);
  }
  .secUs-shop-list__item a:hover .secUs-shop-list__more::after {
    background: var(--color-yellow);
  }
}
@media screen and (max-width: 768px) {
  .secUs-shop-list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px 10px;
  }
  .secUs-shop-list__more {
    margin-top: 10px;
    gap: 5px;
    font-size: min(3.4vw, 16px);
  }
  .secUs-shop-list__more::before {
    width: 10px;
    right: 8px;
  }
  .secUs-shop-list__more::after {
    width: 25px;
  }
}

/*	.secUs-data
------------------------------------------*/
.secUs-data-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.secUs-data-list__item {
  overflow: hidden;
  border-radius: 8px;
}
.secUs-data-list__tit {
  padding: 12px 10px;
  background: var(--color-red);
  color: #fff;
  font-size: 28px;
  text-align: center;
}
.secUs-data-list__img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secUs-data-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .secUs-data-listWrap {
    margin-right: calc(var(--inner-padding) * -1);
    padding-right: var(--inner-padding);
  }
  .secUs-data-list__item {
    width: 230px;
  }
  .secUs-data-list__tit {
    padding: 10px;
    font-size: 20px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  overflow-x: clip;
  margin-bottom: 110px;
  padding-block: 105px 100px;
  position: relative;
}
.secJob::after {
  content: "";
  display: block;
  width: 288px;
  aspect-ratio: 577/518;
  background: url(../img/bg_job01.webp) no-repeat center/contain;
  position: absolute;
  top: 43px;
  right: calc(50% - 552px);
  pointer-events: none;
}
.secJob-inner {
  position: relative;
  z-index: 2;
}
.secJob__secTit {
  margin-bottom: 80px;
}
.secJob__secTit::before {
  width: 162px;
  aspect-ratio: 162/35;
  background-image: url(../img/txt_job01.svg);
}
@media screen and (max-width: 768px) {
  .secJob {
    margin-bottom: 0;
    padding-block: 80px;
  }
  .secJob::after {
    width: 110px;
    top: 10px;
    right: 5px;
  }
  .secJob__secTit {
    margin-bottom: 40px;
  }
  .secJob__secTit::before {
    width: 130px;
  }
}

.secJob-sec-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(51.9%, 560px) 80px 1fr;
  grid-template-columns: min(51.9%, 560px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 80px;
  margin-bottom: 30px;
}
.secJob-sec-top__img {
  width: 100%;
  border-radius: 20px;
}
.secJob-sec-top__tit {
  margin-bottom: 27px;
  color: var(--color-red);
  font-weight: 900;
  font-size: 32px;
}
.secJob-sec-top__txt {
  font-size: 18px;
}
.secJob-sec-top__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px 0 0 auto;
  color: #555;
}
.secJob-sec-top__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  position: relative;
}
.secJob-sec-top__btn a::before, .secJob-sec-top__btn a::after {
  content: "";
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secJob-sec-top__btn a::before {
  width: 14px;
  aspect-ratio: 14/10;
  -webkit-mask-image: url(../img/ico_arrow02.svg);
  mask-image: url(../img/ico_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: #fff;
  position: absolute;
  top: 0;
  right: 13px;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.secJob-sec-top__btn a::after {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-red);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secJob-sec-img {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 30px;
  margin-bottom: 60px;
}
.secJob-sec-img img {
  width: 100%;
  border-radius: 8px;
}
.secJob-sec-shop {
  padding: 0 40px 40px;
  border-radius: 8px;
  border: 2px solid;
}
.secJob-sec-shop__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -0.75em auto 24px;
  padding-inline: 40px;
  background: #F7EECE;
  font-size: 32px;
  letter-spacing: 0.08em;
  text-align: center;
}
.secJob-sec-shop-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 32px;
  width: min(100%, 640px);
  margin-inline: auto;
}
.secJob-sec-shop-list__item {
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .secJob-sec-top__btn a:hover {
    opacity: 1;
    color: var(--color-red);
  }
  .secJob-sec-top__btn a:hover::before {
    background: var(--color-txt);
  }
  .secJob-sec-top__btn a:hover::after {
    background: var(--color-yellow);
  }
}
@media screen and (max-width: 768px) {
  .secJob-sec-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 25px;
  }
  .secJob-sec-top__tit {
    margin-bottom: 20px;
    font-size: 26px;
    text-align: center;
  }
  .secJob-sec-top__txt {
    font-size: 14px;
  }
  .secJob-sec-top__btn {
    font-size: 16px;
  }
  .secJob-sec-img {
    grid-gap: 5px;
    margin-bottom: 50px;
  }
  .secJob-sec-shop {
    padding: 0 10px 20px;
  }
  .secJob-sec-shop__tit {
    margin-bottom: 20px;
    padding-inline: 20px;
    font-size: 22px;
  }
  .secJob-sec-shop-list {
    gap: 15px 20px;
    width: 100%;
  }
}

.secUs-point {
  margin-block: 30px 100px;
  padding-block: 30px 0;
  background: url(../img/bg_point01.svg) no-repeat left calc(50% - 333px) top, url(../img/bg_point02.svg) no-repeat right calc(50% - 323px) top;
}
.secUs-point__tit {
  margin-bottom: 95px;
  font-weight: 900;
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.7;
}
.secUs-point__tit .small {
  font-size: 0.78em;
}
.secUs-point__tit .line {
  padding-bottom: 10px;
  background: url(../img/bg_line01.svg) repeat-x left bottom;
  color: var(--color-red);
  font-size: 1.35em;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.secUs-point-list {
  width: min(100%, 920px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 40px;
}
.secUs-point-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 40px 60px 40px 32px;
  background: #fff;
  border-radius: 20px;
  position: relative;
}
.secUs-point-list__item::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  right: 20px;
  bottom: -24px;
}
.secUs-point-list__item:nth-of-type(1)::after {
  width: 139px;
  aspect-ratio: 139/143;
  background-image: url(../img/ico_point01.svg);
}
.secUs-point-list__item:nth-of-type(2)::after {
  width: 137px;
  aspect-ratio: 137/138;
  background-image: url(../img/ico_point02.svg);
}
.secUs-point-list__num {
  color: var(--color-red);
  font-size: 22px;
  text-align: center;
  line-height: 1;
  position: absolute;
  top: -40px;
  right: 20px;
}
.secUs-point-list__num .big {
  display: block;
  font-size: 2.8em;
}
.secUs-point-list__txt {
  font-weight: 900;
  font-size: 19px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
.secUs-point-list__txt .color {
  color: var(--color-red);
}
@media screen and (min-width: 769px) {
  .secUs-point-list__item:nth-of-type(2) {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .secUs-point {
    margin-block: 100px;
    padding-block: 0;
    background: none;
    position: relative;
    z-index: 2;
  }
  .secUs-point::after {
    content: "";
    display: block;
    width: calc(100% + var(--inner-padding) * 2);
    height: 75px;
    background: url(../img/bg_point01.svg) no-repeat left max(0px, 50% - 155px) bottom/auto 95%, url(../img/bg_point02.svg) no-repeat right max(0px, 50% - 150px) top/auto 100%;
    position: absolute;
    top: 75px;
    left: calc(var(--inner-padding) * -1);
    z-index: -1;
    pointer-events: none;
  }
  .secUs-point__tit {
    margin-bottom: 60px;
    font-size: min(5.3vw, 20px);
  }
  .secUs-point__tit .line {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-size: auto 0.4em;
    margin: 0 auto 3px;
  }
  .secUs-point-list {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .secUs-point-list__item {
    width: calc(100% - 30px);
    padding: 25px 20px;
  }
  .secUs-point-list__item::after {
    width: 90px !important;
    right: -35px;
    bottom: -30px;
  }
  .secUs-point-list__num {
    font-size: 15px;
    top: -35px;
    right: auto;
    left: 10px;
  }
  .secUs-point-list__txt {
    font-size: 16px;
  }
}

/*------------------------------------------
	.secMerit
------------------------------------------*/
.secMerit {
  padding-block: 0 90px;
  position: relative;
}
.secMerit::after {
  content: "";
  display: block;
  width: 278px;
  aspect-ratio: 557/463;
  background: url(../img/bg_merit01.webp) no-repeat center/contain;
  position: absolute;
  top: -50px;
  left: calc(50% - 564px);
  z-index: -1;
  pointer-events: none;
}
.secMerit__secTit {
  margin-bottom: 80px;
}
.secMerit__secTit::before {
  width: 95px;
  aspect-ratio: 95/27;
  background-image: url(../img/txt_merit01.svg);
}
.secMerit-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr 60px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
  margin-bottom: 60px;
}
.secMerit-list__item {
  position: relative;
}
.secMerit-list__num {
  color: var(--color-red);
  font-size: 14px;
  text-align: center;
  line-height: 1;
  position: absolute;
  top: -28px;
  left: 10px;
  z-index: 2;
}
.secMerit-list__num .big {
  display: block;
  font-size: 3em;
}
.secMerit-list-imgBox {
  height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #F2EAD5;
  border-radius: 8px;
  position: relative;
}
.secMerit-list__ico {
  width: auto;
  height: 75%;
  -o-object-fit: contain;
     object-fit: contain;
}
.secMerit-list-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 4px;
  position: absolute;
  top: 10px;
  right: 10px;
}
.secMerit-list-tag__item {
  padding: 1px 8px;
  border: 1px solid;
  border-radius: 2px;
  color: var(--color-red);
  font-size: 14px;
  line-height: 1.5;
}
.secMerit-list__tit {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: var(--color-red);
  font-size: 22px;
  letter-spacing: 0.08em;
  text-align: center;
}
.secMerit-list__txt {
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  .secMerit-list__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 3;
    grid-row: span 3;
    grid-gap: 23px;
  }
}
@media screen and (max-width: 768px) {
  .secMerit {
    padding-block: 80px;
  }
  .secMerit::after {
    width: 110px;
    top: 10px;
    left: 5px;
  }
  .secMerit__secTit {
    margin-bottom: 60px;
  }
  .secMerit__secTit::before {
    width: 76px;
  }
  .secMerit-list {
    width: min(100% - 20px, 300px);
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 70px;
  }
  .secMerit-list__num {
    font-size: 12px;
    top: -20px;
  }
  .secMerit-list-imgBox {
    height: 150px;
    margin-bottom: 20px;
    padding-top: 10px;
  }
  .secMerit-list__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
}

/*	.secMerit-wlb
------------------------------------------*/
.secMerit-wlb {
  padding: 0 50px 35px;
  border-radius: 8px;
  border: 2px solid;
}
.secMerit-wlb__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -0.75em auto 24px;
  padding-inline: 40px;
  background: #F7F4E8;
  font-size: 32px;
  letter-spacing: 0.08em;
  text-align: center;
}
.secMerit-wlb__txt {
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .secMerit-wlb {
    padding: 0 20px 20px;
  }
  .secMerit-wlb__tit {
    margin-bottom: 20px;
    padding-inline: 20px;
    font-size: 22px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  padding-block: 10px;
}
.secGallery img {
  width: 100%;
  border-radius: 8px;
}

/*------------------------------------------
	.secVoice
------------------------------------------*/
.secVoice {
  margin-bottom: 115px;
  padding-block: 100px;
}
.secVoice__secTit {
  margin-bottom: 80px;
}
.secVoice__secTit::before {
  width: 181px;
  aspect-ratio: 181/36;
  background-image: url(../img/txt_voice01.svg);
}
@media screen and (max-width: 768px) {
  .secVoice {
    margin-bottom: 0;
    padding-block: 80px;
  }
  .secVoice__secTit {
    margin-bottom: 50px;
  }
  .secVoice__secTit::before {
    width: 145px;
  }
}

/*	.secVoice-sec
------------------------------------------*/
.secVoice-sec + .secVoice-sec {
  margin-top: 80px;
}
.secVoice-sec__tit {
  margin-bottom: 100px;
}
.secVoice-sec-list {
  --icoSize: 140px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px 30px;
}
.secVoice-sec-list__item {
  padding: 45px 40px 35px;
  background: #fff;
  border-radius: 10px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}
.secVoice-sec-list__q {
  width: calc(100% - var(--icoSize) + 30px);
  margin-bottom: 20px;
  color: var(--color-red);
  font-size: 24px;
  line-height: 1.5;
}
.secVoice-sec-list__a {
  font-size: 18px;
}
.secVoice-sec-list__prof {
  margin-top: 10px;
  font-weight: 400;
  text-align: right;
}
.secVoice-sec-list__ico {
  width: var(--icoSize);
  position: absolute;
  top: calc(var(--icoSize) * -0.5 + 10px);
  right: 20px;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .secVoice-sec-list__item {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 3;
    grid-row: span 3;
    grid-gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .secVoice-sec + .secVoice-sec {
    margin-top: 60px;
  }
  .secVoice-sec__tit {
    margin-bottom: 40px;
  }
  .secVoice-sec-list {
    --icoSize: 75px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }
  .secVoice-sec-list__item {
    padding: 30px 20px 20px;
  }
  .secVoice-sec-list__q {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .secVoice-sec-list__a {
    font-size: 14px;
  }
  .secVoice-sec-list__ico {
    top: calc(var(--icoSize) * -0.5);
    right: 10px;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding: 0 40px 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 53%;
  grid-template-columns: 1fr 53%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 30px;
}
.secEntry-txtBox {
  width: min(100%, 470px);
  margin-inline: auto 0;
}
.secEntry-txtBox-in {
  width: min(100%, 380px);
}
.secEntry__secTit {
  margin-bottom: 40px;
  font-size: 42px;
  text-align: center;
  letter-spacing: 0.06em;
  line-height: 1.7;
}
.secEntry__btn {
  width: 100%;
  border-radius: 100px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.secEntry__btn a {
  min-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 35px;
  border-radius: inherit;
  background: var(--color-red);
  position: relative;
}
.secEntry__btn a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: currentColor;
  position: absolute;
  top: 0;
  right: 25px;
  bottom: 0;
  margin: auto;
}
.secEntry__img {
  width: 100%;
  border-radius: 40px;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background: var(--color-yellow);
    color: var(--color-txt);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding: 60px var(--inner-padding);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secEntry-txtBox {
    width: 100%;
  }
  .secEntry-txtBox-in {
    width: 100%;
  }
  .secEntry__secTit {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .secEntry__btn {
    width: min(100%, 350px);
    margin-inline: auto;
    font-size: 18px;
  }
  .secEntry__btn a {
    min-height: 70px;
    padding-inline: 30px;
  }
  .secEntry__btn a::after {
    right: 20px;
  }
  .secEntry__img {
    border-radius: 20px;
  }
}
/*# sourceMappingURL=style.css.map */