@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Poppins:wght@700&family=Prompt:wght@400;600&family=Shippori+Mincho:wght@600&display=swap");
:root {
  --vw: 1vw;
}

/*
------------------------
用途：個別にhover要素付けたい時用
------------------------
例）
div {
    width:100px;
    height:100px;
    @include hover;
}
*/
/*
------------------------
用途：良く使うflexを1行に短縮
------------------------
例）
div {
    @include flex(b,w);
}
↑これは↓これを一行で書いた例
div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
*/
/*--------------------------------------------------------------
	reset
---------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

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

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: inherit;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

img {
  vertical-align: bottom;
  border: none;
  width: 100%;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
  font-size: 14px;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #222;
  line-height: 1.8;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  position: relative;
  word-break: break-word;
  width: 100%;
  font-weight: 400;
  -moz-text-size-adjust: none;
   -ms-text-size-adjust: none;
       text-size-adjust: none;
  -webkit-text-size-adjust: none;
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 13px;
  }
}

.container {
  overflow: hidden;
}

.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a img:hover {
  opacity: 0.6;
}

section.sec {
  margin-bottom: 8.3333333333vw;
}
@media only screen and (min-width: 1200px) {
  section.sec {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  section.sec {
    margin-bottom: getvw(120);
  }
}

section.sec.sec-bg {
  padding: 8.3333333333vw 0;
}
@media only screen and (min-width: 1200px) {
  section.sec.sec-bg {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  section.sec.sec-bg {
    padding: getvwc(120) 0;
  }
}

.sec-in {
  max-width: calc(1100px + 5vw);
  width: 100%;
  margin: 0 auto;
  padding: 0 2.5vw;
}
@media only screen and (min-width: 1200px) {
  .sec-in {
    max-width: 1160px;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .sec-in {
    width: 100%;
    padding: 0 getvw(40);
  }
}

@media (min-width: 1024px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.f-serif {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
}

#NENGAJYO_2026 #wrapper {
  width: 100%;
  padding-bottom: 0;
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 #wrapper {
    padding-top: 60px;
  }
}
#NENGAJYO_2026 .breadCrumb {
  padding: 1.25vw 1.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .breadCrumb {
    padding: 15px 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .breadCrumb {
    padding: 4vw 5.3333333333vw;
  }
}
#NENGAJYO_2026 .breadCrumb li::after {
  top: 0.8333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .breadCrumb li::after {
    top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .breadCrumb li::after {
    top: 2.6666666667vw;
  }
}
#NENGAJYO_2026 .kv {
  background: transparent url("../img/kv_pc.jpg") top center/cover no-repeat;
  aspect-ratio: 64/27;
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .kv {
    background-image: url("../img/kv_sp.jpg");
    aspect-ratio: 0.75;
  }
}
#NENGAJYO_2026 .sec01 {
  padding: 12.5vw 0 15vw;
  background: transparent url(../img/bg_sec1_pc.png) top center/cover no-repeat;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01 {
    padding: 150px 0 180px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01 {
    padding: 12vw 0 8vw;
    background-image: url(../img/bg_sec1_sp.png);
  }
}
#NENGAJYO_2026 .sec01 .sec {
  width: 82.6666666667vw;
  border-radius: 2.5vw;
  background-color: #fff;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01 .sec {
    width: 992px;
    border-radius: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01 .sec {
    width: 88vw;
    border-radius: 4vw;
  }
}
#NENGAJYO_2026 .sec01__img1 {
  width: 71.25vw;
  margin: 0 auto 3.3333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__img1 {
    width: 855px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__img1 {
    width: 83.2vw;
    margin-bottom: 3.2vw;
  }
}
#NENGAJYO_2026 .sec01__img2 {
  width: 71.25vw;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__img2 {
    width: 855px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__img2 {
    width: 82.4vw;
  }
}
#NENGAJYO_2026 .sec01__img3 {
  width: 88.6666666667vw;
  margin: -1vw auto 10.5vw;
  padding: 0;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__img3 {
    width: 1064px;
    margin-top: -12px;
    margin-bottom: 126px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__img3 {
    width: 82.4vw;
  }
}
#NENGAJYO_2026 .sec01__box1 {
  position: relative;
  width: 93.3333333333vw;
  margin: 0 auto 9.1666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box1 {
    width: 1120px;
    margin-bottom: 110px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box1 {
    width: 88vw;
    margin-bottom: 16vw;
  }
}
#NENGAJYO_2026 .sec01__box1 ul {
  position: absolute;
  bottom: 6vw;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1.0833333333vw;
     -moz-column-gap: 1.0833333333vw;
          column-gap: 1.0833333333vw;
  width: 100%;
  padding: 0 5.3333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box1 ul {
    -webkit-column-gap: 13px;
       -moz-column-gap: 13px;
            column-gap: 13px;
    bottom: 72px;
    padding: 0 64px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box1 ul {
    bottom: 0;
    padding: 5.6vw;
    gap: 4.8vw;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box1 ul::before {
    content: "";
    width: 18vw;
    background: transparent url(../img/bg_sec01_box1.png) center/8.8vw auto no-repeat;
  }
}
#NENGAJYO_2026 .sec01__box1 ul li {
  width: 15.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box1 ul li {
    width: 188px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box1 ul li {
    width: 36vw;
  }
}
#NENGAJYO_2026 .sec01__box1 ul li a {
  border-radius: 1.0833333333vw;
  -webkit-box-shadow: 0.3333333333vw 0.3333333333vw 0 rgba(107, 47, 14, 0.2);
          box-shadow: 0.3333333333vw 0.3333333333vw 0 rgba(107, 47, 14, 0.2);
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box1 ul li a {
    border-radius: 13px;
    -webkit-box-shadow: 4px 4px 0 rgba(107, 47, 14, 0.2);
            box-shadow: 4px 4px 0 rgba(107, 47, 14, 0.2);
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box1 ul li a {
    border-radius: 2.4vw;
    -webkit-box-shadow: 0.8vw 0.8vw 0 rgba(107, 47, 14, 0.2);
            box-shadow: 0.8vw 0.8vw 0 rgba(107, 47, 14, 0.2);
  }
}
#NENGAJYO_2026 .sec01__box2 {
  margin: 0 auto 15vw;
  padding: 0 3.3333333333vw 3.3333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box2 {
    margin-bottom: 180px;
    padding: 0 40px 40px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box2 {
    padding: 3.2vw 4.5333333333vw 4.5333333333vw;
  }
}
#NENGAJYO_2026 .sec01__box2 .ttl {
  position: relative;
  top: -3.1666666667vw;
  width: 72.6666666667vw;
  margin: 0 auto -1.5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box2 .ttl {
    top: -38px;
    width: 872px;
    margin-bottom: -18px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box2 .ttl {
    position: static;
    margin-bottom: 3.2vw;
  }
}
#NENGAJYO_2026 .sec01__box2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box2 ul {
    gap: 32px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box2 ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2vw 0;
  }
}
#NENGAJYO_2026 .sec01__box2 ul li {
  width: 36.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box2 ul li {
    width: 440px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box2 ul li {
    width: 100%;
  }
}
#NENGAJYO_2026 .sec01__box3 {
  margin: 0 auto;
  padding: 2.5vw 3.3333333333vw 3.3333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box3 {
    padding: 30px 40px 40px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box3 {
    padding: 5.6vw 4.8vw 4.8vw;
  }
}
#NENGAJYO_2026 .sec01__box3 .ttl {
  width: 79.5vw;
  margin: 0 -1.75vw 2.25vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box3 .ttl {
    width: 954px;
    margin: 0 -21px 27px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box3 .ttl {
    width: 96.8vw;
    margin: 0 -9.2vw 2.4vw;
  }
}
#NENGAJYO_2026 .sec01__box3 .list1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.25vw;
  margin-bottom: 1.25vw;
  padding: 2.5vw 3vw;
  border-radius: 0.8333333333vw;
  background: transparent url(../img/bg_sec01_box3_list1_pc.png) center/cover no-repeat;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box3 .list1 {
    gap: 15px;
    margin-bottom: 15px;
    padding: 30px 36px;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box3 .list1 {
    gap: 3.2vw;
    width: 78.4vw;
    margin-bottom: 4vw;
    padding: 3.2vw;
  }
}
#NENGAJYO_2026 .sec01__box3 .list1 li {
  width: 22.5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box3 .list1 li {
    width: 270px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box3 .list1 li {
    width: 34.4vw;
  }
}
#NENGAJYO_2026 .sec01__box3 .note1 {
  margin-bottom: 1.25vw;
  line-height: 1.3;
  font-size: 1.3rem;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box3 .note1 {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box3 .note1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    line-height: 1.36;
    font-size: 2.4vw;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box3 .note1 span:nth-of-type(odd) {
    width: 6.4vw;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box3 .note1 span:nth-of-type(even) {
    width: 72vw;
  }
}
#NENGAJYO_2026 .sec01__box3 .note1 span:nth-of-type(even):not(:last-child) {
  margin-right: 1.3rem;
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box3 .note1 span:nth-of-type(even):not(:last-child) {
    margin-right: 0;
  }
}
#NENGAJYO_2026 .sec01__box3 .note2 {
  border: 1px solid #4d4d4d;
  border-radius: 0.8333333333vw;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box3 .note2 {
    border-radius: 10px;
  }
}
#NENGAJYO_2026 .sec01__box3 .note2 .subttl {
  background-color: #4d4d4d;
}
#NENGAJYO_2026 .sec01__box3 .note2 div {
  padding: 2.5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box3 .note2 div {
    padding: 30px;
  }
}
#NENGAJYO_2026 .sec01__box3 .note2 hr {
  height: 1px;
  margin: 2.0833333333vw 0;
  border: none;
  background-color: #4d4d4d;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box3 .note2 hr {
    margin: 25px 0;
  }
}
#NENGAJYO_2026 .sec01__box3 .more {
  margin-bottom: 3.3333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec01__box3 .more {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec01__box3 .more {
    margin-bottom: 8vw;
  }
}
#NENGAJYO_2026 .sec02 {
  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;
  -webkit-column-gap: 2.5vw;
     -moz-column-gap: 2.5vw;
          column-gap: 2.5vw;
  padding: 5.8333333333vw 0 7.5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec02 {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    padding: 70px 0 90px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 5.3333333333vw;
    padding: 4vw 10.6666666667vw 8vw;
  }
}
#NENGAJYO_2026 .sec02 div {
  width: 17.75vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec02 div {
    width: 213px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec02 div {
    position: relative;
    left: -4.2666666667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 4.8vw;
       -moz-column-gap: 4.8vw;
            column-gap: 4.8vw;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec02 div h3 {
    width: 26.1333333333vw;
  }
}
#NENGAJYO_2026 .sec02 div > img {
  width: 45.8666666667vw;
}
#NENGAJYO_2026 .sec02 nav {
  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: 3.3333333333vw 2.9166666667vw;
  width: 46.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec02 nav {
    width: 560px;
    gap: 40px 35px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec02 nav {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-column-gap: 8vw;
       -moz-column-gap: 8vw;
            column-gap: 8vw;
    width: 100%;
  }
}
#NENGAJYO_2026 .sec02 nav a:nth-of-type(1) {
  width: 19.75vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec02 nav a:nth-of-type(1) {
    width: 237px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec02 nav a:nth-of-type(1) {
    width: 31.7333333333vw;
  }
}
#NENGAJYO_2026 .sec02 nav a:nth-of-type(2) {
  width: 24vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec02 nav a:nth-of-type(2) {
    width: 288px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec02 nav a:nth-of-type(2) {
    width: 38.6666666667vw;
  }
}
#NENGAJYO_2026 .sec03 {
  padding: 10vw 0;
  background: url("../img/bg_sec03_pc.png") center/cover no-repeat;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec03 {
    padding: 120px 0;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec03 {
    padding: 9.3333333333vw 0;
    background-image: url("../img/bg_sec03_sp.png");
  }
}
#NENGAJYO_2026 .sec03__in {
  width: 61.3333333333vw;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec03__in {
    width: 736px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec03__in {
    width: 78.6666666667vw;
  }
}
#NENGAJYO_2026 .sec03__ttl {
  width: 56.8333333333vw;
  margin: 0 auto 5.8333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec03__ttl {
    width: 682px;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec03__ttl {
    width: 100%;
  }
}
#NENGAJYO_2026 .sec03__btnlist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1.1666666667vw;
  margin-bottom: 5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec03__btnlist {
    gap: 14px;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec03__btnlist {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3.2vw;
    margin-bottom: 5.3333333333vw;
  }
}
#NENGAJYO_2026 .sec03__btnlist li {
  width: 19.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec03__btnlist li {
    width: 236px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec03__btnlist li {
    width: 33.6vw;
  }
}
@media only screen and (min-width: 768px) {
  #NENGAJYO_2026 .sec03__btnlist li:nth-of-type(7) {
    width: 100%;
  }
}
#NENGAJYO_2026 .sec03__notes {
  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;
  -webkit-column-gap: 1.6666666667vw;
     -moz-column-gap: 1.6666666667vw;
          column-gap: 1.6666666667vw;
  font-size: 20px;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec03__notes {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec03__notes {
    -webkit-column-gap: 2.6666666667vw;
       -moz-column-gap: 2.6666666667vw;
            column-gap: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}
#NENGAJYO_2026 .sec03__notes::before {
  content: "";
  width: 3.8333333333vw;
  aspect-ratio: 1;
  background: transparent url("../img/icon_shop_92x92.png") center/contain no-repeat;
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec03__notes::before {
    width: 12.2666666667vw;
  }
}
#NENGAJYO_2026 .sec04 {
  padding: 8.75vw 0 12.5vw;
  background: #fff url("../img/bg_sec04_pc.png") center/contain no-repeat;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec04 {
    padding: 105px 0 150px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec04 {
    padding: 11.2vw 4.8vw;
    background-image: url("../img/bg_sec04_sp.jpg");
  }
}
#NENGAJYO_2026 .sec04__ttl {
  width: 66.1666666667vw;
  margin: 0 auto 5.8333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec04__ttl {
    width: 794px;
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec04__ttl {
    width: 100%;
    margin-bottom: 9.3333333333vw;
  }
}
#NENGAJYO_2026 .sec04 h4 {
  width: 77.6666666667vw;
  margin: 0 auto 5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec04 h4 {
    width: 932px;
    margin: 0 auto 60px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec04 h4 {
    width: 88vw;
    margin: 0 auto 4vw;
  }
}
#NENGAJYO_2026 .sec04__in {
  width: 82.6666666667vw;
  margin: 0 auto;
  padding: 0 1.5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec04__in {
    width: 992px;
    padding: 0 18px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec04__in {
    width: 100%;
    padding: 0;
  }
}
#NENGAJYO_2026 .sec04__box {
  position: relative;
  margin-bottom: 5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec04__box {
    margin-bottom: 60px;
  }
}
#NENGAJYO_2026 .sec04__box + div {
  margin-top: 5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec04__box + div {
    margin-top: 60px;
  }
}
#NENGAJYO_2026 .sec04__box h4 {
  width: 100%;
  margin-bottom: 1.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec04__box h4 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec04__box h4 {
    margin-bottom: 5.3333333333vw;
  }
}
#NENGAJYO_2026 .sec05 {
  padding: 12.5vw 0;
  background: #e6f0dc url("../img/bg_sec05_pc.png") center/100% auto no-repeat;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec05 {
    padding: 150px 0;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec05 {
    padding: 12vw 0;
    background-image: url("../img/bg_sec05_sp.png");
  }
}
#NENGAJYO_2026 .sec05 h3 {
  width: 56.5vw;
  margin: 0 auto 5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec05 h3 {
    width: 678px;
    margin-bottom: 60px;
  }
}
#NENGAJYO_2026 .sec05 h4 {
  width: 100%;
  margin-bottom: 1.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec05 h4 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec05 h4 {
    margin-bottom: 5.3333333333vw;
  }
}
#NENGAJYO_2026 .sec05 h4 + p {
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec05 h4 + p {
    font-size: 12px;
  }
}
#NENGAJYO_2026 .sec05__in {
  width: 89.3333333333vw;
  margin: 0 auto;
  padding: 4.4166666667vw;
  border-radius: 2.5vw;
  background-color: #fff;
  color: #000;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec05__in {
    width: 1072px;
    padding: 53px;
    border-radius: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec05__in {
    width: 88vw;
    padding: 6.6666666667vw 4vw;
    border-radius: 4vw;
  }
}
#NENGAJYO_2026 .sec05__img1 {
  width: 62.4166666667vw;
  margin: 1.25vw auto 2.5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec05__img1 {
    width: 749px;
    margin: 15px auto 30px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec05__img1 {
    width: 160vw;
    margin: 4vw auto 10.6666666667vw;
  }
}
#NENGAJYO_2026 .sec05__box {
  position: relative;
  margin-bottom: 5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec05__box {
    margin-bottom: 60px;
  }
}
#NENGAJYO_2026 .sec05__box h4 {
  width: 100%;
  margin-bottom: 1.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec05__box h4 {
    margin-bottom: 20px;
  }
}
#NENGAJYO_2026 .sec05 .copy {
  word-break: normal;
}
#NENGAJYO_2026 .sec06 {
  background: #fffbe6 url("../img/bg_sec06_pc.png") center/100% auto no-repeat;
  padding: 12.5vw 0;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec06 {
    padding: 150px 0;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec06 {
    padding: 10.6666666667vw 0;
    background-image: url(../img/bg_sec06_sp.png);
    background-position: bottom center;
  }
}
#NENGAJYO_2026 .sec06__in {
  width: 89.3333333333vw;
  margin: 0 auto;
  padding: 4.1666666667vw 4.4166666667vw;
  border-radius: 1.6666666667vw;
  background-color: #fff;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec06__in {
    width: 1072px;
    border-radius: 30px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec06__in {
    width: 88vw;
    padding: 5.3333333333vw 4vw;
    border-radius: 4vw;
  }
}
#NENGAJYO_2026 .sec06__in > p:nth-of-type(1) {
  margin: 20px 0 30px;
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec06__in > p:nth-of-type(1) {
    background: transparent url(../img/bg_sec06_sp_1.png) center right/44px auto no-repeat;
  }
}
#NENGAJYO_2026 .sec06__in > p:nth-of-type(2) {
  width: 43vw;
  margin: 0 auto 1.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec06__in > p:nth-of-type(2) {
    width: 516px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec06__in > p:nth-of-type(2) {
    width: 100dvw;
    margin-left: -10vw;
    margin-bottom: 5.3333333333vw;
  }
}
#NENGAJYO_2026 .sec06__img1 {
  width: 60.8333333333vw;
  margin: 0 auto 2.9166666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec06__img1 {
    width: 730px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec06__img1 {
    width: 100%;
  }
}
#NENGAJYO_2026 .sec06 .swiper--09 ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: transparent url(../img/bg_sec06_list1.png) center right/133px auto no-repeat;
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec06 .swiper--09 ul {
    background-image: none;
  }
}
#NENGAJYO_2026 .sec06 .sec06__box + div {
  margin-top: 5.8333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec06 .sec06__box + div {
    margin-top: 70px;
  }
}
#NENGAJYO_2026 .sec06 .sec06__box h4 {
  width: 100%;
  margin-bottom: 1.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec06 .sec06__box h4 {
    margin-bottom: 20px;
  }
}
#NENGAJYO_2026 .sec06 .sec06__box1 {
  margin-bottom: 8.3333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec06 .sec06__box1 {
    margin-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec06 .sec06__box3 {
    background: transparent url(../img/bg_sec06_sp_2.png) bottom right/20px auto no-repeat;
  }
}
#NENGAJYO_2026 .sec07 {
  padding: 12.5vw 0;
  background: transparent url("../img/bg_sec07_pc.png") bottom center/100% auto no-repeat;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec07 {
    padding: 150px 0;
  }
}
#NENGAJYO_2026 .sec07__in {
  width: 80.5vw;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec07__in {
    width: 966px;
  }
}
#NENGAJYO_2026 .sec07__box h4 {
  margin-bottom: 1.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec07__box h4 {
    margin-bottom: 20px;
  }
}
#NENGAJYO_2026 .sec07__box1 {
  margin-bottom: 5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec07__box1 {
    margin-bottom: 60px;
  }
}
#NENGAJYO_2026 .sec08 {
  padding: 12.5vw 0;
  background: transparent url("../img/bg_sec08_pc.png") center/cover no-repeat;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec08 {
    padding: 150px 0;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec08 {
    padding: 10.6666666667vw 0;
  }
}
#NENGAJYO_2026 .sec08__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 76vw;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec08__list {
    width: 912px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec08__list {
    width: 69.3333333333vw;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 6.6666666667vw;
  }
}
#NENGAJYO_2026 .sec08__list li {
  width: 47%;
  padding: 1.25vw;
  border-radius: 1.6666666667vw;
  background-color: #fff;
  line-height: 1.8;
  text-align: center;
  font-size: 16px;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec08__list li {
    padding: 15px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec08__list li {
    width: 100%;
    padding: 4vw;
    border-radius: 5.3333333333vw;
  }
}
#NENGAJYO_2026 .sec08__list li h3 {
  position: relative;
  z-index: 2;
  margin: 0 auto 1.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec08__list li h3 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec08__list li h3 {
    margin-bottom: 2.6666666667vw;
  }
}
#NENGAJYO_2026 .sec08__left h3 {
  width: 25vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec08__left h3 {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec08__left h3 {
    width: 45.0666666667vw;
  }
}
#NENGAJYO_2026 .sec08__left p {
  margin-bottom: 3.3333333333vw;
  font-size: 1.7vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec08__left p {
    margin-bottom: 40px;
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec08__left p {
    margin-bottom: 4vw;
    font-size: 3.2vw;
  }
}
#NENGAJYO_2026 .sec08__left .btn {
  width: 30.4166666667vw;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec08__left .btn {
    width: 365px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec08__left .btn {
    width: 60vw;
    margin: 0 auto;
  }
}
#NENGAJYO_2026 .sec08__right {
  position: relative;
}
#NENGAJYO_2026 .sec08__right::after {
  content: "";
  position: absolute;
  top: 46.2%;
  right: -21.5%;
  display: block;
  width: 13.5833333333vw;
  height: 13.8333333333vw;
  background: transparent url("../img/sec08_icon.png") center/contain no-repeat;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec08__right::after {
    width: 163px;
    height: 166px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec08__right::after {
    top: 50.4%;
    right: -20%;
    width: 26.1333333333vw;
    height: 26.6666666667vw;
  }
}
#NENGAJYO_2026 .sec08__right h3 {
  width: 28.3333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec08__right h3 {
    width: 340px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec08__right h3 {
    width: 48.2666666667vw;
  }
}
#NENGAJYO_2026 .sec08__right p {
  margin-bottom: 2.0833333333vw;
  font-size: 1.4166666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec08__right p {
    margin-bottom: 25px;
    font-size: 17px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec08__right p {
    font-size: 3.4vw;
    line-height: 1.4;
    margin-bottom: 6.6666666667vw;
  }
}
#NENGAJYO_2026 .sec08__right a {
  margin: 0 auto;
}
#NENGAJYO_2026 .sec08__right .app-btn {
  width: 18.5833333333vw;
  margin-bottom: 2.25vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec08__right .app-btn {
    width: 223px;
    margin-bottom: 27px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec08__right .app-btn {
    width: 33.6vw;
    margin-bottom: 4vw;
  }
}
#NENGAJYO_2026 .sec08__right .gp-btn {
  width: 22.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec08__right .gp-btn {
    width: 272px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec08__right .gp-btn {
    width: 40.8vw;
  }
}
#NENGAJYO_2026 .sec09 {
  padding: 10vw 0;
  background: transparent url("../img/bg_sec09_pc.png") bottom center/cover no-repeat;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec09 {
    padding: 120px 0;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec09 {
    padding: 12vw 0;
    background-image: url("../img/bg_sec09_sp.png");
  }
}
#NENGAJYO_2026 .sec09__img1 {
  display: block;
  width: 85.1666666667vw;
  margin: 0 auto 6.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec09__img1 {
    width: 1022px;
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec09__img1 {
    width: 91.4666666667vw;
    margin-bottom: 12vw;
  }
}
#NENGAJYO_2026 .sec09__img2 {
  display: block;
  width: 71.6666666667vw;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec09__img2 {
    width: 860px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec09__img2 {
    width: 87.2vw;
  }
}
#NENGAJYO_2026 .sec09__btn {
  width: 54.1666666667vw;
  margin: 0 auto 12.5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec09__btn {
    width: 650px;
    margin-bottom: 150px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec09__btn {
    width: 75.7333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
#NENGAJYO_2026 .sec10 {
  padding: 8.3333333333vw 0;
  background-color: #fff;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec10 {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec10 {
    padding: 10.6666666667vw 0;
  }
}
#NENGAJYO_2026 .sec10__btn {
  width: 46.1666666667vw;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec10__btn {
    width: 554px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec10__btn {
    width: 65.6vw;
  }
}
#NENGAJYO_2026 .sec10 p {
  margin-bottom: 2.5vw;
  line-height: 2;
  text-align: center;
  font-size: 1.8vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec10 p {
    margin-bottom: 30px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec10 p {
    margin-bottom: 5.3333333333vw;
    font-size: 3.2vw;
  }
}
#NENGAJYO_2026 .sec11 {
  padding: 15vw 0 20.8333333333vw;
  background: #f3ece0 url("../img/bg_sec11_pc.png") center/contain no-repeat;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec11 {
    padding: 180px 0 250px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec11 {
    padding: 13.3333333333vw 0;
    background-image: url(../img/bg_sec11_sp.png);
  }
}
#NENGAJYO_2026 .sec11 h3 {
  width: 54.6666666667vw;
  margin: 0 auto 5vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec11 h3 {
    width: 656px;
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec11 h3 {
    width: 78.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
#NENGAJYO_2026 .sec11 figure {
  width: 70.8333333333vw;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .sec11 figure {
    width: 850px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .sec11 figure {
    width: 84.8vw;
  }
}
#NENGAJYO_2026 .pagetop {
  position: fixed;
  left: 50%;
  bottom: 12.5vw;
  z-index: 10;
  -webkit-transform: translateX(40vw);
          transform: translateX(40vw);
  display: block;
  width: 6.8333333333vw;
  aspect-ratio: 1;
  border: none;
  padding: 0;
  background: transparent url(../img/btn_top.png) center/cover no-repeat;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#NENGAJYO_2026 .pagetop:hover {
  opacity: 0.6;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .pagetop {
    bottom: 150px;
    -webkit-transform: translateX(480);
            transform: translateX(480);
    width: 82px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .pagetop {
    bottom: 48vw;
    -webkit-transform: translateX(33.6vw);
            transform: translateX(33.6vw);
    width: 10.6666666667vw;
  }
}
#NENGAJYO_2026 .slide-area {
  position: relative;
}
#NENGAJYO_2026 .swiper-button-next {
  right: 0;
  top: 45%;
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .swiper-button-next {
    top: 42%;
    right: -3%;
  }
}
#NENGAJYO_2026 .swiper-button-prev {
  left: 0;
  top: 45%;
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .swiper-button-prev {
    top: 42%;
    left: -3%;
  }
}
#NENGAJYO_2026 .swiper-button-next:after,
#NENGAJYO_2026 .swiper-button-prev:after {
  font-size: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.25vw 1.6666666667vw 1.25vw 0;
  border-color: transparent #4d4d4d transparent transparent;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .swiper-button-next:after,
  #NENGAJYO_2026 .swiper-button-prev:after {
    border-width: 15px 20px 15px 0;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .swiper-button-next:after,
  #NENGAJYO_2026 .swiper-button-prev:after {
    border-width: 2.9333333333vw 4.8vw 2.9333333333vw 0;
  }
}
#NENGAJYO_2026 .swiper-button-next:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.25vw 0 1.25vw 1.6666666667vw;
  border-color: transparent transparent transparent #4d4d4d;
  left: auto;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .swiper-button-next:after {
    border-width: 15px 0 15px 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .swiper-button-next:after {
    border-width: 2.9333333333vw 0 2.9333333333vw 4.8vw;
  }
}
#NENGAJYO_2026 .swiper {
  width: 90%;
  padding: 0 1px;
}
#NENGAJYO_2026 .swiper--none ul {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0 2.0833333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .swiper--none ul {
    gap: 0 25px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .swiper--none ul {
    gap: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#NENGAJYO_2026 .swiper--none ul li {
  width: 47.2%;
}
#NENGAJYO_2026 .slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#NENGAJYO_2026 .slide__item {
  width: 31%;
}
#NENGAJYO_2026 .slide__item a {
  position: relative;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  height: 19.0833333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .slide__item a {
    height: 229px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .slide__item a {
    height: 31.2vw;
  }
}
#NENGAJYO_2026 .slide__item a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 6%;
  left: 7%;
  width: 2vw;
  aspect-ratio: 1;
  background: transparent url("../img/icon_glass.svg") center/contain no-repeat;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .slide__item a::after {
    width: 24px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .slide__item a::after {
    width: 4.8vw;
    left: 2vw;
    bottom: 2vw;
  }
}
#NENGAJYO_2026 .slide__item a.icon-shop::before {
  content: "";
  display: block;
  position: absolute;
  top: 6%;
  left: 7%;
  width: 2vw;
  aspect-ratio: 1;
  background: transparent url("../img/icon_shop_74x74.png") center/contain no-repeat;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .slide__item a.icon-shop::before {
    width: 24px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .slide__item a.icon-shop::before {
    width: 4.8vw;
    left: 2vw;
    top: 2vw;
  }
}
#NENGAJYO_2026 .slide__item a.yellow {
  background-color: #fff0cd;
}
#NENGAJYO_2026 .slide__item a.blue {
  background-color: #e2eef6;
}
#NENGAJYO_2026 .slide__item a img {
  width: 15.8333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .slide__item a img {
    width: 180px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .slide__item a img {
    width: 21.3333333333vw;
  }
}
#NENGAJYO_2026 .slide__item a + p {
  margin-top: 0.8333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .slide__item a + p {
    margin-top: 10px;
  }
}
#NENGAJYO_2026 .copy {
  font-size: 13px;
  text-align: right;
  margin-top: 0.8333333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .copy {
    margin-top: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .copy {
    font-size: 10px;
    line-height: 1.4;
  }
}
#NENGAJYO_2026 .copy .d-copy {
  font-size: 11px;
  position: relative;
}
#NENGAJYO_2026 .copy .d-copy::after {
  content: "";
  display: inline-block;
  width: 2.75vw;
  height: 1.5833333333vw;
  margin-left: 0.4166666667vw;
  background-image: url("../../assets/img/d_copy.svg");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .copy .d-copy::after {
    width: 33px;
    height: 19px;
    margin-left: 5px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .copy .d-copy::after {
    width: 10.1333333333vw;
    height: 6.1333333333vw;
  }
}
#NENGAJYO_2026 .modal {
  display: none;
}
#NENGAJYO_2026 #cboxContent {
  padding: 0;
}
#NENGAJYO_2026 #cboxLoadedContent {
  overflow: hidden !important;
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 #cboxPrevious {
    left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 #cboxNext {
    right: 10px;
  }
}
#NENGAJYO_2026 .popup {
  text-align: center;
  padding: 30px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .popup {
    padding: 15px;
  }
}
#NENGAJYO_2026 .popup--d {
  padding: 30px 30px 50px;
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .popup--d {
    padding: 15px 15px 50px;
  }
}
#NENGAJYO_2026 .popup.yellow {
  background-color: #fff0cd;
}
#NENGAJYO_2026 .popup.blue {
  background-color: #e2eef6;
}
#NENGAJYO_2026 .popup.icon-shop {
  background-image: url(../img/icon_shop_74x74.png);
  background-position: top 2.5vw left 2.5vw;
  background-size: 6.1666666667vw auto;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 768px) {
  #NENGAJYO_2026 .popup.icon-shop {
    background-size: 74px auto;
    background-position: top 30px left 30px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .popup.icon-shop {
    background-size: 15px auto;
    background-position: top 15px left 15px;
  }
}
#NENGAJYO_2026 .popup img {
  max-width: 480px;
  position: relative;
}
#NENGAJYO_2026 .popup p {
  text-align: left;
  font-size: 20px;
  line-height: 1.3;
}
#NENGAJYO_2026 .popup .copy {
  font-size: 12px;
  position: absolute;
  bottom: 1.6666666667vw;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .popup .copy {
    margin-bottom: 0;
    bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .popup .copy {
    margin-bottom: 0;
    bottom: 5.3333333333vw;
    font-size: 2.8vw;
  }
}
#NENGAJYO_2026 .popup.pixar {
  background-color: #eaf6fe;
}
#NENGAJYO_2026 .accordion {
  display: none;
}
#NENGAJYO_2026 .accordion + .more {
  width: 62.8333333333vw;
  height: 3.3333333333vw;
  border: 1px solid #dbdbdb;
  background-color: #fff;
  font-weight: bold;
  position: relative;
  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: 0 auto 5vw;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .accordion + .more {
    width: 754px;
    height: 40px;
    margin: 0 auto 60px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .accordion + .more {
    font-size: 10px;
    width: 148.2666666667vw;
    height: 11.7333333333vw;
  }
}
#NENGAJYO_2026 .accordion + .more::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.1666666667vw;
  height: 1.1666666667vw;
  top: calc(50% - 0.5833333333vw);
  right: 1.6666666667vw;
  background-image: url("../../assets/img/icon_open.svg  ");
  background-size: contain;
  vertical-align: middle;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .accordion + .more::after {
    width: 14px;
    height: 14px;
    top: calc(50% - 7px);
    right: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .accordion + .more::after {
    width: 3.7333333333vw;
    height: 3.7333333333vw;
    top: calc(50% - 1.8666666667vw);
  }
}
#NENGAJYO_2026 .xx {
  padding: 10vw 0;
  background: url("../../assets/img/sec02_bg.jpg") no-repeat center;
  background-size: cover;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .xx {
    padding: 120px 0;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .xx {
    background: url("../../assets/img/sec02_bg_sp.jpg") no-repeat center;
    background-size: cover;
    padding: 32vw 0;
  }
}
#NENGAJYO_2026 .xx .sec {
  margin-bottom: 10vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .xx .sec {
    margin-bottom: 120px;
  }
}
#NENGAJYO_2026 .xx .ttl {
  margin-left: auto;
  margin-right: auto;
}
#NENGAJYO_2026 .xx__in {
  width: 82.75vw;
  margin: 0 auto;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .xx__in {
    width: 993px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .xx__in {
    width: 100%;
    padding: 0 10.6666666667vw;
  }
}
#NENGAJYO_2026 .xx__box3 .ttl {
  width: 72.6666666667vw;
  margin-bottom: 1.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .xx__box3 .ttl {
    width: 872px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .xx__box3 .ttl {
    margin-bottom: 8vw;
  }
}
#NENGAJYO_2026 .xx__box5 .ttl {
  width: 43.5vw;
  margin-bottom: 2.0833333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .xx__box5 .ttl {
    width: 522px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .xx__box5 .ttl {
    width: 136.5333333333vw;
    margin-bottom: 10.6666666667vw;
  }
}
#NENGAJYO_2026 .xx__box5 ul {
  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: 0 1.6666666667vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .xx__box5 ul {
    gap: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .xx__box5 ul {
    gap: 0 8vw;
  }
}
#NENGAJYO_2026 .xx__box5 ul li a {
  width: 19.75vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .xx__box5 ul li a {
    width: 237px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .xx__box5 ul li a {
    width: 59.2vw;
  }
}
#NENGAJYO_2026 .xx__box5 ul li:last-child a {
  width: 24.0833333333vw;
}
@media only screen and (min-width: 1200px) {
  #NENGAJYO_2026 .xx__box5 ul li:last-child a {
    width: 289px;
  }
}
@media only screen and (max-width: 767px) {
  #NENGAJYO_2026 .xx__box5 ul li:last-child a {
    width: 72.5333333333vw;
  }
}/*# sourceMappingURL=style.css.map */