@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: #333;
  --color-blue: #1b4692;
  --color-red: #e1392a;
  --color-turquoise: #37a6cb;
  --color-blue-light: #f1f9fe;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0;
  font-weight: 500;
  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.5;
}

.f-lato {
  font-weight: 700;
  font-family: "Lato", sans-serif;
}

.f-roboto {
  font-weight: 600;
  font-style: italic;
  font-family: "Roboto", sans-serif;
}

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

@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}

.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);
  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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 9990;
  top: 0;
  left: 0;
}
.l-header__logo a,
.l-header__logo img {
  display: block;
}
.l-header__logo-txt {
  display: block;
  margin-top: 10px;
  padding: 4px;
  border: 1px solid;
  color: var(--color-blue);
  text-align: center;
  line-height: 1.3;
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .l-header {
    min-width: 1000px;
    gap: 20px;
    padding-inline: 30px;
    position: fixed;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header:not(.is-scroll) {
    --header-height: 130px;
  }
  .l-header.is-scroll {
    background: #fff;
  }
  .l-header.is-scroll .l-header__logo img {
    width: 250px;
  }
  .l-header.is-scroll .l-header__logo-txt {
    font-size: 13px;
  }
  .l-header__logo img, .l-header__logo-txt {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 0;
    left: 0 !important;
  }
  .l-header__logo {
    width: 177px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 9990;
  }
  .l-header__logo-txt {
    margin-top: 8px;
    padding: 2px;
    font-size: 11px;
  }
}

/*	.l-header__entry
------------------------------------------*/
.l-header__entry {
  width: 165px;
  height: 74px;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.15em;
}
.l-header__entry 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-blue);
}
@media screen and (min-width: 769px) {
  .l-header__entry {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: var(--color-turquoise);
  }
}
@media screen and (max-width: 768px) {
  .l-header__entry {
    width: calc(100% - var(--cv-height));
    height: var(--cv-height);
    border-radius: 8px 8px 0 0;
    font-size: 16px;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9992;
  }
}

/*	.l-header-visit
------------------------------------------*/
.l-header-visit {
  --itemSize: 224px;
  overflow: clip;
  width: var(--itemSize);
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  position: fixed;
  right: 15px;
  bottom: 90px;
  z-index: 9992;
}
.l-header-visit a {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 100%;
  background: var(--color-blue);
  position: relative;
}
.l-header-visit a::after {
  content: "";
  display: block;
  width: 89%;
  aspect-ratio: 1/1;
  background: url(../img/txt_entry01.svg) no-repeat center/contain;
  border-radius: inherit;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
.l-header-visit__in {
  width: 100%;
  aspect-ratio: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4%;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.l-header-visit__in::before, .l-header-visit__in::after {
  content: "";
  display: block;
  width: 67%;
  aspect-ratio: 1/1;
  background: #fff;
  border-radius: inherit;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  pointer-events: none;
}
.l-header-visit__in::after {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.l-header-visit__txt01 {
  color: var(--color-blue);
  padding-inline: 0.7em;
  font-size: 0.7em;
  line-height: 1.3;
  position: relative;
}
.l-header-visit__txt01::before, .l-header-visit__txt01::after {
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background: currentColor;
  position: absolute;
  bottom: 0.1em;
}
.l-header-visit__txt01::before {
  left: 0;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
.l-header-visit__txt01::after {
  right: 0;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}
.l-header-visit__txt02 {
  color: var(--color-red);
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .l-header-visit a:hover {
    opacity: 1;
    background: var(--color-turquoise);
  }
  .l-header-visit a:hover::after {
    -webkit-animation-play-state: paused;
            animation-play-state: paused;
  }
  .l-header-visit a:hover .l-header-visit__in::after {
    width: 100%;
    opacity: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1280px) {
  .l-header-visit {
    --itemSize: 180px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .l-header-visit {
    --itemSize: 90px;
    font-size: 9px;
    right: 5px;
    bottom: calc(var(--cv-height) + 10px);
  }
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #0b295f;
}
.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-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;
  margin: 0 auto 20px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding-inline: 20px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-weight: 400;
  font-size: 12px;
  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: 30px 20px 100px;
  }
  .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 {
    width: calc(100% - 80px);
    font-size: 10px;
    text-align: left;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  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-turquoise);
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !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 {
    display: block !important;
    opacity: 1 !important;
    width: var(--cv-height);
    height: var(--cv-height);
    border-radius: 8px 8px 0 0;
    right: 0;
    bottom: 0;
  }
  .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;
  }
  .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 20px;
  }
  .l-nav-list__item {
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-blue);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9992;
    background: var(--color-blue);
    border-radius: 50%;
  }
  .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-weight: 700;
    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-blue);
    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 {
  overflow-x: clip;
  aspect-ratio: 1440/796;
  background: url(../img/bg_mv01_pc.webp) no-repeat center top/cover;
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv__txt {
  width: 37.5%;
  position: absolute;
  top: 26.5%;
  left: 7.6%;
  z-index: 2;
}
.l-mv-imgBox {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: min(-96px, -9.6vw);
  z-index: 1;
}
.l-mv-imgBox::after {
  content: "";
  display: block;
  width: 40.5%;
  aspect-ratio: 583/313;
  background: url(../img/txt_mv02.svg) no-repeat center/contain;
  position: absolute;
  right: 5.1%;
  top: -29.5%;
  pointer-events: none;
  z-index: 3;
}
.l-mv__en {
  width: 100%;
  color: var(--color-blue);
  font-size: max(77px, 7.7vw);
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  opacity: 0.08;
  position: absolute;
  left: 0;
  bottom: 90%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l-mv {
    aspect-ratio: 390/617;
    background-image: url(../img/bg_mv01_sp.webp);
  }
  .l-mv__txt {
    width: 77.5%;
    left: 6.5%;
  }
  .l-mv-imgBox {
    width: calc(100% - 20px);
    right: 0;
    bottom: -15vw;
    margin: auto;
  }
  .l-mv-imgBox::after {
    width: 75%;
    right: -9%;
    top: -16%;
  }
  .l-mv__en {
    font-size: 13.8vw;
    text-align: left;
    left: -2.5%;
    bottom: 95.5%;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
  color: var(--color-blue);
  font-weight: 900;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0.1em;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-red);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: 0.2em;
  font-family: "Lato", sans-serif;
}
.c-tit01.is-left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 34px;
    letter-spacing: 0.06em;
  }
  .c-tit01__en {
    font-size: 13px;
  }
}

/*------------------------------------------
	.secStrength
------------------------------------------*/
.secStrength {
  --paddingTop: max(215px, (9.6vw + 120px));
  scroll-margin-top: calc(var(--paddingTop) * -1 + 20px);
  margin-bottom: 100px;
  padding-block: var(--paddingTop) 200px;
  background: var(--color-blue-light);
  position: relative;
}
.secStrength::after {
  content: "";
  display: block;
  width: 100%;
  height: 225px;
  background: url(../img/bg_town01_pc.webp) no-repeat center top/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
}
.secStrength__secTit {
  margin-bottom: 52px;
}
.secStrength__secTit .c-tit01__en {
  margin-left: 5px;
}
.secStrength-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px min(46.3%, 500px);
  grid-template-columns: 1fr min(46.3%, 500px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 30px;
  margin-bottom: 60px;
}
.secStrength-top__txt {
  line-height: 2.2;
}
.secStrength-top__txt + .secStrength-top__txt {
  margin-top: 24px;
}
.secStrength-top__imgWrap {
  margin-top: 32px;
}
.secStrength-top__img {
  width: 100%;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .secStrength {
    --paddingTop: calc(15vw + 80px);
    --inner-padding: 25px;
    scroll-margin-top: calc(var(--paddingTop) * -1 + var(--header-height));
    margin-bottom: 0;
    padding-bottom: 130px;
  }
  .secStrength::after {
    height: 120px;
    background-image: url(../img/bg_town01_sp.webp);
  }
  .secStrength__secTit {
    -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
            order: -2;
    margin-bottom: 35px;
  }
  .secStrength-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
    margin-bottom: 32px;
  }
  .secStrength-top-txtBox {
    display: contents;
  }
  .secStrength-top__txt {
    font-size: min(3.8vw, 15px);
    line-height: 1.85;
  }
  .secStrength-top__txt + .secStrength-top__txt {
    margin-top: 34px;
  }
  .secStrength-top__imgWrap {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-block: 0 32px;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 500/344.4; /* 高さを元の70%（下30%トリミング）に */
    width: 100%;
  }
  .secStrength-top__imgWrap .secStrength-top__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top center;
       object-position: top center;
    display: block;
  }
}

/*	.secStrength-list
------------------------------------------*/
.secStrength-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 45px 1fr 45px 1fr;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 45px;
}
.secStrength-list__item {
  position: relative;
}
.secStrength-list__tit {
  width: 110px;
  height: 44px;
  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: var(--color-turquoise);
  border-radius: 0 0 8px 0;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.secStrength-list__img {
  width: 100%;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .secStrength-list {
    -ms-grid-columns: 1fr 4px 1fr 4px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4px;
  }
  .secStrength-list__tit {
    width: 70px;
    height: 28px;
    font-size: 11px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  overflow-x: clip;
  padding-block: 0 140px;
  position: relative;
}
.secJob::after {
  content: "";
  display: block;
  width: 530px;
  aspect-ratio: 1060/910;
  background: url(../img/bg_square01.webp) no-repeat center/contain;
  position: absolute;
  top: -135px;
  left: calc(50% - 880px);
  z-index: -1;
  pointer-events: none;
}
.secJob__secTit {
  margin-bottom: 52px;
}
.secJob-point {
  width: min(100%, 980px);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 34px;
  margin: 0 auto 64px;
  padding: 40px 64px;
  background: url(../img/bg_grid01.webp) repeat left top/980px;
  border: 2px solid var(--color-blue);
  border-radius: 8px;
  -webkit-box-shadow: 8px 8px 0 var(--color-blue);
          box-shadow: 8px 8px 0 var(--color-blue);
  position: relative;
}
.secJob-point::after {
  content: "";
  display: block;
  width: 315px;
  aspect-ratio: 315/262;
  background: url(../img/bg_job01.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  right: -52px;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}
.secJob-point__item {
  width: calc(100% - 190px);
  padding-left: 2.4em;
  background: url(../img/ico_check01.webp) no-repeat left top 0.18em/1.25em;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .secJob {
    padding-block: 80px;
  }
  .secJob::after {
    width: 200px;
    top: -10px;
    left: -60px;
  }
  .secJob__secTit {
    margin-bottom: 40px;
  }
  .secJob-point {
    grid-gap: 25px;
    margin-bottom: 80px;
    padding: 30px 20px min(40vw, 160px);
    background-size: 800px;
    -webkit-box-shadow: 4px 4px 0 var(--color-blue);
            box-shadow: 4px 4px 0 var(--color-blue);
  }
  .secJob-point::after {
    width: min(67.5%, 233px);
    top: auto;
    right: 0;
    left: 0;
    bottom: -55px;
  }
  .secJob-point__item {
    width: 100%;
    padding-left: 2em;
    font-size: 18px;
  }
}

/*	.secJob-box
------------------------------------------*/
.secJob-box + .secJob-box {
  margin-top: 100px;
}
.secJob-box:nth-of-type(even) .secJob-box-info::after {
  right: auto;
  left: calc(50% - 830px);
  bottom: -190px;
}
@media screen and (max-width: 768px) {
  .secJob-box + .secJob-box {
    margin-top: 60px;
  }
  .secJob-box:nth-of-type(even) .secJob-box-info::after {
    left: -50px;
  }
}

/* .secJob-box-info */
.secJob-box-info {
  margin-bottom: 60px;
  padding: 60px;
  border-radius: 24px;
  background: var(--color-blue);
  position: relative;
}
.secJob-box-info::after {
  content: "";
  display: block;
  width: 375px;
  aspect-ratio: 751/758;
  background: url(../img/bg_square02.webp) no-repeat center/contain;
  position: absolute;
  right: calc(50% - 760px);
  bottom: -225px;
  z-index: -1;
  pointer-events: none;
}
.secJob-box-info-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(48%, 460px) 60px 1fr;
  grid-template-columns: min(48%, 460px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 60px;
  margin-bottom: 40px;
}
.secJob-box-info-top-txtBox {
  color: #fff;
}
.secJob-box-info-top-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.secJob-box-info-top-tag__item {
  padding: 4px 10px;
  background: var(--color-red);
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.5;
}
.secJob-box-info-top__tit {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.05em;
}
.secJob-box-info-top__imgWrap {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.secJob-box-info-top__img {
  width: 100%;
  border-radius: 8px;
}
.secJob-box-info-data {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  margin-bottom: 40px;
}
.secJob-box-info-data__item {
  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;
  height: 346px;
  padding-top: 10px;
  background: #fff;
  border-radius: 16px;
  color: var(--color-blue);
  text-align: center;
  position: relative;
}
.secJob-box-info-data__item.is-graph {
  padding-top: 48px;
}
.secJob-box-info-data__tit {
  font-weight: 700;
  font-size: 24px;
  position: absolute;
  top: 20px;
  z-index: 2;
}
.secJob-box-info-data__txt {
  font-size: 50px;
}
.secJob-box-info-data__txt .num {
  font-weight: 600;
  font-size: 2.48em;
}
.secJob-box-info-data__txt .small {
  font-size: 0.68em;
}
.secJob-box-info-data__img.is-custom01 {
  margin-top: -25px;
  -webkit-transform: translateX(35px);
          transform: translateX(35px);
}
.secJob-box-info-commentWrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
.secJob-box-info-comment {
  padding: 40px 30px;
  background: #fff;
  border-radius: 16px;
}
.secJob-box-info-comment__tit {
  margin-bottom: 20px;
  padding: 10px;
  background: var(--color-turquoise);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}
.secJob-box-info-comment__txt {
  line-height: 2;
}
.secJob-box-info-comment-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 3px;
}
.secJob-box-info-comment-list__item {
  padding-left: 1.2em;
  position: relative;
}
.secJob-box-info-comment-list__item::after {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .secJob-box-info {
    margin: 0 calc(var(--inner-padding) * -0.5) 60px;
    padding: 15px;
    border-radius: 12px;
  }
  .secJob-box-info::after {
    width: 200px;
    right: -50px;
    bottom: -70px !important;
  }
  .secJob-box-info-top {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secJob-box-info-top__tit {
    margin-bottom: 15px;
    font-size: 20px;
  }
  .secJob-box-info-top__imgWrap {
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 460/262.5; /* 高さを元の75%（上下中央で25%トリミング） */
    width: 100%;
  }
  .secJob-box-info-top__imgWrap .secJob-box-info-top__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    display: block;
  }
  .secJob-box-info-data {
    grid-gap: 10px;
    margin-bottom: 20px;
  }
  .secJob-box-info-data__item {
    height: 170px;
  }
  .secJob-box-info-data__item.is-graph {
    padding-top: 30px;
  }
  .secJob-box-info-data__tit {
    font-size: 18px;
    top: 10px;
  }
  .secJob-box-info-data__txt {
    font-size: 22px;
  }
  .secJob-box-info-data__img {
    width: min(80%, 115px);
  }
  .secJob-box-info-data__img.is-custom01 {
    width: min(90%, 145px);
    margin-top: 0;
    -webkit-transform: translateX(4%);
            transform: translateX(4%);
  }
  .secJob-box-info-commentWrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secJob-box-info-comment {
    padding: 20px;
    border-radius: 8px;
  }
  .secJob-box-info-comment__tit {
    margin-bottom: 15px;
    padding: 7px;
    font-size: 18px;
  }
  .secJob-box-info-comment__txt {
    line-height: 1.85;
  }
}

/* .secJob-box-voice */
.secJob-box-voice {
  width: min(100%, 900px);
  margin-inline: auto;
}
.secJob-box-voice__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 17px;
  padding-inline: 0.5em;
  font-weight: 700;
  font-size: 28px;
  text-align: center;
  letter-spacing: 0.1em;
  position: relative;
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}
.secJob-box-voice__tit::before, .secJob-box-voice__tit::after {
  content: "";
  display: block;
  width: 2px;
  height: 95%;
  background: var(--color-turquoise);
  border-radius: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.secJob-box-voice__tit::before {
  left: 0;
  -webkit-transform: rotate(-13deg);
          transform: rotate(-13deg);
}
.secJob-box-voice__tit::after {
  right: 0;
  -webkit-transform: rotate(13deg);
          transform: rotate(13deg);
}
.secJob-box-voice-txtBox {
  width: calc(100% - 135px);
  margin-inline: auto 0;
  padding: 40px 60px 35px;
  border-radius: 8px;
  border: 2px solid var(--color-blue);
  -webkit-box-shadow: 8px 8px 0 var(--color-blue);
          box-shadow: 8px 8px 0 var(--color-blue);
  background: url(../img/bg_grid01.webp) repeat left top/980px;
  position: relative;
}
.secJob-box-voice__txt {
  font-size: 20px;
  line-height: 1.8;
}
.secJob-box-voice__bg {
  position: absolute;
  right: calc(100% - 30px);
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .secJob-box-voice__tit {
    margin-bottom: 20px;
    padding-inline: 1em;
    font-size: 22px;
    -webkit-transform: none;
            transform: none;
  }
  .secJob-box-voice-txtBox {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 20px;
    background-size: 800px;
    -webkit-box-shadow: 4px 4px 0 var(--color-blue);
            box-shadow: 4px 4px 0 var(--color-blue);
  }
  .secJob-box-voice__txt {
    font-size: 14px;
  }
  .secJob-box-voice__bg {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: auto;
    height: 140px;
    display: block;
    margin-inline: auto;
    position: static;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  padding-block: 100px 70px;
  position: relative;
}
.secInterview::after {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 200px);
  background: url(../img/bg_interview01.webp) no-repeat center top/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.secInterview__secTit {
  margin-bottom: 54px;
}
.secInterview-list {
  width: min(100%, 980px);
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 60px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 60px;
}
.secInterview-list__tit {
  width: calc(100% - 60px);
  margin: 0 auto 9px;
  padding: 10px 20px;
  background: var(--color-turquoise);
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  position: relative;
}
.secInterview-list__tit::after {
  content: "";
  display: block;
  width: 22px;
  aspect-ratio: 22/19;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  margin: auto;
}
.secInterview-list__img {
  display: block;
  margin-inline: auto;
}
.secInterview-list__txt {
  padding: 30px;
  border-radius: 8px;
  background: var(--color-blue);
  color: #fff;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .secInterview-list__item:nth-of-type(1) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding-block: 80px;
  }
  .secInterview::after {
    height: calc(100% + 60px);
  }
  .secInterview__secTit {
    margin-bottom: 40px;
  }
  .secInterview-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }
  .secInterview-list__tit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 18px;
  }
  .secInterview-list__tit::after {
    width: 18px;
  }
  .secInterview-list__img {
    width: auto;
    max-width: 90%;
    max-height: 150px;
  }
  .secInterview-list__txt {
    padding: 20px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  margin-bottom: 140px;
}
.secGallery img {
  width: 100%;
  border-radius: 8px;
}
.secGallery .splide__slide.is-down {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .secGallery {
    margin-bottom: 40px;
  }
  .secGallery .splide__slide.is-down {
    margin-top: 20px;
  }
}

/*------------------------------------------
	.secWelfare
------------------------------------------*/
.secWelfare {
  padding-block: 0 140px;
}
.secWelfare__secTit {
  margin-bottom: 54px;
}
.secWelfare-list__item {
  padding: 40px 30px;
  background: #f5f5f5;
  border-radius: 20px;
  text-align: center;
}
.secWelfare-list__ico {
  display: block;
  margin: 0 auto 20px;
}
.secWelfare-list__tit {
  min-height: 3em;
  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;
  margin-bottom: 20px;
  color: var(--color-blue);
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .secWelfare {
    padding-block: 80px;
  }
  .secWelfare__secTit {
    margin-bottom: 40px;
  }
  .secWelfare-list__item {
    padding: 25px 15px;
    border-radius: 10px;
  }
  .secWelfare-list__ico {
    width: min(40%, 90px);
  }
  .secWelfare-list__tit {
    min-height: auto;
    font-size: 20px;
  }
  .secWelfare-list__txt {
    font-size: 13px;
  }
}

/*	.js-welfare-slider
------------------------------------------*/
.js-welfare-slider-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 30px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}
.js-welfare-slider .my-carousel-progress {
  background: #f5f5f5;
}
.js-welfare-slider .my-carousel-progress-bar {
  background: var(--color-turquoise);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.js-welfare-slider .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 8px;
}
.js-welfare-slider .splide__arrow {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  background: var(--color-turquoise);
  border-radius: 50%;
  border: none;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.js-welfare-slider .splide__arrow svg {
  display: none;
}
.js-welfare-slider .splide__arrow::before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 16/5;
  background: url(../img/ico_arrow01.svg) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.js-welfare-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media screen and (min-width: 769px) {
  .js-welfare-slider .splide__arrow:hover {
    background-color: var(--color-blue);
  }
}

/*------------------------------------------
	.secCareer
------------------------------------------*/
.secCareer {
  overflow-x: clip;
  padding-block: 0 194px;
  position: relative;
}
.secCareer::before, .secCareer::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
.secCareer::before {
  width: 216px;
  aspect-ratio: 1/1;
  background-image: url(../img/bg_career01.webp);
  top: -68px;
  right: calc(50% - 580px);
}
.secCareer::after {
  width: 530px;
  aspect-ratio: 1060/910;
  background-image: url(../img/bg_square01.webp);
  top: -285px;
  left: calc(50% - 880px);
}
.secCareer__secTit {
  margin-bottom: 55px;
}
.secCareer__txt {
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}
.secCareer-imgBox {
  margin-top: 65px;
  padding: 60px 30px;
  background: var(--color-blue-light);
  border-radius: 20px;
}
.secCareer-imgBox img {
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .secCareer {
    padding-block: 80px;
  }
  .secCareer::before {
    width: 70px;
    top: 130px;
    right: 10px;
  }
  .secCareer::after {
    width: 200px;
    top: -10px;
    left: -60px;
  }
  .secCareer__secTit {
    margin-bottom: 40px;
  }
  .secCareer__txt {
    font-size: 14px;
  }
  .secCareer__txt + .secCareer__txt {
    margin-top: 15px;
  }
  .secCareer-imgBox {
    margin: 30px calc(var(--inner-padding) * -1) 0 0;
    padding: 30px;
    border-radius: 10px;
  }
  .secCareer-imgBox img {
    width: 550px;
    max-width: none;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  --inner-width: min(100% - (var(--inner-padding) * 2), 1080px);
  padding-block: 0 264px;
  position: relative;
}
.secEntry::after {
  content: "";
  display: block;
  width: 100%;
  height: 225px;
  background: url(../img/bg_town01_pc.webp) no-repeat center top/cover;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.secEntry-inner {
  padding: 94px 20px 60px;
  background: #f5f5f5;
  border-radius: 20px;
  position: relative;
}
.secEntry__secTit {
  color: var(--color-blue);
  font-size: 112px;
  text-align: center;
  line-height: 1;
  position: absolute;
  top: -0.57em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.secEntry-list {
  width: min(100%, 960px);
  margin: 0 auto 20px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.secEntry-list__item {
  overflow: hidden;
  border-radius: 16px;
}
.secEntry-list__item a {
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min(49%, 230px) 20px 1fr;
  grid-template-columns: min(49%, 230px) 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
  border-radius: inherit;
  background: #fff;
  position: relative;
}
.secEntry-list__item a::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  -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: var(--color-turquoise);
  position: absolute;
  right: 20px;
  bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secEntry-list__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 100%, 0 100%);
}
.secEntry-list__txt {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.secEntry__visit {
  width: min(100%, 400px);
  margin-inline: auto;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.15em;
}
.secEntry__visit a {
  min-height: 100px;
  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: 5px 50px;
  border-radius: inherit;
  background: var(--color-blue) url(../img/ico_arrow02.svg) no-repeat right 30px center;
}
@media screen and (min-width: 769px) {
  .secEntry-list__item a:hover {
    opacity: 1;
    background: var(--color-turquoise);
    color: #fff;
  }
  .secEntry-list__item a:hover .secEntry-list__img {
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .secEntry-list__item a:hover::after {
    background: #fff;
  }
  .secEntry-list__img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .secEntry__visit a:hover {
    opacity: 1;
    background-color: var(--color-turquoise);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding-block: 80px 160px;
  }
  .secEntry::after {
    height: 150px;
    background-image: url(../img/bg_town01_sp.webp);
  }
  .secEntry-inner {
    padding: 50px var(--inner-padding) 30px;
    border-radius: 10px;
  }
  .secEntry__secTit {
    font-size: 68px;
  }
  .secEntry-list {
    width: min(100%, 400px);
    margin-bottom: 30px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secEntry-list__item {
    border-radius: 8px;
  }
  .secEntry-list__item a {
    min-height: 80px;
    -ms-grid-columns: 42% 5px 1fr;
    grid-template-columns: 42% 1fr;
    grid-gap: 5px;
  }
  .secEntry-list__item a::after {
    width: 15px;
    right: 10px;
    bottom: 10px;
  }
  .secEntry-list__img {
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
  }
  .secEntry-list__txt {
    font-size: min(5vw, 17px);
  }
  .secEntry__visit {
    font-size: 17px;
  }
  .secEntry__visit a {
    min-height: 80px;
    padding-inline: 30px;
    background-position: right 15px center;
    background-size: 15px;
  }
}
/*# sourceMappingURL=style.css.map */