/**  Mixins */ /*------------------------------------*\
    breakpoint vars
\*------------------------------------*/
/*------------------------------------*\
    breakpoint mixin
\*------------------------------------*/
/** Break desktop first**/
/** Global **/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  padding-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #6096c4;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

a:not([href]):not([tabindex]) {
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover,
a:not([href]):not([tabindex]):focus {
  /* color: inherit; */
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

button:focus {
opacity: 0.8;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="radio"] + label, input[type="checkbox"] + label{
  padding-left: 38px;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}
input::placeholder {
  color: var(--right-gray);
}

input[type="checkbox"] + label:before {
  background-color: var(--white);
  top: 50%;
  left: 10px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
}
input[type="checkbox"]:checked + label:after {
  left: 4px;
  width: 10px;
  height: 19px;
  top: 10px;
  border-right: 2px solid var(--text-beige);
    border-bottom: 2px solid var(--text-beige);
}



@media only screen and (max-width: 767px) {
  input[type="checkbox"] + label:before {
    width: 24px;
    height: 24px;
  }
  input[type="checkbox"]:checked + label:after {
  top: 21px;
  left: 6px;
  width: 8px;
  height: 17px;
  }
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

:root {
  --text-beige:#685F5C;
  --bg-beige:#DBD8CA;
  --green: #33503e;
  --beige: #a4874e;
  --white: #ffffff;
  --black: #222222;
  --gray: #818181;
  --right-gray: #c6c6c6;
  --red: #9A0D1B;
  --light-red:#864C4D;
  --bg-red: #ffebeb;
  --bg-dark-red: rgba(110, 41, 41, 0.9);
  --orange: #DDBD73;
  --dark-orange: #844D26;
  --darker-orange: #AF914A;
  --scroll-orange: #E2B521;
  --light-brown: #B9AD92;
  --space-3L: 72px;
  --space-LL: 48px;
  --space-L: 40px;
  --space-M: 24px;
  --space-S: 16px;
  --space-XS: 8px;
  @media only screen and (min-width: 768px) {
    --space-3L: 112px;
    --space-LL: 72px;
    --space-L: 48px;
    --space-M: 24px;
    --space-S: 16px;
    --space-XS: 8px;
  }
}

.txt-700 {
  font-weight: 700;
}

/* Base Setting
---------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  overflow-wrap: break-word;
  font-weight: 400;
  /* color: var(--text-beige); */
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.4;
  position: relative;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  body p {
    line-height: 1.4;
  }
}

a {
  transition: all 0.3s;
  color: var(--text-beige);
  outline: none !important;
}

a:hover {
  opacity: 1;
  color: var(--second);
}

a.btn:visited {
  color: var(--white) !important;
}

a.btn-second:visited {
  color: var(--gray) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: var(--light-red);
  color: var(--orange);
}

h1 {
  font-size: 42px;
  line-height: 1.3;
}

h2 {
  font-size: 38px;
  line-height: 1.36;
  color: var(--red);
}

h3 {
  color: var(--red);
  font-size: 30px;
  line-height: 1.36;
}

h4 {
  font-size: 28px;
  line-height: 1.38;
}

h5 {
  font-size: 24px;
  line-height: 1.4;
}

h6 {
  font-size: 20px;
  line-height: 1.42;
}

h2.heading-orange,
h3.heading-orange {
  color: var(--orange);
}

@media only screen and (max-width: 767px) {
  h2.heading-orange {
    margin-bottom: 40px;
  }
}

h4.heading-white {
  color: var(--white);
}

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

.error-messages {
  color: var(--orange);
}

.container-fluid,
.container-sm {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  @media only screen and (min-width: 1100px) {
    padding: 0;
  }
}

.form-section h4,
.section__content > h4,
.footer-top h4,
.precaution h4 {
  font-size: 20px;
  margin: var(--space-LL) 0 var(--space-M);
  text-align: center;
  position: relative;
  margin: 0 auto 0;
  @media only screen and (min-width: 768px) {
    font-size: 26px;
    margin-bottom: 10px;
  }
}

.one-tytle {
  margin: var(--space-LL) auto var(--space-LL);
}

h4,span {
  position: relative;
}

.form-section h4 span::after,
.section__content > h4 span::after,
.footer-top h4 span::after,
.precaution h4 span::after {
  content: "";
  width: 60px;
  height: 5px;
  border-top: 1px solid  var(--orange);
  position: absolute;
  left: -52px;
  top: 50%;
}
@media only screen and (min-width: 768px) {
  .form-section h4 span::after,
  .section__content > h4 span::after,
  .footer-top h4 span::after,
  .precaution h4 span::after {
    width: 100px;
    left: -95px;
  }
}
.form-section h4 span::before,
.section__content > h4 span::before,
.footer-top h4 span::before,
.precaution h4 span::before {
  content: "";
  width: 60px;
  height: 5px;
  border-top: 1px solid  var(--orange);
  position: absolute;
  right: -52px;
  top: 50%;
}
@media only screen and (min-width: 768px) {
  .form-section h4 span::before,
  .section__content > h4 span::before,
  .footer-top h4 span::before,
  .precaution h4 span::before {
    width: 100px;
    right: -95px;
  }
}

.form-section h4 span,
.section__content > h4 span,
.footer-top h4 span,
.precaution h4 {
  padding: 0 16px;
}
.form-section h4.heading-margin,
.section__content > h4.heading-margin,
.footer-top h4.heading-margin,
.precaution h4.heading-margin {
  margin-bottom: var(--space-LL);
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="phone"],
input[type="search"],
input[type="tel"],
textarea,
select {
  border: 0;
  border-radius: 0;
  padding: 8px 16px;
  outline: none !important;
  box-shadow: none;
  height: 40px;
}

@media only screen and (min-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="phone"],
  input[type="search"],
  input[type="tel"],
  textarea,
  select {
    height: 46px;
    font-size: 20px;
  }
}

select {
  background-color: var(--white);
}

.btn,
.btn-second {
  display: inline-block;
  width: 100%;
  max-width: 335px;
  transition: all 0.3s;
  text-align: center;
  font-weight: 700;
  outline: none !important;
  text-transform: uppercase;
  padding: 12px;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
  border-radius: 100px;
  text-decoration: none !important;
  color: white;
}

@media only screen and (min-width: 768px) {
  .btn,
  .btn-second {
    font-size: 24px;
    padding: 22px;
    min-width: 460px;
    max-width: unset;
  }
}

.btn:hover,
.btn-second:hover {
  opacity: 0.9;
}

.btn {
  color: var(--white);
  background: var(--darker-orange);
  border: 0;
}

.btn-second {
  color: var(--gray);
  background-color: var(--white);
  border: 1px solid var(--gray);
}
.btn-bottom{
   margin-top: 20px;
}

.btn-apply {
  display: grid;
  grid-template:
    ". btn-apply-text img" auto /
    1fr auto 1fr;
  align-items: center;
  justify-items: start;
  gap: var(--space-XS);
  color: var(--dark-orange) !important;
  background: var(--white);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  text-decoration: none !important;
  border-radius: 150px;
  line-height: 26px;
  width: 100%;
  position: relative;
  height: 120px;
}

@media only screen and (max-width: 767px) {
  .btn-apply {
    height: 105px;
    padding: 0 65px 0 0;
    text-align: center;
    margin: 30px auto 80px;
  }
}

.btn-apply .bear {
  position: absolute;
  width: 69px;
  height: 95px;
  display: block;
  right: 32px;
  bottom: 10px;
}

.bear img {
  display: block;
  width: 100% !important;
  height: auto;
}

@media only screen and (min-width: 768px) {
  .btn-apply .bear{
  height: 120px;
  width: 86px;
  right: 44px;
  bottom: 5px;
  }
}

.btn-apply-text {
  grid-area: btn-apply-text;
}

.btn-apply img {
  grid-area: img;
  width: 10vw;
}

@media only screen and (min-width: 768px) {
  .btn-apply img {
    width: 6vw;
  }
}

.btn-apply {
  @media only screen and (min-width: 768px) {
    font-size: 22px;
    text-align: center;
    line-height: 1.38;
  }

  @media only screen and (min-width: 992px) {
    font-size: 26px;
  }
}

@media only screen and (min-width: 768px) {
  .btn-apply br {
    display: none;
  }
}

.btn-apply:hover {
  opacity: 0.9;
  color: var(--white);
}

.btn-outline {
  transition: all 0.3s;
  color: var(--beige);
  margin: 40px 0;
  padding: 15px 25px;
  min-width: 230px;
  text-align: center;
  font-weight: 700;
  display: inline-block;
  outline: none !important;
  border-radius: var(--radius);
  background: none;
  text-transform: uppercase;
  border: 1px solid var(--beige);
}

.btn-outline:hover {
  opacity: 0.9;
  color: var(--white);
}

.btn-outline svg {
  margin-right: 15px;
  max-height: 20px;
}

.btn-outline.btn-white {
  border-color: var(--white);
  color: var(--white);
}

.container-sm {
  max-width: 1280px;
}


.container-fluid {
  max-width: 1920px;

  @media (min-width: 48em) {
    padding: 0 64px;
  }
}

.hamburger {
  position: relative;
  width: 60px;
  height: 60px;
  line-height: 1;
  cursor: pointer;
  display: block;
  right: 0;
  z-index: 99;
  align-self: flex-end;
  border: 2px solid var(--white);
  opacity: 1;
}

.hamburger__line {
  width: 29px;
  height: 3px;
  background: var(--black);
  backface-visibility: hidden;
  position: absolute;
  display: block;
  margin: auto;
  transition: 0.3s all ease;
  transform: rotate(0deg);
  border-radius: 5px;
  top: calc(50% - 1.5px);
  left: calc(50% - 14.5px);
}

.hamburger__line::before,
.hamburger__line::after {
  content: "";
  transform-origin: center center;
  width: 29px;
  height: 3px;
  background: var(--black);
  backface-visibility: hidden;
  position: absolute;
  left: 0;
  top: 10px;
  transition: 0.3s all ease;
  border-radius: 5px;
  opacity: 1;
}

.hamburger__line::after {
  top: -10px;
}

.hamburger.active .hamburger__line {
  transform: rotate(225deg);
}

.hamburger.active .hamburger__line::before {
  transform: rotate(-90deg);
  top: 0;
}

.hamburger.active .hamburger__line::after {
  opacity: 0;
}

@media screen and (min-width: 1024px) {
  .pcbr {
    display: block;
  }
  .spbr {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .pcbr {
    display: none;
  }
  .spbr {
    display: block;
  }
}

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

.header {
  font-size: 14px;
}

.header ul {
  margin: 0;
}

.header .logo {
  margin: 0;
}

.header .logo img {
  display: block;
}

.header .freeword {
  border-radius: 0;
  padding: 0 0 0 24px;
}

#header {
  position: sticky;
  top: 0;
}

#header.header--scroll {
  position: sticky;
}

#header .header__top .header__top__nav .search-area .submit {
  top: 4px;
}

.header-news .header-news__slider {
  position: relative;
  top: 0;
  margin: 0;
}

.header-logo {
  padding: 12px 0;
  background: var(--white);

  @media only screen and (min-width: 768px) {
    padding: 20px 0;
  }
}

.header-logo .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;

  @media only screen and (min-width: 768px) {
    .header-logo .container {
      gap: 56px;
    }
  }
}

.header-logo .container img {
  max-height: 36px;

  @media only screen and (min-width: 768px) {
    max-height: 56px;
  }

  @media only screen and (min-width: 992px) {
    max-height: 78px;
  }
}

#footer {
  margin-top: 0;
}

.footer-top {
  text-align: center;

}

.footer-top h4{
  @media only screen and (max-width: 767px) {
    margin-bottom: 20px;
   }
}

.footer-top .container {
  padding-bottom: 150px;
}

.footer-top p {
  font-size: 14px;
  line-height: 24px;

  @media only screen and (min-width: 768px) {
    font-size: 20px;
    line-height: 2.4;
  }
}

.footer-top p a {
  color: var(--white);
}

.footer-top p a:hover {
  text-decoration: underline;
}

/** Pages */
.wrap-bg {
  background: url("/assets/front/daks/img/lp/teddybear2025/bg-sp.jpg") repeat-y 0 0/100%;
  @media only screen and (min-width: 768px) {
    background-image: url("/assets/front/daks/img/lp/teddybear2025/bg.jpg");
  }
}
.wrap-inner{
  background-color: var(--bg-dark-red);
  max-width: 1280px;
  margin: 0 auto;
  @media only screen and (max-width: 767px) {
   /* background-color: transparent; */
  }
}

.banner{
  position: relative;
}

.container-sm .stamp{
  position: absolute;
}
.container-sm .stamp{
  width: 200px;
  height: 310px;
  top: -235px;
  right: 0px;
}


@media only screen and (min-width: 768px) {
  .container-sm .stamp {
    width: calc(244 * (100vw / 1600));
    height: calc(384 * (100vw / 1600));
    position: absolute;
    top: calc(-250 * (100vw / 1600));
    right: 15px;
    pointer-events: none;
    z-index: 10;
  }
}

@media only screen and (min-width: 1100px) {
  .container-sm .stamp {
    right: calc((100vw - 1080px) / 2);
  }
}

@media only screen and (min-width: 1280px) {
  .container-sm .stamp {
    right: 100px;
    top: calc(-270 * (100vw / 1600));
  }
}

@media only screen and (min-width: 1400px) {
  .container-sm .stamp {
    right: -60px;
  }
}

.banner picture {
  display: block;
}

.banner picture img {
  width: 100%;
}

.sub-banner picture {
  display: block;
}

.sub-banner picture img {
  width: 100%;
}

.section {
  padding: 20px 0 ;
  text-align: center;
max-width: 1280px;
margin: 0 auto 0;
}

@media only screen and (min-width: 768px) {
    .section{
    padding: 40px 0 90px;
  }
  }
  
.section__heading {
  margin: 0 0 50px;

  @media only screen and (min-width: 768px) {
    margin: 0 0 50px;
  }
}

.frame-main {
  position: relative;
  border: 4px solid var(--dark-orange);
  border-right: transparent;
  border-left: transparent;
  color: var(--beige);
  font-weight: 600;
  text-align: center;
  margin: 0px!important ;
  background-color: var(--white);
}

@media only screen and (max-width: 767px) {
  .frame-circle {
    /* padding: 45px 0 55px; */
    padding: 35px 0;
  }
}

.frame-circle h2 {
  width: fit-content;
  margin: 0 auto;
  padding-bottom: 20px;
}

.frame-main::before{
  content: '';
  border: solid 2px var(--dark-orange);
  border-left: transparent;
  border-right: transparent;
  position: absolute;
  top: 2%;
  left: 0%;
  width: 100%;
  height: 96%;
}

@media only screen and (min-width: 768px) {
  .frame-main {
    position: relative;
    padding:45px 0;
    color: var(--beige);
    font-weight: 600;
    text-align: center;
    margin: 20px 0 0!important ;
    background-color: var(--white);
  }
}
/* .frame-main:before,
.frame-main:after,
.frame-circle:before,
.frame-circle:after {
  position: absolute;
  display: block;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  content: "";
  background-color: var(--green);
  border: 1px solid var(--beige);
} */

.frame-inside{
  pointer-events: none;
}

.frame-circle *{
  color: var(--dark-orange);
}

.frame-circle h2{
  letter-spacing: -0.05em;
}

.section__heading .frame-circle p {
  color: var(--dark-orange);
}

@media only screen and (min-width: 768px) {
  .section__heading .frame-circle p {
    line-height: 42px;
  }
}

.frame-over {
  max-width: 1050px;
  margin: 60px auto 0;
}

@media only screen and (max-width: 767px) {
.frame-over{
  margin-bottom: 70px;
}

}

/* .frame-inside {
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  border: 1px solid var(--beige);
  z-index: 1;
} */

.overview {
  display: flex;
  gap: var(--space-S);
  align-items: center;
  justify-content: center;
}

.overview img {
  width: 90px;
}

.section__heading h2 {
  font-size: 24px;
  line-height: 38px;

  @media only screen and (min-width: 768px) {
    font-size: 38px;
    line-height: 52px;
  }
}

.section__heading h3 {
  font-size: 14px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  @media only screen and (min-width: 768px) {
    font-size: 30px;
    line-height: 41px;
    margin: 0 0 5px;
  }
}

.section__heading p {
  color: var(--red);
  font-size: 16px;
  line-height: 22px;

  @media only screen and (min-width: 768px) {
    font-size: 22px;
    line-height: 30px;
    margin-top: 10px;
  }
}

.section__heading p.text-white {
  color: var(--white);
}

.teddybear2025-starting-application .section__heading p,
.teddybear2025-application-completion .section__heading p {
  color: var(--white);
  font-size: 18px;
  line-height: 24px;

  @media only screen and (min-width: 768px) {
    font-size: 22px;
    line-height: 30px;
  }
}

.section__heading--margin p {
  margin-top: 45px;
}

@media only screen and (max-width: 767px) {
  .section__content h4{
    margin-bottom: 16px; 
  }
  .section__content p{
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .section__content p.p-30 {
    padding-bottom: 30px;
  }
}

.section__content p {
  font-size: 14px;
  line-height: 24px;
  @media only screen and (min-width: 768px) {
    font-size: 20px;
    line-height: 27px;
  }
}

.section__content .btn,
.section__content .btn-second {
  margin-top: 20px;

  @media only screen and (min-width: 768px) {
    min-width: 600px;
    margin-top: 100px;
  }
}

.section__content a {
  color: var(--white);
  text-decoration: underline;
}

.section__content ol li {
  counter-increment: inst;
  position: relative;
}
.section__content ol li h4{
width: fit-content;
margin-inline: auto;
}
@media only screen and (max-width: 767px) {
.section__content ol li h4.no-1,
.section__content ol li h4.no-2
{
  
    font-size: 18px;
    padding-left: 50px;
  }
}

.section__content ol li h4.no-1,
.section__content ol li h4.no-2
{
  margin-bottom: 24px;
  }




/* .section__content ol li h4.no-1{
  padding-left: 40px;
} */

.section__content ol li h4.no-1::before{
  
  content: '';
  position: absolute;
  background-image: url(/assets/front/daks/img/lp/teddybear2025/number-1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
  top: 50%;
  width: 38px;
  height: 54px;
  left: 0px;
  @media only screen and (min-width: 768px) {
  width: 39px;
  height: 37px;
  left: -55px;
}
}

  

  @media only screen and (min-width: 768px) {
    .section__content ol li h4.no-1::before{
      width: 50px;
      height: 70px;
      left: -55px;
    }
}

.section__content ol li h4.no-2::before{
  content: '';
  position: absolute;
  background-image: url(/assets/front/daks/img/lp/teddybear2025/number-2.png);
  background-size: contain;
  transform: translateY(-50%);
  top: 50%;
  width: 38px;
  height: 54px;
  left: 0px;
  background-repeat: no-repeat;
  background-position: center;
}

@media only screen and (min-width: 768px) {
  .section__content ol li h4.no-2::before{
    width: 50px;
    height: 70px;
    left: -97px;
  }
}




.section__content ol li + li {
  margin-top: var(--space-LL);
}

.section__content .btn-apply {
  max-width: 690px;
}

.section__bottons .btn,
.section__bottons .btn-second {
  width: 100%;
}

.form-section h3 {
  font-size: 20px;
  margin: 0 0 20px;
  text-align: center;

  @media only screen and (min-width: 768px) {
    font-size: 30px;
  }
}

.form-section h5 {
  font-size: 16px;
  margin: 0 0 30px;
  font-weight: 500;

  @media only screen and (min-width: 768px) {
    font-size: 24px;
  }
}

.form-section__content {
  padding: 30px 16px 25px 25px;
  background: var(--white);
  border-radius: 20px;
  color: var(--black);
  font-size: 16px;
  line-height: 1.33;

  @media only screen and (min-width: 768px) {
    font-size: 18px;
    padding: 40px 16px 25px 25px;
  }
}

.form-section__content p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;

  @media only screen and (min-width: 768px) {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 25px;
  }
}

.form-section__content--scroll {
  max-height: 280px;
  padding-right: 12px;
  overflow-y: auto;
}

.form-section__content--scroll::-webkit-scrollbar {
  width: 10px;
}

.form-section__content--scroll::-webkit-scrollbar-track {
  background: rgba(226, 181, 33, 0.2);
  opacity: 0.2;
  border-radius: 10px;
}

.form-section__content--scroll::-webkit-scrollbar-thumb {
  background: var(--darker-orange);
  border-radius: 10px;
}

/* .form-section__content--scroll::-webkit-scrollbar-thumb:hover {
  background: #a0875b;
} */

.form-section__bottons {
  display: flex;
  flex-direction: column-reverse;
  margin-top: var(--space-LL);

  @media only screen and (min-width: 768px) {
    flex-direction: row;
    gap: 40px;
    justify-content: center;
  }
}

.form-section__bottons a,
.form-section__bottons input {
  width: 100%;
  min-width: auto;
  max-width: 460px;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 24px;

  @media only screen and (min-width: 768px) {
    margin-bottom: 24px;
    flex-basis: 0;
    flex-grow: 1;
    font-size: 24px;
    line-height: 33px;
  }
}

@media only screen and (max-width: 767px) {
  .form-section__bottons .btn-second {
    order: 2;
  }
}

.form-section__row {
  display: grid;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 30px;
}

.form-section__row label {
  font-size: 16px;
  color: var(--white);

  @media only screen and (min-width: 768px) {
    font-size: 20px;
  }
}

.form-section__row label:first-of-type {
  font-weight: 700;
}

.required {
  font-size: 16px;
  color: var(--orange);

  @media only screen and (min-width: 768px) {
    font-size: 20px;
    border-radius: 6px;
  }
}

.form-section__input {
  display: flex;
  flex-direction: column;
  gap: var(--space-S);
}

.form-section__input input[type="text"],
.form-section__input input[type="email"],
.form-section__input input[type="password"],
.form-section__input input[type="phone"],
.form-section__input input[type="search"],
.form-section__input input[type="tel"],
.form-section__input--group-text-tel input[type="text"],
.form-section__input textarea,
.form-section__input--group-text-birth select,
.form-section__input select {
  font-size: 14px;
  @media only screen and (min-width: 768px) {
    font-size: 20px;
  }
}

.annotation {
  font-size: 12px;
  @media only screen and (min-width: 768px) {
    font-size: 14px;
  }
}

.form-section__input--group {
  display: flex;
  gap: var(--space-S);
  align-items: center;
}

.form-name {
  flex: 1;
}

.form-section__input--group-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-S);
}
@media only screen and (max-width: 768px) {
.form-section__input--group-text-zip{
  margin-bottom: 10px;
}
.zip-label{
  margin-bottom: 10px;
}
.form-section__input .input--half{
  width: 100%;
}
}


@media only screen and (min-width: 768px) {

.form-section__input--group-text-zip {
  display: grid;
  gap: var(--space-S);
  align-items: center;
  grid-template:
    "zip-label  zip-label" auto
    "zip1 zip2" auto /
    125px 125px;
}
}
.zip-label {
  grid-area: zip-label;
}

.form-section__input--group-text-tel {
  display: grid;
  gap: var(--space-S);
  align-items: center;
  grid-template:
    "tel-label tel-label tel-label tel-label tel-label" auto
    "tel1 hyphen1 tel2 hyphen2 tel3" auto /
    1fr auto 1fr auto 1fr;

  @media only screen and (min-width: 768px) {
    grid-template:
      "tel-label tel-label tel-label tel-label tel-label" auto
      "tel1 hyphen1 tel2 hyphen2 tel3" auto /
      125px 20px 125px 20px 125px;
  }
}

.tel-label {
  grid-area: tel-label;
}

.tel1 {
  grid-area: tel1;
}
@media only screen and (min-width: 768px) {
.tel1{
  width: 90px;
}
.tel2,.tel3{
  width: 115px;
}
}

.hyphen1 {
  grid-area: hyphen1;
  text-align: center;
}

.tel2 {
  grid-area: tel2;
}

.hyphen2 {
  grid-area: hyphen2;
  text-align: center;
}

.tel3 {
  grid-area: tel3;
}

.form-section__input--group-text-birth {
  display: grid;
  gap: var(--space-S);
  align-items: center;
  grid-template:
    "birth-label birth-label birth-label birth-label birth-label" auto
    "year slash1 month slash2 day" auto /
    1fr auto 1fr auto 1fr;
}

.birth-label {
  grid-area: birth-label;
}

.year {
  grid-area: year;
}

.slash1 {
  grid-area: slash1;
  text-align: center;
}

.month {
  grid-area: month;
}

.slash2 {
  grid-area: slash2;
  text-align: center;
}

.day {
  grid-area: day;
}

.check {
  display: flex;
  gap: var(--space-S);
}

.form-section__input--group-note {
  position: relative;
}

.form-section__input--group-note span {
  font-size: 14px;
  margin-bottom: 8px;
  display: inline-block;

  @media only screen and (min-width: 768px) {
    position: absolute;
    left: calc(100% + 10px);
    top: 10px;
    white-space: nowrap;
    font-size: 24px;
    margin-bottom: 0;
  }
}



.form-section__input .input--half {
  width: 250px;
}
.form-section__input .input--half-long {
  width: 410px;
}

@media only screen and (max-width: 767px) {
  
  .form-section__input .input--half,
  .form-section__input .input--half-long 
  {
    width: 100%;
  }

  .form-section--confirm .form-section__row {
    margin-bottom: 25px;
  }
}

.form-section--confirm .form-section__row > label {
  padding-top: 0;
}

.form-section--confirm .form-section__input p {
  font-size: 16px;
  line-height: 22px;

  @media only screen and (min-width: 768px) {
    font-size: 20px;
    line-height: 27px;
  }
}
.precaution p {
  font-size: 14px;
  padding-left: 15px;
  position: relative
}

@media only screen and (min-width: 768px) {
  .precaution p {
  font-size: 20px;
  }
}

.precaution p:before{
  content: '・';
  position: absolute;
  left: -5px;
}

.precaution .container p.wow.fadeInUp:first-of-type {
  font-weight: 700;
}
.precaution{
  padding-top: 20px;
}
.precaution .precation-big{
  font-size: 18px;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .precaution{
    padding-top: 30px;
  }
  .precaution .precation-big{
    font-size: 22px;
    margin-top: 20px;
  }
}


/*# sourceMappingURL=teddybear2022.css.map */

/*----------------
追加修正ー
----------------*/
/* .teddybear-main-contents {
  background: var(--green);
} */

#wrapper {
  padding-top: 0;
}

.teddybear-main-contents .btn {
  border-radius: 100px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  @media only screen and (min-width: 768px) {
  max-width: 690px;
  }
}

.teddybear-main-contents .btn-second {
  border-radius: 100px;
  margin-left: auto;
  margin-right: auto;
}

/* teddybear2025 */

@media only screen and (min-width: 768px) {
  .teddybear2025 .section{
    padding: 40px 0 50px;
  }
}

@media only screen and (min-width: 768px) {
  .teddybear2025 .m-top-header{
    margin-top: 40px;
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .teddybear2025  .m-top-header-big{
    margin-top: 80px;
    display: block;
  }
}

@media only screen and (min-width: 768px) {
  .teddybear2025 .m-top-20{
    margin-top: 20px;
    display: block;
  }
}

.teddybear2025 .section__content .btn-apply {
  border: solid 2px var(--dark-orange);
}

@media only screen and (min-width: 768px) {
  .teddybear2025 .section__content .btn-apply{
    margin: 100px auto 80px;
    padding: 16px ;
    max-width: 800px;
  }
}

@media only screen and (min-width: 768px) {
  .teddybear2025 .section__content p {
    line-height: 38px;
  }
}

.teddybear2025 .white-title{
  color: var(--white);
  padding-bottom: 20px;
  position: relative;
}

.teddybear2025 .white-title::after {
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  right:0;
  margin:auto;
  background: var(--orange);
  height: 4px;
  border-radius: 5px;
  width: 60%;
}

@media only screen and (max-width: 767px) {
  .teddybear2025 .red-title{
    margin-top: 50px;
  }
}

@media only screen and (min-width: 768px) {
  .teddybear2025 .btn-600 {
    max-width: 600px;
  }
}

/* teddybear2025-end */

.teddybear2025-end .section {
  padding: 60px 0 100px;
}

@media only screen and (min-width: 768px) {
  .teddybear2025-end .section {
    padding: 90px 0 90px;
  }
}

.teddybear2025-end h3 {
  line-height: 40px;
}

@media only screen and (max-width: 767px) {
  .teddybear2025-end .section__heading {
    margin: 0 0 80px;
  }

  .teddybear2025-end h3 {
      font-size: 20px;
      line-height: 36px;
  }

  .teddybear2025-end p {
    letter-spacing: -0.01em;
  }
}

.teddybear2025-end .section__heading p {
  line-height: 30px;
}

@media only screen and (min-width: 768px) {
  .teddybear2025-end .section__heading p {
    line-height: 34px;
  }
}

/* application-form-terms */

.application-form-terms .form-section h4 {
  color: var(--white);
  padding-bottom: 5px;
  width: fit-content;
  margin:0 auto 30px;
}

.application-form-terms .section {
  padding: 60px 0 10px;
}

@media only screen and (min-width: 768px) {
  .application-form-terms .section{
    padding: 60px 0 30px;
  }

  .application-form-terms .form-section h4 {
    font-size: 30px;
    padding-bottom: 10px;
    width: fit-content;
    margin:0 auto 30px;
  }

  .application-form-terms .form-section {
    max-width: 1020px;
  }

  .application-form-terms .btn,
  .form-section__bottons .btn {
    max-width: 460px;
    background-color: var(--darker-orange);
    margin-bottom: 90px;
  }
}

@media only screen and (max-width: 767px) {
  .application-form-terms .form-section__bottons .btn {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .application-form-terms .section__heading h3 {
    font-size: 16px;
  }
}

.application-form-terms .section__heading p {
  line-height: 30px;
}

@media only screen and (min-width: 768px) {
  .application-form-terms .section__heading p {
    line-height: 40px;
  }
}

/* teddybear2025-application-completion */

.teddybear2025-application-completion .section {
  padding: 50px 0 100px;
}
@media only screen and (min-width: 768px) {
  .teddybear2025-application-completion .section{
    padding: 75px 0 90px;
    }
}

.teddybear2025-application-completion .section__heading p {
  line-height: 30px;
}

@media only screen and (min-width: 768px) {
  .teddybear2025-application-completion .section__heading p {
    line-height: 34px;
  }
}

/* teddybear2025-teddybear2025-starting-application */

.teddybear2025-starting-application .section {
  padding: 50px 0 100px;
}

@media only screen and (min-width: 768px) {
  .teddybear2025-starting-application .section{
    padding: 75px 0 90px;
  }
}

.teddybear2025-starting-application .section__heading p {
  line-height: 30px;
}

@media only screen and (min-width: 768px) {
  .teddybear2025-starting-application .section__heading p {
    line-height: 34px;
  }
}

/* teddybear2025_confirm */
.teddybear2025_confirm .form-section h4 span::after,
.teddybear2025_confirm .form-section h4 span::before {
  display: none;
}

.teddybear2025_confirm .form-section h4 {
  color: var(--white);
  font-size: 20px;
  width: fit-content;
  padding-bottom: 5px;
}

.teddybear2025_confirm .form-section h4 span {
  padding: 0;
}

.teddybear2025_confirm .form-section {
  padding-top: 60px;
}

.teddybear2025_confirm .form-section__bottons .btn1 {
  background-color: var(--light-brown);
}

.teddybear2025_confirm .form-section__bottons .btn1
.teddybear2025_confirm .form-section__bottons .btn2 { 
  color: var(--white) !important;
}

@media only screen and (max-width: 767px) {
  .teddybear2025_confirm .footer-top {
    margin-top: 80px;
  }
}

@media only screen and (min-width: 768px) {
  .teddybear2025_confirm .form-section h4 {
    font-size: 30px;
    padding-bottom: 10px;
  }

  .teddybear2025_confirm .form-section{
    max-width: 840px;
    margin: 0 auto;
    padding-top: 55px;
  }

  .teddybear2025_confirm .form-section__bottons{
    display: flex;
    gap: 40px;
  }
}


/* teddybear2025_input */
.teddybear2025_input .form-section .form-title span::after,
.teddybear2025_input .form-section .form-title span::before {
  display: none;
}

.teddybear2025_input .form-section .form-title {
  color: var(--white);
  font-size: 20px;
  width: fit-content;
  padding-bottom: 5px;
}

.teddybear2025_input .form-section .form-title span{
  padding: 0;
}

.teddybear2025_input .form-section {
  padding-top: 60px;
}

.teddybear2025_input .subtext{
  color: var(--orange);
  font-size: 14px;
  margin: 40px 0 20px 0;
  display: block;
  text-align: left;
}

@media only screen and (min-width: 768px) {
  .teddybear2025_input .subtext{
    text-align: right;
    font-size: 16px;
    margin: 40px 0 0 0;
  }
}

@media only screen and (max-width: 767px) {
  .teddybear2025_input .footer-top{
  margin-top: 80px;
}
}

@media only screen and (min-width: 768px) {
  .teddybear2025_input .form-section .form-title{
    font-size: 30px;
    padding-bottom: 10px;
  }

  .teddybear2025_input .form-section{
    max-width: 840px;
    margin: 0 auto;
    padding-top: 55px;
  }
}

.wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

@media only screen and (min-width: 768px) {
  .wrap{
    flex-direction: row;
  }
}

select {
  background-image: url(/assets/front/daks/img/lp/teddybear2025/select-arrow.svg);
  background-position: right 15px center;
  background-repeat: no-repeat;
  color: var(--black);
}

@media only screen and (max-width: 767px) {
  input{
    width: 100% !important;
    max-width: unset;
  }
}

.detail-text {
  color:var(--white);
  font-size: 14px;
}

@media only screen and (min-width: 768px) {
  .detail-text{
    font-size: 16px;
  }
}

.small-label {
  font-size: 18px !important;
}

@media only screen and (max-width: 767px) {
  .small-label{
    font-size: 14px !important;
  }
}

.zip1 {
  grid-area: zip1;
  width: 145px;
}

.zip1 input {
  width: 145px;
}

@media only screen and (max-width: 767px) {
  .zip1 {
    grid-area: zip1;
    width: 92px;
  }
}

.hyphen {
  grid-area: hyphen;
}

.zip2 {
  grid-area: zip2;
  width: 190px;
}
.zip2 input {
  width: 190px ;
}

@media only screen and (max-width: 767px) {
  .zip2 {
    grid-area: zip1;
    width: 92px;
  }
}

.bold{
  font-weight: bold;
}