@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

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

img,
picture,
audio,
canvas,
video,
svg {
  display: inline-block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  overflow-wrap: break-word;
}

br,
hr {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

input,
select {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

body {
  position: relative;
  color: #2c2c2c;
  font-size: 16px;
  font-family:
    "Noto Serif JP", "Noto Serif Japanese", "YuMincho", "Yu Mincho", "游明朝", "Hiragino Mincho ProN",
    "ヒラギノ明朝 ProN W3", "Times New Roman", serif;
  font-weight: 600;
  line-height: 1;
  background-color: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  color: #2c2c2c;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-decoration: none;
}

b {
  font-weight: bold;
}

u {
  text-decoration: underline;
}

em {
  font-weight: bold;
}

strong {
  font-size: inherit;
  font-weight: bold;
}

mark {
  background-color: transparent;
}

del {
  text-decoration: line-through;
}

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

button {
  cursor: pointer;
}

#to,
#bo {
  display: block;
  clear: both;
  height: 0;
  overflow: hidden;
}

#page {
  position: relative;
}

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

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

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

p.center {
  text-align: center;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  z-index: 997;
}
#header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 80px;
}
@media screen and (max-width: 960px) {
  #header .inner {
    height: 60px;
  }
}
#header .contact-button {
  margin: 0;
}
@media screen and (max-width: 960px) {
  #header .contact-button {
    /* display: none; */
  }
}

#header-logo a {
  display: block;
  width: min(100%, 209px);
}
@media screen and (max-width: 960px) {
  #header-logo a {
    width: min(100%, 194px);
  }
}
@media screen and (max-width: 400px) {
  #header-logo a {
    width: min(100%, 160px);
  }
}

#main {
  padding: 80px 0 0;
}
@media screen and (max-width: 960px) {
  #main {
    padding: 60px 0 0 0;
  }
}

.article {
  line-height: 1.5;
}
.article p {
  line-height: 2;
}

.section {
  position: relative;
  width: 100%;
  z-index: 1;
}
.section .top-circle {
  position: absolute;
  left: 0;
  width: 100%;
  height: 192px;
  background-repeat: repeat-x;
  background-position: center center;
  background-size: 100% cover;
}
@media screen and (max-width: 960px) {
  .section .top-circle {
    height: 98px;
  }
}
.section .top-circle.-white {
  background-image: url("../img/bg-circle.png");
}
@media screen and (max-width: 960px) {
  .section .top-circle.-white {
    background-image: url("../img/sp/bg-circle.png");
  }
}
.section .top-circle.-light-orange {
  background-image: url("../img/bg-circle-light-orange.png");
}
@media screen and (max-width: 960px) {
  .section .top-circle.-light-orange {
    background-image: url("../img/sp/bg-circle-light-orange.png");
  }
}

.inner {
  clear: both;
  display: block;
  position: relative;
  width: 100%;
  max-width: 1110px;
  padding: 0 15px;
  margin: 0 auto;
}

#footer {
  padding: 30px 0;
  background-color: #fef5ec;
}
@media screen and (max-width: 960px) {
  #footer {
    padding: 25px 0 10px;
  }
}
#footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#footer .inner div {
  display: flex;
  align-items: center;
}
#footer .inner div p {
  padding-left: 40px;
  font-size: 14px;
}
@media screen and (max-width: 960px) {
  #footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5px 0;
  }
}
#footer .logo {
  display: block;
  width: min(100%, 209px);
}
#footer .copyright {
  display: block;
  font-size: 12px;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #footer .inner div {
    display: block;
  }
  #footer .inner div p {
    padding-left: 0px;
    margin: 10px 0;
  }
}
#fixed-contact {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 22px 0;
  background-color: #fef5ec;
  z-index: 997;
}
@media screen and (max-width: 960px) {
  #fixed-contact {
    padding: 15px 0;
  }
}
#fixed-contact .inner {
  width: min(100%, 905px);
}
#fixed-contact.hide {
  display: none;
}
#fixed-contact .contact-button {
  width: 100%;
  padding: 20px 165px;
  font-size: 25px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #fixed-contact .contact-button {
    font-size: 15px;
    padding: 15px 55px 15px 35px;
  }
}
#fixed-contact .contact-button i {
  right: 95px;
  width: 41px;
  height: 41px;
}
@media screen and (max-width: 960px) {
  #fixed-contact .contact-button i {
    width: 22px;
    height: 22px;
    right: 18px;
  }
}
#fixed-contact .contact-button i::before {
  left: calc(50% + 1px);
  border-width: 9px 0 9px 12px;
}
@media screen and (max-width: 960px) {
  #fixed-contact .contact-button i::before {
    border-width: 5px 0 5px 8px;
  }
}

.more-button.-contact {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  color: #fff;
  font-weight: 900;
  line-height: 1.8;
  letter-spacing: 0.1em;
  border: 5px solid #fff;
  border-radius: 1000px;
  -webkit-box-shadow: 0 0 10px rgba(190, 149, 38, 0.36);
  box-shadow: 0 0 10px rgba(190, 149, 38, 0.36);
  background-color: #ffa426;
}
@media screen and (max-width: 960px) {
  .more-button.-contact {
    border-width: 3px;
  }
}
.more-button.-contact i {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.more-button.-contact i::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(50% + 1px);
  border-style: solid;
  border-color: transparent transparent transparent #8a6740;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.contact-button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  color: #fff;
  line-height: 1.3;
  /* line-height: 1.8; */
  letter-spacing: 0.1em;
  border-radius: 1000px;
  background-color: #ffa426;
}
.contact-button i {
  position: absolute;
  top: 50%;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.contact-button i::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(50% + 1px);
  border-style: solid;
  border-color: transparent transparent transparent #8a6740;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.contact-button.-small {
  padding: 12px 65px 12px 41px;
  font-weight: 700;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  background-color: #ffa426;
}
@media screen and (max-width: 960px) {
  .contact-button.-small {
    padding: 8px 57px 10px 34px;
    margin: 14px auto 0 0;
    font-size: 15px;
  }
}
.contact-button.-small i {
  right: 18px;
  width: 27px;
  height: 27px;
}
@media screen and (max-width: 960px) {
  .contact-button.-small i {
    width: 24px;
    height: 24px;
  }
}
.contact-button.-small i::before {
  left: calc(50% + 1px);
  border-width: 4px 0 4px 6px;
}
.contact-button.-large {
  font-weight: 900;
  border: 5px solid #fff;
  -webkit-box-shadow: 0 0 10px rgba(190, 149, 38, 0.36);
  box-shadow: 0 0 10px rgba(190, 149, 38, 0.36);
}
@media screen and (max-width: 960px) {
  .contact-button.-large {
    border-width: 3px;
  }
}
#top-branding {
  position: relative;
  padding: 48px 0 124px;
  background-color: #fef5ec;
}
@media screen and (max-width: 960px) {
  #top-branding {
    padding: 0 0 80px;
  }
}
#top-branding::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 48px;
  left: 0;
  width: 25%;
  height: 60px;
  background-color: #8a6740;
}
@media screen and (max-width: 960px) {
  #top-branding::before {
    content: none;
  }
}
#top-branding .inner {
  position: relative;
  background-color: transparent;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  #top-branding .inner {
    padding: 41px 0 0;
  }
}
#top-branding .content {
  max-width: 448px;
}
@media screen and (max-width: 960px) {
  #top-branding .content {
    max-width: none;
    padding: 0 15px;
    margin: 0 auto;
  }
}
#top-branding .ribbon-wrap {
  position: relative;
  left: -15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 122px 0 0;
}
@media screen and (max-width: 960px) {
  #top-branding .ribbon-wrap {
    position: absolute;
    top: -27px;
    left: 0;
    padding: 0 118px 0 0;
  }
}
#top-branding .ribbon-wrap::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
  width: 98px;
  height: 79px;
  background-image: url("../img/branding-ribbon-character.png");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  #top-branding .ribbon-wrap::after {
    top: calc(50% - 5px);
    width: 82px;
    height: 75px;
  }
}
#top-branding .ribbon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 60px;
  padding: 0 50px 0 63px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
  background-color: #8a6740;
}
@media screen and (max-width: 960px) {
  #top-branding .ribbon {
    padding: 0 23px 0 68px;
    height: 54px;
    font-size: 17px;
  }
}
#top-branding .ribbon::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 24px;
  width: 27px;
  height: 29px;
  background-image: url("../img/branding-ribbon-icon.png");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  #top-branding .ribbon::before {
    left: 30px;
    width: 24px;
    height: 25px;
  }
}
#top-branding .ribbon::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 30px 20px 30px 0;
  border-color: transparent #fef5ec transparent transparent;
}
@media screen and (max-width: 960px) {
  #top-branding .ribbon::after {
    border-color: #8a6740 transparent #8a6740 transparent;
    /* right: -17px; */
    right: -16px;
    border-width: 27px 17px 27px 0;
  }
}
#top-branding h1 {
  margin: 38px 0 24px;
  font-size: 40px;
  line-height: 1.2;
}
@media screen and (max-width: 960px) {
  #top-branding h1 {
    margin: 0 0 15px;
    font-size: 38px;
    line-height: 1.4;
  }
}
#top-branding h1 em {
  color: #ffa426;
}
#top-branding .bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 684px;
  height: 549px;
  background-image: url("../img/branding-01.jpg");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  #top-branding .bg {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0 0 97.6%;
  }
}

#top-safe {
  padding: 40px 0 170px;
}
@media screen and (max-width: 960px) {
  #top-safe {
    padding: 12px 0 60px;
  }
}
#top-safe .top-circle {
  top: -69px;
}
@media screen and (max-width: 960px) {
  #top-safe .top-circle {
    top: -52px;
  }
}
#top-safe h2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 50px 0 60px;
  margin: 0 auto 40px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #top-safe h2 {
    padding: 0 30px 0 40px;
    margin: 0 auto 26px;
    font-size: 24px;
  }
}
#top-safe h2::before,
#top-safe h2::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% + 2px);
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#top-safe h2::before {
  left: 0;
  width: 40px;
  height: 51px;
  background-image: url("../img/safe-title-icon-01.png");
}
@media screen and (max-width: 960px) {
  #top-safe h2::before {
    width: 29px;
    height: 36px;
  }
}
#top-safe h2::after {
  right: 0;
  width: 40px;
  height: 51px;
  background-image: url("../img/safe-title-icon-02.png");
}
@media screen and (max-width: 960px) {
  #top-safe h2::after {
    width: 29px;
    height: 36px;
  }
}
#top-safe .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 6.5%;
}
@media screen and (max-width: 960px) {
  #top-safe .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 24px 0;
  }
}
#top-safe .content .image {
  width: min(100%, 454px);
}
@media screen and (max-width: 960px) {
  #top-safe .content .image {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
#top-safe .content .image img {
  width: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  #top-safe .content .image img {
    width: auto;
    max-width: 100%;
  }
}
#top-safe .content .description {
  width: calc(100% - (6.5% + 454px));
}
@media screen and (max-width: 960px) {
  #top-safe .content .description {
    width: 100%;
  }
}
#top-safe .contact-button {
  margin: 22px auto 0 0;
}

#top-charm {
  padding: 0 0 156px;
  background-color: #fef5ec;
}
@media screen and (max-width: 960px) {
  #top-charm {
    padding: 30px 0 108px;
  }
}
#top-charm .top-circle {
  top: -96px;
}
@media screen and (max-width: 960px) {
  #top-charm .top-circle {
    top: -30px;
  }
}
#top-charm h2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  padding: 30px 0 0 105px;
}
@media screen and (max-width: 960px) {
  #top-charm h2 {
    padding: 48px 0 0 0;
  }
}
#top-charm h2 i {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: min(100%, 234px);
}
#top-charm h2 i img {
  width: 100%;
}
#top-charm h2 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 24px 0 0;
  min-height: 122px;
  font-size: 30px;
  font-weight: 700;
  background-image: url("../img/charm-title-decoration.png");
  background-repeat: no-repeat no-repeat;
  background-position: top 0 right 0;
  background-size: 122px 122px;
}
@media screen and (max-width: 960px) {
  #top-charm h2 span {
    padding: 0 20px 0 0;
    min-height: 100px;
    font-size: 24px;
    background-size: 100px 100px;
  }
}
#top-charm h2 em {
  display: inline-block;
  margin: 0 0 0 22px;
  font-size: 40px;
}
@media screen and (max-width: 960px) {
  #top-charm h2 em {
    margin: 0 0 0 18px;
    font-size: 32px;
  }
}
#top-charm .content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5.1% 1fr 5.1% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 5.1%;
  margin: 40px 0 0;
}
@media screen and (max-width: 960px) {
  #top-charm .content {
    margin: 20px 0 0;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 30px 0;
  }
}
#top-charm .content li {
  position: relative;
  padding: 43px 0 0;
  counter-increment: number;
}
#top-charm .content li::before {
  content: counter(number, decimal-leading-zero);
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 191px;
  height: 191px;
  color: #fff;
  padding: 15px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
  background-color: #ffa426;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
#top-charm .content li .in {
  position: relative;
  padding: 30px;
  height: 100%;
  border-radius: 20px;
  background-color: #fff;
  z-index: 2;
}
#top-charm .content li h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 4.8em;
  color: #8a6740;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #top-charm .content li h3 {
    display: block;
    min-height: auto;
  }
}
#top-charm .content li img {
  display: block;
  margin: 20px 0;
  border-radius: 20px;
}
@media screen and (max-width: 960px) {
  #top-charm .content li img {
    margin: 20px auto;
  }
}

#top-lineup {
  padding: 23px 0 162px;
}
@media screen and (max-width: 960px) {
  #top-lineup {
    padding: 5px 0 93px;
  }
}
#top-lineup .top-circle {
  top: -96px;
}
@media screen and (max-width: 960px) {
  #top-lineup .top-circle {
    top: -48px;
  }
}
#top-lineup h2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 83px 0 104px;
  margin: 0 auto 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #top-lineup h2 {
    padding: 66px 0 0;
    font-size: 24px;
    line-height: 1.34;
  }
}
#top-lineup h2::before,
#top-lineup h2::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#top-lineup h2::before {
  top: 50%;
  left: 0;
  width: 74px;
  height: 73px;
  background-image: url("../img/lineup-title-icon-01.png");
}
@media screen and (max-width: 960px) {
  #top-lineup h2::before {
    top: 0;
    left: 50%;
    width: 89px;
    height: 62px;
    background-image: url("../img/sp/lineup-title-icon.png");
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
#top-lineup h2::after {
  top: 50%;
  right: 0;
  width: 56px;
  height: 72px;
  background-image: url("../img/lineup-title-icon-02.png");
}
@media screen and (max-width: 960px) {
  #top-lineup h2::after {
    content: none;
  }
}
#top-lineup h2 em {
  color: #ffa426;
}
#top-lineup .lead {
  width: min(100%, 580px);
  margin: 0 auto;
  text-align: center;
}
#top-lineup .selector {
  margin: 50px auto 40px;
}
@media screen and (max-width: 960px) {
  #top-lineup .selector {
    margin: 30px auto;
  }
}
#top-lineup .selector h3 {
  margin: 0 0 30px;
  color: #8a6740;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #top-lineup .selector h3 {
    margin: 0 0 20px;
  }
}

/* 20260423 */
#top-lineup .selector ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}
/* PCのみ: 3列レイアウト */
@media screen and (min-width: 961px) {
  #top-lineup .selector ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  #top-lineup .selector ul li {
    width: 100%;
  }
  #top-lineup .selector ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center; /* 左寄せがよければ消す */
  }
}
/* 20260423 */

@media screen and (max-width: 960px) {
  #top-lineup .selector ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 960px) {
  #top-lineup .selector ul li {
    width: 100%;
  }
}
#top-lineup .selector ul li a {
  display: inline-block;
  position: relative;
  padding: 23px 54px 23px 18px;
  color: #8a6740;
  font-weight: 700;
  line-height: 1.3;
  border: 2px solid #ffa426;
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  #top-lineup .selector ul li a {
    display: block;
    text-align: center;
  }
}
#top-lineup .selector ul li a i {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background-color: #ffa426;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#top-lineup .selector ul li a i::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% + 1px);
  left: 50%;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  #top-lineup .selector ul li a i::before {
    top: calc(50% + 1px);
  }
}
#top-lineup .content {
  padding: 40px;
  border-radius: 10px;
  background-color: #fef5ec;
}
@media screen and (max-width: 960px) {
  #top-lineup .content {
    padding: 22px 18px;
  }
}
#top-lineup .lesson-list > li:not(:last-of-type) {
  margin: 0 0 30px;
}
#top-lineup .lesson-list .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 6px 19px 8px 13px;
  background-color: #8a6740;
}
@media screen and (max-width: 960px) {
  #top-lineup .lesson-list .title {
    padding: 8px 13px;
  }
}
#top-lineup .lesson-list h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  min-height: 29px;
  padding: 0 0 0 29px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.34;
}
@media screen and (max-width: 960px) {
  #top-lineup .lesson-list h4 {
    padding: 0 0 0 33px;
  }
}
#top-lineup .lesson-list h4::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 21px;
  height: 25px;
  background-image: url("../img/lineup-icon-flag.png");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
}
#top-lineup .lesson-list .summary {
  margin: 20px 0 32px;
}
@media screen and (max-width: 960px) {
  #top-lineup .lesson-list .summary {
    margin: 12px 0 22px;
  }
}
#top-lineup .lesson-list .sub-content {
  padding: 0 4%;
}
@media screen and (max-width: 960px) {
  #top-lineup .lesson-list .sub-content {
    padding: 0;
  }
}
#top-lineup .lesson-list .sub-content li:not(:last-of-type) {
  margin: 0 0 40px;
}
@media screen and (max-width: 960px) {
  #top-lineup .lesson-list .sub-content li:not(:last-of-type) {
    margin: 0 0 30px;
  }
}
#top-lineup .lesson-list .sub-content .in {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
  margin: 0 0 20px;
}
@media screen and (max-width: 960px) {
  #top-lineup .lesson-list .sub-content .in {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px 0;
    margin: 0 0 10px;
  }
}
#top-lineup .lesson-list .image {
  width: min(100%, 250px);
}
@media screen and (max-width: 960px) {
  #top-lineup .lesson-list .image {
    width: min(100%, 310px);
    margin: 0 auto;
  }
}
#top-lineup .lesson-list .image img {
  width: 100%;
  border-radius: 20px;
  height: auto; /*追加*/
}
#top-lineup .lesson-list .description {
  width: calc(100% - 280px);
  padding: 4px 0 0;
}
@media screen and (max-width: 960px) {
  #top-lineup .lesson-list .description {
    width: 100%;
  }
}
#top-lineup .lesson-list .description h5 {
  margin: 0 0 8px;
  color: #8a6740;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}
#top-lineup .lesson-list .button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
#top-lineup .lesson-list .button.-white {
  padding: 0 25px 3px 0;
  margin: 0 0 0 29px;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 960px) {
  #top-lineup .lesson-list .button.-white {
    margin: 0 0 0 33px;
  }
}
#top-lineup .lesson-list .button.-white span {
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}
#top-lineup .lesson-list .button.-white i {
  top: calc(50% - 1px);
  width: 19px;
  height: 19px;
  background-color: #fff;
}
#top-lineup .lesson-list .button.-white i::before {
  left: calc(50% + 1px);
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #8a6740;
}
#top-lineup .lesson-list .button.-orange {
  padding: 0 32px 4px 0;
  margin: 0 0 0 auto;
  border-bottom: 1px solid #ffa426;
}
#top-lineup .lesson-list .button.-orange span {
  color: #ffa426;
  line-height: 1.3;
}
#top-lineup .lesson-list .button.-orange i {
  width: 22px;
  height: 22px;
  background-color: #ffa426;
}
#top-lineup .lesson-list .button.-orange i::before {
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #fff;
}
#top-lineup .lesson-list .button i {
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
#top-lineup .lesson-list .button i::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(50% + 1px);
  border-style: solid;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#top-lesson {
  padding: 30px 0 200px;
  background-color: #fef5ec;
}
@media screen and (max-width: 960px) {
  #top-lesson {
    padding: 20px 0 113px;
  }
}
#top-lesson .top-circle {
  top: -81px;
}
@media screen and (max-width: 960px) {
  #top-lesson .top-circle {
    top: -48px;
  }
}

#lesson-movie .inner {
  max-width: 875px;
}
#lesson-movie h2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 98px 0 0;
  margin: 0 auto 40px;
  text-align: center;
  background-image: url("../img/lesson-movie-title-icon-person.png");
  background-repeat: no-repeat no-repeat;
  background-position: top 0 left 50%;
  background-size: 86px 79px;
}
@media screen and (max-width: 960px) {
  #lesson-movie h2 {
    padding: 73px 0 0;
    margin: 0 auto 30px;
    background-size: 67px 62px;
  }
}
#lesson-movie h2 span {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.34;
}
@media screen and (max-width: 960px) {
  #lesson-movie h2 span {
    font-size: 24px;
  }
}
#lesson-movie h2 span::before,
#lesson-movie h2 span::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 5px;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
}
#lesson-movie h2 span::before {
  left: 0;
  width: 19px;
  height: 31px;
  background-image: url("../img/lesson-movie-title-icon-01.png");
}
#lesson-movie h2 span::after {
  right: 0;
  width: 19px;
  height: 31px;
  background-image: url("../img/lesson-movie-title-icon-02.png");
}

#lesson-step {
  margin: 70px 0 80px;
}
@media screen and (max-width: 960px) {
  #lesson-step {
    margin: 40px 0;
  }
}
#lesson-step h2 {
  margin: 0 0 50px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.34;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #lesson-step h2 {
    margin: 0 0 20px;
    font-size: 24px;
  }
}
#lesson-step p {
  line-height: 1.5;
}
#lesson-step .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 0 6px;
}
@media screen and (max-width: 960px) {
  #lesson-step .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 31px 0;
  }
}
#lesson-step .content li {
  position: relative;
  padding: 23px 0 0 19px;
  counter-increment: number;
}
@media screen and (max-width: 960px) {
  #lesson-step .content li {
    padding: 23px 0 0 17px;
  }
}
#lesson-step .content li:nth-of-type(1),
#lesson-step .content li:nth-of-type(2),
#lesson-step .content li:nth-of-type(3) {
  width: 20.5%;
}
#lesson-step .content li:nth-of-type(1) {
  width: 30.5%;
}
@media screen and (max-width: 960px) {
  #lesson-step .content li:nth-of-type(1),
  #lesson-step .content li:nth-of-type(2),
  #lesson-step .content li:nth-of-type(3) {
    width: 100%;
  }
}
#lesson-step .content li:nth-of-type(3) {
  width: 38.5%;
}
@media screen and (max-width: 960px) {
  #lesson-step .content li:nth-of-type(3) {
    width: 100%;
  }
}
/* #lesson-step .content li:nth-of-type(4) {
  width: 38.5%;
}
@media screen and (max-width: 960px) {
  #lesson-step .content li:nth-of-type(4) {
    width: 100%;
  }
} */
#lesson-step .content li:not(:first-of-type)::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 120px;
  left: 0;
  border-style: solid;
  border-width: 11px 0 11px 14px;
  border-color: transparent transparent transparent #ffa426;
}
@media screen and (max-width: 960px) {
  #lesson-step .content li:not(:first-of-type)::before {
    content: none;
  }
}
@media screen and (max-width: 960px) {
  #lesson-step .content li:not(:last-of-type)::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -39px;
    left: calc(50% + 8px);
    border-style: solid;
    border-width: 24px 20px 0 20px;
    border-color: #ffa426 transparent transparent transparent;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
#lesson-step .content .in {
  padding: 40px 15px 20px;
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  #lesson-step .content .in {
    padding: 35px 20px 20px;
  }
}
#lesson-step .content h3 {
  padding: 0 0 15px;
  margin: 0 0 15px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  border-bottom: 2px solid #ffa426;
}
@media screen and (max-width: 960px) {
  #lesson-step .content h3 {
    padding: 0 0 10px;
    margin: 0 0 10px;
  }
}
#lesson-step .content h3 i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 46px;
  padding: 0 12px 0 26px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  background-color: #ffa426;
}
#lesson-step .content h3 i::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  border-style: solid;
  border-width: 23px 0 23px 14px;
  border-color: transparent transparent transparent #fef5ec;
}
#lesson-step .content h3 i::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  /* right: -14px; */
  right: -13.2px;
  border-style: solid;
  border-width: 23px 0 24px 14px;
  /* border-width: 23px 0 23px 14px; */
  border-color: transparent transparent transparent #ffa426;
}
#lesson-step .content .description small {
  display: block;
  margin: 3px 0 0;
  font-size: 12px;
  line-height: 1.75;
}
#lesson-step .content .description small b {
  text-align: right;
  display: block;
}
#lesson-step .content .description a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #006cff;
  font-size: 12px;
  text-decoration: underline;
}

#lesson-look .inner {
  max-width: 950px;
}
#lesson-look h2 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 96px 0 75px;
  margin: 0 auto 22px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.34;
}
@media screen and (max-width: 960px) {
  #lesson-look h2 {
    padding: 42px 0 0 0;
    font-size: 24px;
  }
}
#lesson-look h2::before,
#lesson-look h2::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
}
#lesson-look h2::before {
  left: 0;
  bottom: 0;
  width: 56px;
  height: 55px;
  background-image: url("../img/lesson-look-title-icon-01.png");
}
@media screen and (max-width: 960px) {
  #lesson-look h2::before {
    top: 0;
    left: 50%;
    bottom: auto;
    width: 71px;
    height: 37px;
    background-image: url("../img/sp/lesson-look-title-icon.png");
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
#lesson-look h2::after {
  right: 0;
  bottom: 0;
  width: 70px;
  height: 58px;
  background-image: url("../img/lesson-look-title-icon-02.png");
}
@media screen and (max-width: 960px) {
  #lesson-look h2::after {
    content: none;
  }
}
#lesson-look p {
  font-weight: 400;
  line-height: 1.5;
}
#lesson-look .content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 5.4% 1fr 5.4% 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 5.4%;
  margin: 50px 0 0;
}
@media screen and (max-width: 960px) {
  #lesson-look .content {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #lesson-look .content {
    gap: 20px 5.8%;
    margin: 30px 0 0;
  }
}
#lesson-look .content li {
  counter-increment: number;
}
#lesson-look .content .image {
  position: relative;
}
#lesson-look .content .image::before {
  content: counter(number, decimal-leading-zero);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 7px;
  left: 7px;
  width: 55px;
  height: 55px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  border-radius: 50%;
  background-color: #ffa426;
}
@media screen and (max-width: 768px) {
  #lesson-look .content .image::before {
    top: 5px;
    left: 5px;
    width: 33px;
    height: 33px;
    font-size: 16px;
  }
}
#lesson-look .content .image img {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  #lesson-look .content .image img {
    border-radius: 10px;
  }
}
#lesson-look .content .description {
  margin: 10px 0 0;
}
#lesson-look .content .description h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.2;
}
#lesson-voice {
  margin: 70px 0 0;
}
@media screen and (max-width: 960px) {
  #lesson-voice {
    margin: 60px 0 0;
  }
}
#lesson-voice h2 {
  margin: 0 0 40px;
}
@media screen and (max-width: 960px) {
  #lesson-voice h2 {
    margin: 0 0 20px;
  }
}
#lesson-voice h2 i,
#lesson-voice h2 span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
#lesson-voice h2 i {
  position: relative;
  padding: 0 46px;
}
@media screen and (max-width: 960px) {
  #lesson-voice h2 i {
    padding: 0 30px;
  }
}
#lesson-voice h2 i::before,
#lesson-voice h2 i::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 23px;
  height: 40px;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  #lesson-voice h2 i::before,
  #lesson-voice h2 i::after {
    width: 21px;
    height: 33px;
  }
}
#lesson-voice h2 i::before {
  left: 0;
  background-image: url("../img/lesson-voice-title-icon-01.png");
}
#lesson-voice h2 i::after {
  right: 0;
  background-image: url("../img/lesson-voice-title-icon-02.png");
}
#lesson-voice h2 i img {
  max-width: 424px;
}
@media screen and (max-width: 960px) {
  #lesson-voice h2 i img {
    max-width: 190px;
  }
}
#lesson-voice h2 span {
  margin: 11px auto 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  #lesson-voice h2 span {
    font-size: 24px;
    margin: 3px auto 0;
  }
}
#lesson-voice .content {
  padding: 15px;
  border-radius: 20px;
  background-color: #fff;
}
#lesson-voice .content-inner {
  padding: 50px 70px 40px 70px;
  border: 2px dashed #ffa426;
  border-radius: 20px;
}
@media screen and (max-width: 1130px) {
  #lesson-voice .content-inner {
    padding: 50px 40px 40px 40px;
  }
}
@media screen and (max-width: 960px) {
  #lesson-voice .content-inner {
    padding: 32px 20px;
  }
}

.voice-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
}
@media screen and (max-width: 960px) {
  .voice-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px 0;
  }
}
.voice-list li:nth-of-type(2) .fukidashi,
.voice-list li:nth-of-type(5) .fukidashi,
.voice-list li:nth-of-type(8) .fukidashi,
.voice-list li:nth-of-type(11) .fukidashi {
  border: 2px solid #ffa426;
}
.voice-list li:nth-of-type(2) .fukidashi::after,
.voice-list li:nth-of-type(5) .fukidashi::after,
.voice-list li:nth-of-type(8) .fukidashi::after,
.voice-list li:nth-of-type(11) .fukidashi::after {
  border-color: #ffa426 transparent transparent transparent;
}
.voice-list h3 {
  padding: 0 0 10px;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid #8a6740;
}
.voice-list h3 b {
  text-align: right;
  display: block;
  font-size: 80%;
}
.voice-list p {
  font-size: 14px;
  line-height: 1.5;
}
.voice-list .fukidashi {
  position: relative;
  padding: 20px 22px;
  margin: 0 0 30px;
  height: calc(100% - 112px);
  border: 2px solid #8a6740;
  border-radius: 20px;
}
.voice-list .fukidashi::before,
.voice-list .fukidashi::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 50%;
  border-style: solid;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.voice-list .fukidashi::before {
  bottom: -31px;
  border-width: 16px 18px 18px 18px;
  border-color: #fff transparent transparent transparent;
  z-index: 2;
}
.voice-list .fukidashi::after {
  bottom: -34px;
  border-width: 16px 18px 18px 18px;
  border-color: #8a6740 transparent transparent transparent;
  z-index: 1;
}
.voice-list .icon {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.voice-list .icon img {
  max-width: 82px;
}

#top-school_list {
  padding: 50px 0;
}
@media screen and (max-width: 960px) {
  #top-school_list {
    padding: 32px 0 50px;
  }
}
#top-school_list .top-circle {
  top: -110px;
}
@media screen and (max-width: 960px) {
  #top-school_list .top-circle {
    top: -40px;
  }
}
#top-school_list h2 {
  margin: 0 0 50px;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #top-school_list h2 {
    font-size: 24px;
    margin: 0 0 20px;
  }
}
#top-school_list h2 em {
  color: #ffa426;
}

#lesson-movie h2 em {
  color: #ffa426;
}
.school_list li:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .school_list li {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .school_list li .photo {
    width: 45%;
    margin: 0;
  }
}
.school_list li .photo {
  margin: 0 0 20px;
}
@media screen and (min-width: 768px) {
  .school_list li .txt_box {
    width: 50%;
    margin-left: auto;
  }
}
.txt_box {
  display: block;
  overflow: hidden;
  position: relative;
}
.school_list li h3 {
  border-bottom: 1px solid #4a340a;
  padding: 0 0 5px;
  margin: 0 0 10px;
  color: #4a340a;
  font-size: 20px;
}
.school_list li table {
  margin: 0 0 10px;
}
.school_list li table th {
  color: #4a340a;
  width: 5em;
}
.school_list li table td {
  padding-bottom: 10px;
}
.school_list .btn {
  background: #bc5137;
  border: 1px solid #bc5137;
  border-radius: 5px;
  max-width: 418px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.school_list .btn {
  width: 90%;
  font-size: 20px;
  margin: 0 auto;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .school_list .btn {
    width: 240px;
    margin: 0;
    line-height: 1.3;
  }
}
.school_list .btn a {
  display: block;
  color: #fff;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .school_list .btn a {
    padding: 10px;
  }
}
.school_list .btn a::after {
  content: "";
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  -webkit-transform: rotate(45deg) translateX(-50%);
  transform: rotate(45deg) translateX(-50%);
  position: absolute;
  top: 50%;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .school_list .btn a::after {
    width: 10px;
    height: 10px;
    right: 15px;
  }
}
/* #top-staff .content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
}
#top-staff .content .item:not(:last-of-type) {
  margin: 0 0 30px;
}
@media screen and (max-width: 960px) {
  #top-staff .content .item:not(:last-of-type) {
    margin: 0 0 40px;
  }
}
#top-staff .content .image {
  width: min(100%, 303px);
  height: auto;
}
@media screen and (max-width: 960px) {
  #top-staff .content .image {
    width: min(100%, 240px);
    margin: 17px auto 0;
  }
}
#top-staff .content .image img {
  border-radius: 20px;
}
#top-staff .content .description {
  width: calc(100% - 333px);
}
@media screen and (max-width: 960px) {
  #top-staff .content .description {
    width: 100%;
  }
}
#top-staff .content .description h3 {
  border-bottom: 3px solid #ffa426;
  text-align: left;
}
#top-staff .content .description h3 span {
  position: relative;
  display: inline-block;
  padding: 0 54px 0 27px;
  height: 60px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 60px;
  background-color: #ffa426;
}
@media screen and (max-width: 960px) {
  #top-staff .content .description h3 span {
    padding: 0 30px 0 27px;
  }
}
#top-staff .content .description h3 span::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  right: -60px;
  border-style: solid;
  border-width: 0 60px 60px 0;
  border-color: transparent transparent #ffa426 #ffa426;
}
#top-staff .content .description p {
  margin: 20px 0 16px;
}
@media screen and (max-width: 960px) {
  #top-staff .content .description p {
    margin: 20px 0 10px;
  }
}
#top-staff .content .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: 5px;
}
@media screen and (max-width: 960px) {
  #top-staff .content .tag {
    gap: 8px;
  }
}
#top-staff .content .tag > li {
  display: inline-block;
  padding: 2px 4px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  background-color: #fef5ec;
} */

.widget-contact {
  width: 100%;
  padding: 70px 0 180px;
  color: #fff;
  background-color: #fef5ec;
}
@media screen and (max-width: 960px) {
  .widget-contact {
    padding: 30px 0 80px;
  }
}
.widget-contact .content {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 49px 0;
  background-image: url("../img/bg-cta.jpg");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  .widget-contact .content {
    padding: 27px 0 30px;
  }
}
.widget-contact .content::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(138, 103, 64, 0.7);
  z-index: 1;
}
.widget-contact .content .in {
  position: relative;
  z-index: 2;
}
.widget-contact .copy {
  display: block;
  font-size: 20px;
  text-align: center;
  line-height: 1.2;
}
.widget-contact strong {
  display: block;
  margin: 40px auto 26px; /*10px→40px*/
  font-size: 40px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .widget-contact strong {
    margin: 10px auto 20px;
    font-size: 30px;
  }
}
.widget-contact .contact-button {
  padding: 18px 85px 18px 47px;
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  .widget-contact .contact-button {
    padding: 14px 66px 14px 30px;
    font-size: 16px;
  }
}
.widget-contact .contact-button i {
  right: 40px;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 960px) {
  .widget-contact .contact-button i {
    width: 28px;
    height: 28px;
    right: 28px;
  }
}
.widget-contact .contact-button i::before {
  left: calc(50% + 1px);
  border-width: 7px 0 7px 10px;
}
@media screen and (max-width: 960px) {
  .widget-contact .contact-button i::before {
    border-width: 6px 0 6px 8px;
  }
}
#top-bnr-speace {
  width: 100%;
  padding: 70px 0 0;
  color: #fff;
  background-color: #fef5ec;
  position: relative;
}
#top-bnr-speace li {
  margin-bottom: 30px;
  width: 100%;
}
#top-bnr-speace li:last-child {
  margin-bottom: 0;
}
.bnr-speace-back::after {
  content: "";
  display: block;
  background-image: url(../img/bg-circle.png);
  position: absolute;
  left: 0;
  top: -68px;
  width: 100%;
  height: 192px;
  background-repeat: repeat-x;
  background-position: center center;
}
.bnr-speace-back {
  width: 100%;
  height: 60%;
  position: absolute;
  bottom: 0;
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .bnr-speace-back::after {
    background-image: url(../img/sp/bg-circle.png);
  }
  .bnr-speace-back {
    height: 66%;
  }
}

/* faq */
/* #top-faq {
  padding: 0 0 70px;
}
#top-faq .top-circle {
  top: -110px;
}
@media screen and (max-width: 960px) {
  #top-faq .top-circle {
    top: -48px;
  }
}
#top-faq h2 {
  margin: 0 0 20px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
#top-faq .content {
  width: min(100%, 890px);
  margin: 0 auto;
}
#top-faq .content .item:not(:last-of-type) {
  margin: 0 0 40px;
}
#top-faq .content dt,
#top-faq .content dd {
  position: relative;
  padding: 10px 0 0 60px;
  min-height: 45px;
  font-size: 20px;
  line-height: 1.2;
}
#top-faq .content dt::before,
#top-faq .content dd::before {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
}
#top-faq .content dt {
  margin: 0 0 10px;
}
#top-faq .content dt::before {
  content: "Q";
  background-color: #ffa426;
}
#top-faq .content dd::before {
  content: "A";
  background-color: #ff7126;
} */
/* faq_end */

.video {
  width: 100%;
  text-align: center;
  position: relative;
  padding-top: 21px;
}
.video iframe {
  width: 100%;
}

@media screen and (min-width: 960px) {
  .video iframe {
    height: 500px;
  }
}

@media screen and (max-width: 960px) {
  .video {
    width: 100%;
  }

  .video iframe {
    height: 50vw;
  }
}
.video h3 {
  width: 100%;
  text-align: center;
  border: none;
  margin: 0 auto;
  position: absolute;
  top: 0px;
  z-index: 2;
  font-size: 23px;
  font-weight: bold;
}
.video h3 span {
  background: #de6700;
  border-radius: 50px;
  display: inline-block;
  padding: 11px 20px 13px;
  color: #fff;
  text-align: center;
}
.video .video_wrap {
  padding: 44px 20px 35px;
  border: 5px solid #de6700;
  position: relative;
}
.video .video_wrap p a {
  color: #0066ff;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .video h3 {
    font-size: 15px;
    top: 0;
  }
  .video h3 span {
    padding: 5px 15px;
    line-height: 1.3;
  }
}

/* バッジ */
/* .image-por {
  position: relative;
}
.image-por-wrap {
  position: relative;
  overflow: hidden;
}
.time-badge {
  position: absolute;
  bottom: 0px;
  width: 68px;
  height: 68px;
  background-color: #ffffff;
  border: 4px solid #ce0000;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #232323;
  font-weight: bold;
  font-size: 12px;
  /* transform: translate(0, -8px); 上に10px移動 */
/* } */

.time-badge .lines {
  position: relative;
  width: 1px;
  height: 7px;
  background-color: #2c2c2c;
  /* margin-bottom: 2px; */
}

.time-badge .lines::before,
.time-badge .lines::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 1px;
  background-color: #2c2c2c;
  bottom: 0;
}

.time-badge .lines::before {
  left: 3px;
  transform: rotate(-65deg);
}

.time-badge .lines::after {
  right: 3px;
  transform: rotate(65deg);
}

.time-badge .time-badge-label {
  font-size: 12px;
  color: #2c2c2c;
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  margin-top: 2px;
}

.time-badge .minutes {
  margin-top: -6px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  color: #ce0000;
  font-family: "Zen Maru Gothic", sans-serif;
  transform: scaleY(0.85);
  -webkit-text-stroke: 0.4px #ce0000;
  text-stroke: 0.4px #ce0000;
  display: flex;
  align-items: center;
}

.time-badge .minutes-unit {
  font-size: 12px;
  font-weight: 800;
  color: #2c2c2c;
  font-family: "Zen Maru Gothic", sans-serif;
  transform: scaleY(1);
  -webkit-text-stroke: initial;
  text-stroke: initial;
  margin-top: 6px;
}

@media screen and (max-width: 700px) {
  #header .contact-button {
    /* display: none; */
    padding: 8px 26px 10px 16px;
    font-size: 11px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 400px) {
  #header .contact-button {
    /* display: none; */
    padding: 8px 22px 10px 10px;
    font-size: 10px;
    flex-shrink: 0;
  }
}
@media screen and (max-width: 700px) {
  .contact-button.-small i {
    width: 16px;
    height: 16px;
    right: 8px;
  }
}
@media screen and (max-width: 400px) {
  .contact-button.-small i {
    width: 14px;
    height: 14px;
    right: 5px;
  }
}
@media screen and (max-width: 400px) {
  #header .inner {
    padding-inline: 10px;
  }
}
