@charset "UTF-8";
/* ---------------------------------------------
アニメーション
-----------------------------------------------*/
.fadeRightTrigger,
.fadeLeftTrigger,
.fadeUpTrigger, .fadeInTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  backface-visibility: hidden;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
  backface-visibility: hidden;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.delay02 {
  animation-delay: 0.2s;
}

.delay04 {
  animation-delay: 0.4s;
}

.delay06 {
  animation-delay: 0.6s;
}

.delay08 {
  animation-delay: 0.8s;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.4em;
  line-height: 1.6;
  color: #501700;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    min-width: auto;
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6em;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  /*image-rendering: -webkit-optimize-contrast;*/
}
.safari img {
  image-rendering: inherit;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 768px) {
  .over:hover {
    opacity: 0.6;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  display: block;
  color: #501700;
  transition: 0.3s;
  will-change: transform, opacity;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a:focus {
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    text-decoration: none;
    /*opacity: $opacity;*/
  }
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 420px) {
  a[href*="tel:"] {
    pointer-events: all;
  }
}

/* input
--------------------------------------------------*/
button {
  color: #501700;
  transition: 0.3s;
  will-change: transform;
  letter-spacing: 0.05em;
}
button:focus {
  text-decoration: none;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrapper {
    width: 90%;
  }
}

.pc {
  display: block;
}

.sp, .ssp {
  display: none;
}

.pc-tb {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc, .ssp {
    display: none;
  }
  .sp, .pc-tb {
    display: block;
  }
}
@media screen and (max-width: 420px) {
  .sp, .ssp {
    display: block;
  }
  .pc-tb, .pc {
    display: none;
  }
}
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.ttl {
  text-align: center;
  font: 700 2.8rem/1.5 "Noto Sans JP", sans-serif;
  font-size: min(7vw, 28px);
}
.ttl span {
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  line-height: 1.1;
  color: #E75F01;
  display: block;
}
@media screen and (min-width: 768px) {
  .ttl {
    font-size: 3.6rem;
  }
}

.link_btn {
  width: 100%;
  background: #06C755;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  filter: drop-shadow(0 6px 0 rgb(31, 152, 81));
  gap: 2rem;
  padding: 2.2rem;
  border-radius: 5rem;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .link_btn {
    max-width: 700px;
    margin: 5.6rem auto 0;
  }
}
.link_btn .circle {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  filter: drop-shadow(0px 2px 3px #1E8448);
}
.link_btn p {
  font: 700 1.8rem/1 "Noto Sans JP", sans-serif;
  filter: drop-shadow(0px 2px 3px #1E8448);
  color: #fff;
  font-size: min(4.4vw, 18px);
}
.link_btn p span {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .link_btn p {
    font-size: 2.4rem;
  }
}
.link_btn .arrow {
  filter: drop-shadow(0px 2px 3px #1E8448);
  width: 8px;
}
.link_btn .arrow img {
  height: 1.7rem;
  object-fit: contain;
  vertical-align: sub;
}
@media screen and (min-width: 768px) {
  .link_btn .arrow img {
    height: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .link_btn:hover {
    transform: translateY(4px);
    filter: drop-shadow(0 2px 0 rgb(31, 152, 81));
  }
}

video {
  width: 100%;
  height: auto;
}

footer {
  margin: 6.4rem 0 5.4rem;
}
@media screen and (min-width: 768px) {
  footer {
    margin-top: 8rem;
  }
}
@media screen and (min-width: 768px) {
  footer {
    margin-bottom: 0;
  }
}
footer .img {
  width: 200px;
  margin: 0 auto;
}
footer .img:hover {
  opacity: 0.7;
}
footer p {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 1.2rem;
}
footer .border {
  width: 100%;
  height: 8px;
  background: linear-gradient(106deg, #FFD53E -5.73%, #ED7900 93.59%);
  margin-top: 4rem;
}

.l-nav {
  display: none;
}
@media screen and (max-width: 420px) {
  .is-fixed .l-nav {
    opacity: 1;
    pointer-events: all;
  }
  .l-nav-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: spvw(100);
  }
  .l-nav__button {
    width: calc(100% - 3.5em);
    height: spvw(100);
    margin: 0 auto;
  }
  .l-nav__button a {
    position: relative;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    background: #a79280;
    color: #ffffff;
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}

.header {
  padding: 1rem 1.1rem;
  background-color: #fff;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.header .logo {
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    height: 57px;
    box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.09);
  }
  .header .logo {
    max-width: 260px;
    margin-left: 2%;
  }
}

.line_linkbtn {
  position: fixed;
  z-index: 999;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #06C755;
  padding: 9px 3%;
}
@media screen and (min-width: 768px) {
  .line_linkbtn {
    width: 310px;
    background: transparent;
    top: 0.8rem;
    bottom: auto;
    left: auto;
    right: 2rem;
    padding: 0;
  }
}
.line_linkbtn p {
  background: #fff;
  color: #06C755;
  text-align: center;
  padding: 1rem 2rem;
  font: 700 1.6rem/1 "Noto Sans JP", sans-serif;
  border-radius: 2rem;
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .line_linkbtn p {
    background: #06C755;
    border-radius: 4rem;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0px 3px 0px 0px #009E40;
  }
  .line_linkbtn p:hover {
    transform: translateY(2px);
    box-shadow: 0px 0px 0px 0px #009E40;
  }
}
.line_linkbtn p::after {
  content: "";
  width: 7px;
  height: 1.2rem;
  background: url(../images/green-arrow.png) 0/contain no-repeat;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2rem;
}
@media screen and (min-width: 768px) {
  .line_linkbtn p::after {
    background-image: url(../images/white-arrow.png);
  }
}

/* スライダーコンテナ */
.slider-container {
  width: 100%;
  height: 70vh;
  height: 70%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .slider-container {
    height: 70vh;
  }
}
/* スマホ用スライダー (SP & PC共通) */
.sp-slider {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media screen and (min-width: 1600px) {
  .slide img {
    vertical-align: bottom;
  }
}

.slide.center img {
  object-position: center;
  object-position: bottom;
}

/* メインコピーのスタイル */
.main-copy {
  position: absolute;
  z-index: 100;
  width: 92%;
  text-align: center;
  margin: 0;
  padding: 0;
  left: 50%;
  transform: translateX(-50%);
  top: 8%; /* デフォルト位置 */
  opacity: 1;
  /* 透明度変化を高速化して一瞬表示を防止 */
  transition: opacity 0.3s ease-out, top 0.8s ease-in-out, bottom 0.8s ease-in-out;
  will-change: opacity, top, bottom; /* パフォーマンス最適化 */
}
@media screen and (min-width: 768px) {
  .main-copy {
    max-width: 581px;
    left: 50%;
    transform: translateX(-50%);
    top: 14%;
  }
}
.main-copy img {
  max-width: 95%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .main-copy img {
    width: 100%;
  }
}

/* スライド3以降が表示されたときのコピー位置 */
.copy-bottom {
  top: auto;
  bottom: 45%;
}
@media screen and (max-width: 390px) {
  .copy-bottom {
    bottom: 48%;
  }
}
@media screen and (min-width: 768px) {
  .copy-bottom {
    bottom: 30%;
  }
}
@media screen and (min-width: 1600px) {
  .copy-bottom {
    bottom: 32%;
  }
}

.kv {
  position: relative;
  height: 88dvh;
  height: 93dvh;
}
@media screen and (max-width: 390px) {
  .kv {
    height: 92dvh;
  }
}
.kv .place {
  background: #FFD53E;
  padding: 6px 2rem;
  text-align: center;
  background: linear-gradient(90deg, #FFD53E 0%, #FFD53E 50%, #EC7900 50%, #EC7900 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
@media screen and (min-width: 768px) {
  .kv .place {
    padding: 0 1rem;
  }
}
.kv .place img {
  width: 30vw;
  max-width: 117px;
}
@media screen and (min-width: 768px) {
  .kv .place img {
    max-width: 160px;
  }
}
@media screen and (max-width: 390px) {
  .kv .place {
    padding: 0.6rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .kv .place {
    width: 460px;
    position: absolute;
    z-index: 20;
    border-radius: 15px;
    padding: 8px 2rem;
    left: 50%;
    transform: translateX(-50%);
    top: 70px;
  }
}
.kv .copy_textbox {
  position: absolute;
  bottom: 48px;
  width: 100%;
  left: 0;
  z-index: 10;
}
.kv .open_call {
  background: linear-gradient(180deg, #EC7900 21.71%, #E34800 132.82%);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5vw;
}
.kv .open_call span {
  flex-basis: 20%;
  border: 3px solid #EC7900;
  background: #FFF;
  padding: 5px 2vw;
}
.kv .open_call h3 {
  color: #fff;
  text-shadow: 0px 2px 3px rgba(69, 20, 0, 0.54);
  font: 700 4.6vw/1 "Noto Sans JP", sans-serif;
}
.kv .open_call h3 strong {
  font-weight: 700;
}
.kv .fv_info {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .kv .fv_info {
    flex-direction: row;
    background: #FFBE4A;
    align-items: center;
    justify-content: center;
    padding: 1.8rem 2rem;
  }
}
.kv .call_02 {
  background: linear-gradient(180deg, #EC7900 21.71%, #E34800 132.82%);
  padding: 1.1rem 2rem;
}
@media screen and (min-width: 768px) {
  .kv .call_02 {
    border-radius: 16px 0 0 16px;
    height: 98px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0px 2px 5px 0px rgba(74, 17, 0, 0.44);
  }
}
.kv .call_02 p {
  color: #fff;
  text-shadow: 0px 2px 3px rgba(69, 20, 0, 0.54);
  font: 800 2.2rem/1 "Noto Sans JP", sans-serif;
  text-align: center;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 768px) {
  .kv .call_02 p {
    font-size: 3.8rem;
  }
}
.kv .info_contents {
  background: linear-gradient(0deg, #FFB229 50%, #FFD53E 50%);
  padding: 4px 0 8px;
}
.kv .info_contents .info_head {
  max-width: 242px;
  margin: 0 auto;
}
.kv .info_contents .info_head img {
  height: 26px;
  object-fit: contain;
}
@media screen and (min-width: 768px) {
  .kv .info_contents {
    border-radius: 0 16px 16px 0;
    height: 6.8vw;
    min-height: 70px;
    max-height: 94px;
    background: #fff;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    box-shadow: 0px 2px 5px 0px rgba(74, 17, 0, 0.44);
  }
}
.kv .info_contents .info_txt {
  background: #fff;
  box-shadow: 0px 2px 5px 0px rgba(74, 17, 0, 0.44);
  border-radius: 1rem;
  padding: 0.2rem 1rem;
  width: 90vw;
  margin: 0 auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.7rem;
}
.kv .info_contents .info_txt .box {
  font: 700 1.6rem/1.2 "Noto Sans JP", sans-serif;
  text-align: center;
}
.kv .info_contents .info_txt .box span {
  color: #EC7900;
  margin-left: 5px;
}
.kv .info_contents .info_txt .box span.en {
  font-size: 1.8rem;
  line-height: 0.9;
}
@media screen and (max-width: 320px) {
  .kv .info_contents .info_txt .box {
    font-size: 1.4rem;
  }
  .kv .info_contents .info_txt .box span.en {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .kv .info_contents .info_txt {
    background: transparent;
    box-shadow: none;
  }
  .kv .info_contents .info_txt .box {
    font-size: min(1.666vw, 24px);
  }
  .kv .info_contents .info_txt .box span.en {
    font-size: min(2.01vw, 29px);
  }
}
@media screen and (min-width: 768px) {
  .kv .briefing {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    border-bottom: 3px solid;
    border-top: 3px solid;
    border-image: linear-gradient(to right, #EC7901, #E65B01) 1;
    padding: 0.8rem;
  }
}
.kv .briefing .briefing_call {
  position: relative;
  padding: 2px 20px;
  border: 1px solid #ec7900;
  border-radius: 8px;
  background-color: #ffffff;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #501700;
  width: fit-content;
  margin: 5px auto 0;
}
@media screen and (max-width: 390px) {
  .kv .briefing .briefing_call {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .kv .briefing .briefing_call {
    width: fit-content;
    margin: 5px 0;
    font-size: 18px;
  }
}
.kv .briefing .briefing_call strong {
  color: #EC7900;
}
@media screen and (min-width: 768px) {
  .kv .briefing .briefing_call strong {
    font-size: 2rem;
  }
}
.kv .briefing .briefing_call::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 9px 8.5px 0 8.5px;
  border-color: #ec7900 transparent transparent;
  translate: -50% 100%;
}
.kv .briefing .briefing_call::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 49.5%;
  border-style: solid;
  border-width: 7.5px 7.1px 0 7.1px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
@media screen and (min-width: 768px) {
  .kv .briefing .briefing_call::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    border-style: solid;
    border-width: 10.5px 0 10.5px 12px;
    border-color: transparent transparent transparent #ec7900;
    translate: 100% -50%;
  }
  .kv .briefing .briefing_call::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    border-style: solid;
    border-width: 8px 0 8px 10.7px;
    border-color: transparent transparent transparent #ffffff;
    translate: 100% -50%;
  }
}
.kv .briefing .briefing_date {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 1.2rem 2rem 0;
  border-bottom: #F7C999 2px solid;
  gap: 5px;
  padding-bottom: 2px;
  font: 600 4.8vw/1.2 "Noto Sans JP", sans-serif;
}
.kv .briefing .briefing_date img {
  width: 53.5vw;
}
@media screen and (min-width: 768px) {
  .kv .briefing .briefing_date img {
    width: 21.59vw;
  }
}
@media screen and (min-width: 768px) {
  .kv .briefing .briefing_date {
    align-items: flex-end;
    font-size: 2.01vw;
    border: none;
    margin-top: 0;
    line-height: 1.4;
  }
}

/* PC用の左右画像 */
.pc-side-images {
  display: none; /* スマホでは非表示 */
}

/* PC表示のスタイル */
@media (min-width: 768px) {
  .sp-slider {
    width: 55%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    max-width: 876px;
  }
  .kv {
    height: auto;
  }
  .kv .slider-container {
    height: 650px;
  }
  .pc-side-images {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .left-image,
  .right-image {
    position: absolute;
    top: 0;
    height: 100%;
    width: 27.5%;
    overflow: hidden;
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .left-image,
  .right-image {
    width: 22.5%;
  }
}
@media (min-width: 768px) {
  .left-image {
    left: 0;
  }
  .right-image {
    right: 0;
  }
  .left-image img,
  .right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .kv .copy_textbox {
    position: static;
  }
  .kv .open_call {
    background: #fff;
    justify-content: center;
    gap: 5px;
    padding: 1rem 2rem;
    border-bottom: 4px solid;
    border-top: 4px solid;
    border-image: linear-gradient(to right, #EC7901, #E65B01) 1;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  .kv .open_call {
    border-bottom: 3px solid;
    border-top: 3px solid;
  }
}
@media (min-width: 768px) {
  .kv .open_call span {
    border: none;
    padding: 0;
    width: 30%;
    max-width: 180px;
  }
  .kv .open_call h3 {
    color: #501700;
    text-shadow: none;
    font-size: min(2.222vw, 34px);
  }
  .kv .open_call h3 strong {
    color: #E34800;
  }
  .kv .fv_info {
    padding: 0.7vw;
  }
  .kv .info_contents {
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 0;
    max-width: 850px;
    margin: 0 auto;
  }
  .kv .info_contents .info_head {
    max-width: none;
    font-size: min(2.43vw, 35px);
    font-weight: 600;
    flex-basis: 50%;
    background: linear-gradient(180deg, #EC7900 21.71%, #E34800 132.82%);
    height: 100%;
    color: #fff;
    text-shadow: 0px 2.6px 3.901px rgba(69, 20, 0, 0.54);
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    flex-direction: column;
    border-radius: 12px 0 0 12px;
  }
  .kv .info_contents .info_head.sp {
    display: none;
  }
  .kv .info_contents .info_txt {
    flex-basis: 50%;
  }
}
.sp_person_box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
}

.sp_p-l, .sp_p-r {
  width: 24vw;
  max-width: 170px;
  z-index: 1;
}
@media screen and (max-width: 390px) {
  .sp_p-l, .sp_p-r {
    width: 8rem;
  }
}
.sp_p-l img, .sp_p-r img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .sp_p-l, .sp_p-r {
    display: none;
  }
}

.sp_p-r {
  left: auto;
  right: 0;
}

/* 1600px以上の場合の外側の背景色 */
@media (min-width: 1600px) {
  main {
    margin: 0 auto;
  }
  .slider-container::before,
  .slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    height: 100%;
    width: calc((100% - 1600px) / 2);
    background-color: #FFF9E2;
    z-index: 0;
  }
  .slider-container::before {
    left: 0;
  }
  .slider-container::after {
    right: 0;
  }
  /* 1600pxを超えた場合のコンテンツをセンタリング */
  .pc-side-images {
    max-width: 1600px;
    left: 50%;
    transform: translateX(-50%);
  }
}
/*=============================================
/     お知らせ
============================================*/
.news {
  padding: 6.4rem 0 0;
}
@media screen and (min-width: 768px) {
  .news {
    padding: 8rem 0 0;
  }
}
.news .wrapper {
  width: 90%;
}
.news .news_contents {
  background: #fff;
  border: #F2A727 2px solid;
  border-radius: 1rem;
  padding: 1.4rem 1.4rem 1.6rem;
  margin-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .news .news_contents {
    max-width: 800px;
    padding: 2.4rem 3rem 2.4rem;
    margin: 3.2rem auto 0;
  }
}
.news .news_item {
  padding-bottom: 1rem;
  margin-top: 1.2rem;
}
.news .news_item .date {
  font: 600 1.3rem/1.4 "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .news .news_item .date {
    flex-basis: 16%;
    font-size: 1.6rem;
  }
}
.news .news_item .txt {
  margin-top: 0.5rem;
}
.news .news_item .txt a {
  margin-top: 5px;
  font-size: 1.4rem;
  color: #EC7900;
}
.news .news_item .txt a strong {
  color: #501700;
  margin-right: 5px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .news .news_item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 3.2rem;
  }
  .news .news_item .txt {
    flex-basis: 80%;
    margin-top: 0;
  }
  .news .news_item .txt a {
    font-size: 1.6rem;
  }
}

/*=============================================
/     あなたも一緒に 説明会・面接
============================================*/
.ttl.under_bar {
  position: relative;
}
.ttl.under_bar::after {
  content: "";
  width: 26px;
  height: 4px;
  border-radius: 20px;
  background: #EC7900;
  position: absolute;
  bottom: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
}

.ttl .jp {
  font: 700 1.6rem/1.1 "Noto Sans JP", sans-serif;
  font-size: min(4vw, 16px);
  color: #501700;
  margin: 9px 0 6px;
}
.ttl .jp i {
  font: normal 500 1.4rem/1.1 "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .ttl .jp {
    font-size: 2rem;
  }
  .ttl .jp i {
    font-size: 1.8rem;
  }
}

.section_lead {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 3.6rem;
}
@media screen and (min-width: 768px) {
  .section_lead {
    margin-top: 5.6rem;
  }
}
.section_lead strong {
  font-weight: 700;
}

.work.info_session {
  background: #fff;
}
.work.info_session .wrapper {
  width: 95%;
}
.work.info_session .ttl {
  margin-top: 1.4rem;
}
@media screen and (min-width: 768px) {
  .work.info_session .ttl.accessttl {
    margin-top: 6.4rem;
  }
}
.work.info_session .date_table {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .work.info_session .date_table {
    max-width: 500px;
    margin: 3.2rem auto 0;
  }
}
.work.info_session .date_table .date_cp {
  color: #EC7900;
  font: 600 1.8rem/1.2 "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .work.info_session .date_table .date_cp {
    font-size: 2.4rem;
  }
}
.work.info_session .date_table .date_ttl {
  background: #EC7900;
  color: #fff;
  font: 600 2rem/1.2 "Noto Sans JP", sans-serif;
  text-align: center;
  padding: 0.6rem 2rem;
  margin-top: 1.6rem;
  border: 1px solid #D3C5BF;
  border-bottom: none;
}
.work.info_session .date_table dl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  border: 1px solid #D3C5BF;
  border-top: none;
}
.work.info_session .date_table dl dt {
  background: #FFF9E2;
  font: 600 1.5rem/1.2 "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  padding: 1.2rem 1rem 1.1rem;
}
.work.info_session .date_table dl dt strong {
  font: 700 2.1rem/1 "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .work.info_session .date_table dl dt {
    padding: 1.4rem 2rem;
    font-size: 1.6rem;
  }
  .work.info_session .date_table dl dt strong {
    font-size: 2.4rem;
  }
}
.work.info_session .date_table dl dd {
  font: 600 1.7rem/1.2 "Noto Sans JP", sans-serif;
  padding: 1rem 0.5rem 1rem 1rem;
}
.work.info_session .date_table dl dd strong {
  font: 700 2.5rem/1 "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .work.info_session .date_table dl dd {
    padding: 1rem 1rem 1rem 2rem;
  }
}
.work.info_session .place {
  margin: 2.4rem 0;
}
.work.info_session .place dl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 1.8rem;
}
.work.info_session .place dl dt {
  color: #EC7900;
  font: 700 1.8rem/1.5 "Noto Sans JP", sans-serif;
}
.work.info_session .place dl dd {
  margin-top: 2px;
  font: 700 1.6rem/1.5 "Noto Sans JP", sans-serif;
}
.work.info_session .place dl dd span {
  font-weight: 500;
}
.work.info_session .ttl {
  line-height: 1.4;
}
.work.info_session .movie_box {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .work.info_session .movie_box {
    max-width: 600px;
    margin: 6.4rem auto 0;
  }
}

/*=============================================
/     あなたも一緒に
============================================*/
.work {
  background: #FFF9E2;
  padding: 6.4rem 0 7.2rem;
}
@media screen and (min-width: 768px) {
  .work .wrapper {
    width: 95%;
    max-width: 1600px;
  }
}
.work .work_ttl {
  background: linear-gradient(175deg, #EC7900 50%, #E65B01 50%);
  padding: 1.5rem 2rem 1.8rem;
}
@media screen and (min-width: 768px) {
  .work .work_ttl {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2.8rem 2rem;
    border-radius: 1rem;
    background: linear-gradient(176deg, #EC7900 50%, #E65B01 50%);
  }
}
.work .work_ttl .mini_ttl {
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  line-height: 1.1;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .work .work_ttl .mini_ttl {
    font-size: 1.6rem;
  }
}
.work .work_ttl .work_inner_ttl {
  background: #fff;
  border-radius: 1rem;
  width: 85%;
  margin: 6px auto 0;
  padding: 9px 2rem 1.5rem;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (min-width: 768px) {
  .work .work_ttl .work_inner_ttl {
    padding: 2rem 3.2rem;
    margin-top: 1.4rem;
  }
}
.work .work_ttl .work_inner_ttl .ttl {
  font: 600 2.4rem/1.2 "Noto Sans JP", sans-serif;
}
.work .work_ttl .work_inner_ttl .ttl strong {
  color: #EC7900;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .work .work_ttl .work_inner_ttl .ttl {
    font-size: 2.8rem;
  }
}
.work .work_triangle {
  max-width: 82px;
  margin: -1px auto 0;
}
.work .work_triangle img {
  vertical-align: top;
}
.work .work_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .work .work_container {
    flex-direction: row;
    gap: 1.8rem;
  }
}
.work .work_box {
  background: #fff;
  padding: 2.4rem 0 0;
  filter: drop-shadow(0px 0px 5px rgba(236, 121, 0, 0.4));
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .work .work_box {
    flex: 1;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
  }
}
.work .work_box .inner_head {
  text-align: center;
  font: 700 2rem/1.2 "Noto Sans JP", sans-serif;
}
.work .work_box .inner_head span {
  margin: 0 8px;
  height: 2rem;
}
.work .work_box .inner_head span svg {
  vertical-align: middle;
}
.work .work_box .img {
  width: 90%;
  margin: 1.8rem auto 0;
}
.work .work_box .img img {
  border-radius: 6px;
}
@media screen and (min-width: 768px) {
  .work .work_box .working_detail_container {
    height: 270px;
  }
}
.work .work_box .working_detail {
  width: 90%;
  margin: 1rem auto;
  border: 2px solid #F8F3F1;
  border-collapse: separate;
  border-radius: 6px;
  border-spacing: 0;
}
.work .work_box .working_detail tr th {
  background: #F8F3F1;
  padding: 5px 1rem;
}
.work .work_box .working_detail dl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 2px solid #F8F3F1;
}
.work .work_box .working_detail dl:last-child {
  border-bottom: none;
}
.work .work_box .working_detail dl dt {
  font-weight: 500;
  flex-basis: 25%;
  padding: 8px 0.5rem 8px 1rem;
  color: #6E4133;
  font-size: 1.3rem;
}
.work .work_box .working_detail dl dd {
  flex-basis: 75%;
  padding: 0.8rem 5px;
  font-size: 1.3rem;
}
.work .work_box .working_detail dl:last-child dt, .work .work_box .working_detail dl:last-child dd {
  border-bottom: none;
}
.work .work_box .txt_01 {
  margin: 2rem auto 0;
  width: 90%;
}
.work .work_box .txt_01 p {
  font-size: 1.6rem;
}
@media screen and (min-width: 1250px) {
  .work .work_box .txt_01 {
    height: 128px;
  }
}
@media screen and (min-width: 768px) {
  .work .work_box .txt_01 {
    flex-grow: 1;
  }
}
.work .work_box .txt_01 .info {
  padding-left: 1rem;
  text-indent: -1.4rem;
  font-size: 1.2rem;
  margin-top: 1rem;
}
.work .work_box .txt_01 .info::before {
  content: "※";
}
.work .work_box h4 {
  background: #EC7900;
  color: #fff;
  width: 68px;
  padding: 3px;
  border-radius: 0 6px 0 0;
  font: 700 1.4rem/20px "Noto Sans JP", sans-serif;
  text-align: center;
  margin-top: 2.4rem;
}
.work .work_box .point {
  background: #FDEFE6;
  padding: 2rem 1rem 2.4rem 2.4rem;
}
@media screen and (min-width: 768px) {
  .work .work_box .point {
    flex-grow: 1;
  }
}
@media screen and (min-width: 1250px) {
  .work .work_box .point {
    height: 166px;
  }
}
.work .work_box .point li {
  color: #333;
  line-height: 1.6;
  margin-top: 1rem;
  position: relative;
  padding: 0 1.2rem 0 2rem;
}
.work .work_box .point li::before {
  content: "★";
  color: #EC7900;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 0px;
}
@media screen and (min-width: 768px) {
  .work .work_box .point li {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1250px) {
  .work .work_box .point li {
    font-size: 1.6rem;
  }
}

/*=============================================
/     cta
============================================*/
.cta .cta_ttl {
  padding: 1.5rem;
  background: linear-gradient(180deg, #EC7900 21.71%, #E34800 132.82%);
  font: 700 2.6rem/1.2 "Noto Sans JP", sans-serif;
  color: #fff;
  text-align: center;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.35);
}
@media screen and (min-width: 768px) {
  .cta .cta_ttl {
    border-radius: 1rem 1rem 0 0;
  }
}
.cta .cta_inner {
  padding: 4rem 1rem 3rem;
  background: linear-gradient(180deg, #FFD53E 50%, #FFB229 50%);
}
@media screen and (min-width: 768px) {
  .cta .cta_inner {
    border-radius: 0;
    padding: 8rem 2rem;
  }
}
.cta .fukidashi {
  position: relative;
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 25px;
  background-color: #ffffff;
  text-align: left;
  color: #501700;
  font: 700 1.7rem/1.2 "Noto Sans JP", sans-serif;
  font-size: min(4.3vw, 17px);
  text-align: center;
  width: 100%;
  filter: drop-shadow(0 0 5px rgba(236, 121, 0, 0.57));
}
.cta .fukidashi::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  border-style: solid;
  border-width: 8px 10px 0 10px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
@media screen and (min-width: 768px) {
  .cta .fukidashi {
    width: 40%;
    margin: 0 auto;
    font-size: 2.4rem;
  }
}
.cta .link_btn {
  width: 95%;
  margin: 1.4rem auto 0;
}
.cta .lead {
  width: 90%;
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .cta .lead {
    width: 27%;
  }
}

/*=============================================
/     役割と魅力
============================================*/
.merit {
  padding: 0 0 6.4rem;
  background: #FDEFE6;
}
.merit .merit_contents {
  background: #fff;
  padding: 6.4rem 0 3.2rem;
}
@media screen and (min-width: 768px) {
  .merit .merit_contents {
    padding: 8rem 0;
  }
}
.merit .merit_contents .ttl {
  margin-bottom: 5.4rem;
}
@media screen and (min-width: 768px) {
  .merit .merit_contents .ttl {
    margin-bottom: 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .merit .merit_container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2vw 4vw;
  }
}
.merit .merit_box {
  margin-top: 2.8rem;
}
@media screen and (min-width: 768px) {
  .merit .merit_box {
    flex-basis: 40%;
  }
}
.merit .merit_box .merit_ttl_box {
  width: 80vw;
  margin: 0 4px 0 auto;
  background: #FFFEF3;
  padding: 1.7rem 2rem;
  position: relative;
  box-shadow: 0px 1px 4px 0px rgba(236, 121, 0, 0.4);
  border-radius: 1rem;
  height: 9rem;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .merit .merit_box .merit_ttl_box {
    width: 100%;
  }
}
.merit .merit_box .merit_ttl_box .merit_ttl {
  font: 700 5.64vw/1.1 "Noto Sans JP", sans-serif;
  font-size: min(5.6vw, 22px);
  padding-left: 6rem;
}
.merit .merit_box .merit_ttl_box .merit_ttl img {
  width: 32px;
  height: 32px;
  vertical-align: sub;
  margin-left: 1.3rem;
}
.merit .merit_box .merit_ttl_box::before {
  content: "";
  width: 100px;
  height: 100px;
  background: url(../images/merit_01.svg) 0/contain no-repeat;
  position: absolute;
  left: -36px;
  top: 50%;
  transform: translateY(-50%);
}
.merit .merit_box .merit_ttl_box.merit_02::before {
  background: url(../images/merit_02.svg) 0/contain no-repeat;
}
.merit .merit_box .merit_ttl_box.merit_03::before {
  background: url(../images/merit_03.svg) 0/contain no-repeat;
}
.merit .merit_box .merit_ttl_box.merit_04::before {
  background: url(../images/merit_04.svg) 0/contain no-repeat;
}
.merit .merit_box .merit_txt {
  margin-top: 2rem;
  padding: 0 1.6rem;
}
.merit .merit_box .merit_txt p {
  margin-top: 1rem;
  font-size: min(4.1vw, 16px);
}

/*=============================================
/     役割と魅力
============================================*/
.ttl i {
  font: normal 600 1.2rem/1 "Noto Sans JP", sans-serif;
}

.role-charm {
  margin: 6.4rem 0 4.8rem;
}
@media screen and (min-width: 768px) {
  .role-charm {
    margin: 8rem 0;
  }
}
.role-charm .role-charm_container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 95%;
  margin: 3.4rem auto 0;
}
@media screen and (min-width: 768px) {
  .role-charm .role-charm_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    gap: 2.8rem;
    margin-top: 5.6rem;
  }
}
.role-charm .role_box {
  background: #FFFEF3;
  padding: 2rem 1.4rem 2.4rem;
  border-radius: 6px;
  filter: drop-shadow(0px 1px 4px rgba(236, 121, 0, 0.4));
}
.role-charm .role_box .role_ttl {
  font: 700 2.4rem/1.2 "Noto Sans JP", sans-serif;
  position: relative;
}
.role-charm .role_box .role_ttl::after, .role-charm .role_box .role_ttl::before {
  content: "";
  width: 100%;
  height: 2px;
  background: #D3C5BF;
  position: absolute;
  bottom: -3px;
  left: 0;
}
.role-charm .role_box .role_ttl::after {
  width: 5rem;
  background: #EC7900;
}
.role-charm .role_box .role_ttl span {
  font-family: "Jost", sans-serif;
  font-size: 38px;
  font-weight: 600;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  line-height: 1.1;
  color: #EC7900;
  margin-right: 1.8rem;
}
.role-charm .role_box .img {
  margin: 2rem auto 0;
  width: 92%;
}
.role-charm .role_box .img img {
  border-radius: 6px;
}
.role-charm .role_box .role_list {
  margin-top: 1.4rem;
}
@media screen and (min-width: 768px) {
  .role-charm .role_box .role_list {
    width: 80%;
    margin: 2rem auto;
  }
}
.role-charm .role_box .role_list li {
  position: relative;
  padding-left: 2rem;
  margin-left: 8px;
  margin-top: 1rem;
}
.role-charm .role_box .role_list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #EC7900;
  border-radius: 1rem;
  position: absolute;
  top: 7px;
  left: 0;
}

/*=============================================
/              よくあるご質問
============================================*/
.faq {
  padding: 6.4rem 0;
  background: #FFF9E2;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: 8rem 0;
  }
}
.faq .wrapper {
  max-width: 1000px;
  width: 95%;
  margin: 0 auto;
}
.faq .ttl {
  margin-bottom: 3.2rem;
}
@media screen and (min-width: 768px) {
  .faq .ttl {
    margin-bottom: 5.6rem;
  }
}
@media screen and (min-width: 768px) {
  .faq .faq_container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
}
.faq .faq_box {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0px 1px 4px 0px rgba(236, 121, 0, 0.4);
  padding: 2.2rem 1.5rem 2rem;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .faq .faq_box {
    flex-basis: 45%;
    margin-top: 0;
  }
}
.faq .faq_box .faq_ttl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.1rem;
  font: 700 1.6rem/1.5 "Noto Sans JP", sans-serif;
  flex-basis: 84%;
  padding-bottom: 1.4rem;
}
.faq .faq_box .faq_ttl span {
  display: block;
  flex-basis: 10%;
  background: #EC7900;
  color: #fff;
  width: 3.5rem;
  height: 3.5rem;
  min-width: 35px;
  border-radius: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  line-height: 1.1;
}
.faq .faq_box .faq_txt {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.1rem;
  font: 700 1.6rem/1.5 "Noto Sans JP", sans-serif;
  flex-basis: 84%;
  padding-top: 1.2rem;
  border-top: 1px solid #D1C2BD;
}
.faq .faq_box .faq_txt span {
  display: block;
  flex-basis: 16%;
  background: #FDEFE6;
  color: #EC7900;
  width: 3.5rem;
  min-width: 35px;
  height: 3.5rem;
  border-radius: 50%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Jost", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  font-variation-settings: "slnt" 0, "wdth" 100, "wght" 600;
  line-height: 1.1;
}
.faq .faq_box .faq_txt p {
  font-weight: 500;
  font-size: 1.6rem;
  margin-top: 3px;
}

/*=============================================
/               給食ができるまで
============================================*/
.movie {
  background: #FFF9E2;
  padding: 4rem 0;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .movie {
    padding: 6.4rem 0;
  }
}
.movie .movie_box {
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .movie .movie_box {
    width: 60%;
    margin: 3.2rem auto 0;
  }
}

/*=============================================
/              センター概要
============================================*/
@media screen and (min-width: 768px) {
  .about {
    margin-top: 6.4rem;
  }
}
.about .ttl {
  margin-top: 6.4rem;
}
.about .img {
  margin-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .about .img {
    width: 60%;
    margin: 3.2rem auto 0;
  }
}
.about .img img {
  border-radius: 6px;
}
.about .about_contents {
  margin-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .about .about_contents {
    width: 60%;
    margin: 3.2rem auto 0;
  }
}
.about .about_contents h4 {
  font: 700 1.6rem/1.4 "Noto Sans JP", sans-serif;
  padding-bottom: 8px;
  border-bottom: 1px solid #D1C2BD;
  margin-bottom: 2rem;
}
.about .about_contents dl {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.2rem;
}
.about .about_contents dl dt {
  flex-basis: 30%;
  font-weight: 500;
}
.about .about_contents dl dd {
  flex-basis: 70%;
  color: #333;
}