@charset "utf-8";

/* RESET
----------------------------------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
picture {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  line-height: 1.5em;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  vertical-align: bottom;
  border: none;
}

picture {
  display: block;
}

/* ----------------------------------------------

 * 設定をしなおす

---------------------------------------------- */
:root {
  --inner: 118.8rem;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 0.7320644217vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.8em;
  color: #333333;
  height: 100%;
  font-family: YakuHanJP_Noto, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 400;
  position: relative;
  background-color: #f8f8f8;

  /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #e2e2e2 calc(100% - 1px)),
    linear-gradient(90deg, transparent calc(100% - 1px), #e2e2e2 calc(100% - 1px));
  background-size: 23rem 23rem;
  background-repeat: repeat;
  background-position: center center;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    background-size: 6.4rem 6.4rem;
  }
}

.en {
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
}

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

img {
  vertical-align: bottom;
  border: none;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

main {
  display: block;
  position: relative;
}

a {
  outline: none;
  color: #333333;
}

a:hover {
  text-decoration: none;
}

a,
a:hover,
a:hover img,
button,
input {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none;
}

a:hover {
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  opacity: 0.8;
}

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

/* -----------------------------------------------
 * COMMON
----------------------------------------------- */
input[type="text"]:focus {
  outline: none;
}

#main {
  overflow: hidden;
}

section {
  position: relative;
}

.container {
  max-width: calc(var(--inner) + 4rem);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.large_conteiner {
  max-width: 124.6rem;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

@media only screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }

  .section {
    padding: 45px 0;
  }

  .br_pc {
    display: none;
  }

  .sp_none {
    display: none !important;
  }
}

@media print,
screen and (min-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .br_sp {
    display: none;
  }

  .sp {
    display: none !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   FLEX

--------------------------------------------------------------------------------------------- */
.d-flex {
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

@media (min-width: 576px) {
  .d-sm-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 768px) {
  .d-md-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 992px) {
  .d-lg-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-flex {
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }

  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   TEXT

--------------------------------------------------------------------------------------------- */
.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}

/* ---------------------------------------------------------------------------------------------

　   HEADER

--------------------------------------------------------------------------------------------- */

#header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: transform 0.3s 0.3s;
}


#header.scroll {
  background: rgba(255, 255, 255, .95);
  background: transparent;
  backdrop-filter: blur(5px);
}


#header.p-header {
  position: fixed;
}


#header.hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-out;
}

#h_logo a {
  display: flex;
  align-items: center;
}

#h_contact {
  display: flex;
  align-items: center;
}

.sumabottom {
  width: 100%;
  background-color: #2f3c60;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 800;
  opacity: 0.95;

  ul {
    display: none;

    @media screen and (max-width: 768px) {
      display: flex;
    }

    li {
      width: calc(100%/2);
    }
  }
}


.h_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 5.5rem;
  font-weight: 700;
  color: #fff;
  border-radius: 0.3rem;
}

.h_btn01 {
  background: #2ecc70;
}

.h_btn02 {
  background: #f0876a;
  color: #fff;
}

.h_btn_ico img {
  display: block;
}

@media only screen and (max-width: 767px) {
  #header {
    height: 8.8rem;
    padding: 1.5rem;
    align-items: flex-start;
  }

  header.hidden {
    transform: translateY(-8rem) !important;
  }

  #h_logo img {
    width: 10rem;
  }


  .h_btn {
    width: 10rem;
    font-size: 1rem;
    margin-right: 1rem;
    flex-direction: column;
    height: 4rem;
  }

  .h_btn:last-child {
    margin-right: 0;
  }

  #nav {
    display: none;
  }

  .h_btn_ico {
    height: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .h_btn_ico img {
    width: 1.6rem;
  }
}

@media print,
screen and (min-width: 768px) {
  #header {
    height: 9rem;
    padding: 0 6rem;
  }

  header.hidden {
    transform: translateY(-9rem) !important;
  }

  #h_logo img {
    width: 13rem;
  }

  .h_btn {
    width: 23rem;
    margin-right: 2rem;
  }

  .h_btn:last-child {
    margin-right: 0;
  }

  .h_btn_ico {
    margin-right: 1rem;
  }

  .h_btn01 .h_btn_ico {
    width: 3.4rem;
  }

  .h_btn02 .h_btn_ico {
    width: 2rem;
  }

  #nav {
    position: absolute;
    z-index: 10;
    left: 6.59vw;
    bottom: 14vw;
    width: 10.25vw;
    border: 0.1rem solid #212121;
    background: #fff;
  }

  .nav_title {
    background: #212121;
    color: #fff;
    font-size: 1.6vw;
    height: 3.3vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #nav ul {
    padding: 1vw 1.5vw;
  }

  #nav li {
    font-weight: 700;
    font-size: 1vw;
    margin-bottom: 1em;
  }

  #nav li:last-child {
    margin-bottom: 0;
  }

  #nav li a {
    display: block;
    white-space: nowrap;
  }
}

/* ---------------------------------------------------------------------------------------------

　   FOOTER

--------------------------------------------------------------------------------------------- */
#footer {
  background: #23383D;
  color: #fff;
}

.f_content {
  font-weight: 700;
  line-height: 2em;
}

.foot_bottom {
  border-top: 1px dashed #fff;
  padding-top: 4rem;
  margin-top: 4rem;
}

.f_logo img {
  width: 13rem;
}

@media only screen and (max-width: 767px) {
  #footer {
    padding: 8rem 0;
  }

  .f_logo {
    width: 13rem;
    margin: 0 auto;
  }

  .f_content {
    margin: 3.5rem 0;
    text-align: center;
  }

  .f_copy {
    text-align: center;
  }

  .foot_top li {
    margin-bottom: 2rem;
    text-align: center;
  }

  .foot_top li:last-child {
    margin-bottom: 0;
  }

  .foot_top li img {
    width: auto;
    height: 8rem;
  }
}

@media print,
screen and (min-width: 768px) {
  #footer {
    padding: 5rem 0;
  }

  .f_logo {
    width: 13rem;
    margin-right: 3rem;
  }

  .f_content {
    /*margin: 3.5rem 0 5.5rem;*/
  }

  .foot_top li {
    margin-right: 4rem;
  }

  .foot_top li:last-child {
    margin-right: 0;
  }

  .foot_top li img {
    width: auto;
    height: 11.4rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   COMMON

--------------------------------------------------------------------------------------------- */

.fit {
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
}

.line_anim {
  z-index: -1;
  width: 100%;
}

#ribbon02.line_anim {
  position: relative;
}

#ribbon02_path {
  stroke-dasharray: 2500;
  /* パスの長さを推定値で設定 */
  stroke-dashoffset: -2500;
  /* 初期値を逆方向に設定 */
  width: 100%;
  height: auto;
}

.line_anim.line_anim_active #ribbon01_path,
.line_anim.line_anim_active #ribbon01_sp_path,
.line_anim.line_anim_active #ribbon02_path {
  animation: drawLine 3s ease-in-out forwards;
  /* アニメーションの設定 */
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.title {
  position: relative;
}

.title_bg {
  position: absolute;
  z-index: 1;
  line-height: 1;
  color: #F3EFE6;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  white-space: nowrap;
  text-align: center;
}

.title_head_txt,
.title .sec_title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-weight: 700;
  color: #2A3F44;
}

.title .sec_title {
  line-height: 1.2em;
}

@media only screen and (max-width: 767px) {
  .sec {
    padding: 7rem 0;
  }

  .title {
    margin-bottom: 2.5rem;
    padding-top: 2rem;
  }

  .title .sec_title {
    font-size: 4.6rem;
  }

  .title .sec_title {
    font-size: 4.6rem;
  }

  .sec_title_v {
    font-size: 48px;
    text-align: center;
  }

  .title_head_txt {
    font-size: 1.6rem;
  }

  .title_bg {
    font-size: 6.8rem;
  }

  #ribbon02 {
    display: none;
  }
}

@media print,
screen and (min-width: 768px) {
  .sec {
    padding: 10rem 0;
  }

  .title {
    margin-bottom: 8rem;
    padding-top: 6rem;
  }

  .title .sec_title {
    font-size: 6rem;
  }

  .title_bg {
    font-size: 16rem;
  }

  .title_pc_tate {
    display: flex;
    flex-direction: row-reverse;
    max-width: 13rem;
    padding-top: 0;
    margin-bottom: 0;
  }

  .title_pc_tate .sec_title {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: left;
  }

  .title_pc_tate .title_head_txt {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-align: left;
    margin-left: 0.5rem;
  }

  .title_pc_tate .title_bg {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .col_main_content {
    width: 96rem;
  }

  #ribbon02 {
    margin-top: -15vw;
  }
}

/* ---------------------------------------------------------------------------------------------

　   MV

--------------------------------------------------------------------------------------------- */

#mv {
  position: relative;
}

#mv_inner {
  position: relative;
  background-image: url(../img/main_visual.jpg);
  background-size: cover;
  margin-top: -100px;
  border-image: fill 0 linear-gradient(rgba(255, 255, 255, 0.253), #fff8);
  z-index: 1;
}


.p-fv__mainContens {}

.p-fv__people img,
.mv_title img {
  width: 100%;
  padding-top: 150px;
  padding-bottom: 100px;
}

.mv_title {
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}

.mv_copy {
  font-weight: 700;
  margin-top: 100px;
}

#mv_obi {
  position: relative;
  transform: rotate(-2deg);
  width: 104%;
  left: -2%;
  right: -2%;
}

#mv_oi:after {
  content: "";
  position: absolute;
  background: #f8e7ca;
  width: 100%;
  height: 100%;
  z-index: 2;
  left: 0;
  top: 0;
  transform: rotate(-1.5deg);
}

.mv_obi_inner {
  display: flex;
  align-items: center;
  background: #F3EFE6;
  position: relative;
  z-index: 3;
  padding: 0 2%;
  overflow: hidden;
}

.mv_obi_inner .mv_flowing {
  white-space: nowrap;
}

.mv_obi_inner .mv_flowing p {
  display: inline-block;
}

.mv_illust {
  position: absolute;
  z-index: 2;
  display: block;
}

.mv_illust02 {
  left: 0;
}

.mv_illust03 {
  transform: rotate(-3deg);
}

@media only screen and (max-width: 767px) {
  #mv {
    padding-top: 11.4rem;
  }

  #mv_inner {
    margin-top: -150px;

  }

  .mv_copy {
    line-height: 2em;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .mv_copy span:last-child {
    margin-left: 1em;
  }

  .mv_title {
    width: 100%;
  }

  #mv_obi {
    margin-top: 6rem;
  }

  .mv_obi_inner {
    height: 6rem;
  }

  .mv_obi_inner .mv_flowing img {
    max-width: 58rem;
    width: 58rem;
  }

  .mv_obi_inner .mv_flowing p {
    margin-right: 1rem;
  }

  .mv_illust01 {
    right: -2.5%;
    transform: rotate(90deg);
    width: 20%;
    top: 8.6rem;
  }

  .mv_illust02 {
    width: 10.4rem;
    bottom: 4.5rem;
  }

  .mv_illust03 {
    width: 11.7rem;
    right: 1rem;
    bottom: 6.5rem;
  }

  .mv_badge {
    width: 100%;
    position: absolute;
    inset: 1rem 0 0 0;
    transform: translateX(-50%);
  }

  .mv_copy {
    position: relative;
    top: 2rem;
    left: 13.1rem;
    letter-spacing: 0.11em;
  }
}

@media only screen and (max-width: 767px) and (min-height: 740px) {}

@keyframes mvbadge {
  to {
    scale: 1;
    opacity: 1;
  }
}

.mv_badge {
  margin: 0 auto;
  position: absolute;
  transform-origin: center left;
  animation: mvbadge 0.4s ease-in-out forwards;
  /* アニメーションの設定 */
  animation-delay: 2.2s;
  opacity: 0;
  scale: 0.9;
}

@media print,
screen and (min-width: 768px) {
  #mv {
    padding-top: 10vw;
  }

  .mv_title {
    width: 46%;
    /* width: 49.6%; */
  }

  .mv_badge {
    width: 80%;
    inset: 0;
    transform: translateX(-50%);
  }

  .mv_copy {
    -ms-writing-mode: tb-rl;
    /*writing-mode: vertical-rl;*/
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 1.8vw;
    position: absolute;
    top: 0;
    right: 10%;
    letter-spacing: 0.5em;
    line-height: 2em;
  }

  #mv_obi {
    margin-top: 6vw;
  }

  .mv_obi_inner {
    height: 10.25vw;
  }

  .mv_obi_inner .mv_flowing img {
    width: 117.86vw;
  }

  .mv_obi_inner .mv_flowing p {
    margin-right: 3.66vw;
  }

  .mv_illust01 {
    width: 14.13%;
    left: 22.47%;
    top: 0;
  }

  .mv_illust02 {
    bottom: 6.54vw;
    width: 26.28%;
  }

  .mv_illust03 {
    width: 19.7%;
    right: 4.39%;
    bottom: 19.5%;
  }
}

/* ---------------------------------------------------------------------------------------------

　   CTA

--------------------------------------------------------------------------------------------- */
.cta_content {
  background: #f8e7ca;
  color: #2A3F44;
}

.cta_title {
  text-align: center;
  font-weight: 700;
}

.cta_title_txt span {
  display: inline-block;
  position: relative;
  padding: 0 1em;
}

.cta_title_txt span:before,
.cta_title_txt span:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 2px;
  height: 100%;
  background: #2A3F44;
}

.cta_title_txt span:before {
  left: 0;
  transform: rotate(-25deg);
}

.cta_title_txt span:after {
  right: 0;
  transform: rotate(25deg);
}

.cta_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  transition: 0.3s;
}

.cta_btn:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  opacity: 1;
}

.cta_btn01 {
  background: #2ecc70;
}

.cta_btn02 {
  background: #f0876a;
}


.cta_btn_ico img {
  display: block;
}

@media only screen and (max-width: 767px) {
  .cta_content {
    padding: 3rem 3.5rem;
  }

  .cta_title {
    margin-bottom: 2rem;
  }

  .cta_title_txt {
    font-size: 1.2rem;
  }

  .cta_title h2 {
    font-size: 2rem;
  }

  .cta_btn {
    height: 4.5rem;
    border-radius: 0.4rem;
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }

  .cta_btn:last-child {
    margin-right: 0;
  }

  .cta_btn01 {
    box-shadow: 0 0.5rem 0 #02af4a;
  }

  .cta_btn02 {
    box-shadow: 0 0.5rem 0 #b94c2e;
  }

  .cta_btn_ico {
    margin-right: 1.5rem;
  }

  .cta_btn01 .cta_btn_ico img {
    width: 2.8rem;
  }

  .cta_btn02 .cta_btn_ico img {
    width: 1.5rem;
  }
}

@media print,
screen and (min-width: 768px) {
  .cta_content {
    padding: 5rem 8.5rem;
  }

  .cta_title {
    margin-bottom: 3rem;
  }

  .cta_title_txt {
    font-size: 2.8rem;
  }

  .cta_title h2 {
    font-size: 4.8rem;
  }

  .cta_btn {
    width: 48.2rem;
    height: 8rem;
    border-radius: 0.6rem;
    font-size: 2.4rem;
  }

  .cta_btn:hover {
    transform: translateY(0.8rem);
  }

  .cta_btn01 {
    box-shadow: 0 0.8rem 0 #02af4a;
  }

  .cta_btn02 {
    box-shadow: 0 0.8rem 0 #b94c2e;
  }

  .cta_btn_ico {
    margin-right: 2rem;
  }

  .cta_btn01 .cta_btn_ico img {
    width: 5rem;
  }

  .cta_btn02 .cta_btn_ico img {
    width: 2.6rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   MESSAGE

--------------------------------------------------------------------------------------------- */
#message,
#message .container {
  /*position: relative;*/
  z-index: 11;
}

.sec_lead_title {
  color: #2A3F44;
  font-size: 2rem;
}


.sec_lead_text span {
  border-bottom: 0.2rem solid #333333;
  font-weight: 600;
}

.message_content p {
  font-weight: 700;
  line-height: 2.2em;
  margin-bottom: 1em;
}

.message_content p:last-of-type {
  margin-bottom: 0;
}

.message_illust {
  position: absolute;
  right: 0;
}

.message_main_img {
  position: absolute;
}

#ribbon01.line_anim,
#ribbon01_sp.line_anim {
  position: absolute;
  width: 104%;
  right: -2%;
}

#ribbon01_path {
  stroke-dasharray: 2500;
  /* パスの長さを推定値で設定 */
  stroke-dashoffset: -2500;
  /* 初期値を逆方向に設定 */
  width: 100%;
  height: auto;
}

#ribbon01_sp_path {
  stroke-dasharray: 2000;
  /* パスの長さを推定値で設定 */
  stroke-dashoffset: -2000;
  /* 初期値を逆方向に設定 */
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .lead_title {
    margin-bottom: 1.6rem;
  }

  .sec_lead_text {
    font-size: 1.6rem;
    line-height: 2;
  }

  .message_content p {
    font-size: 1.6rem;
  }

  .message_main_img {
    width: 38%;
    right: 0;
    bottom: 28vw;
  }

  .message_illust {
    top: -5rem;
    width: 9.7rem;
    right: 1.5rem;
  }

  #ribbon01_sp.line_anim {
    bottom: 14vw;
    right: -3%;
  }

  .message_text {
    padding-bottom: 12vw;
  }
}

@media print,
screen and (min-width: 768px) {
  #message {}

  #message .lead_title {
    /*padding-top: 6vw;*/
    margin-bottom: 2rem;
  }

  .sec_lead_text {
    font-size: 3.6rem;
    line-height: 2;
  }

  .message_content p {
    font-size: 2rem;
  }

  .message_main_img {
    /*width: 47.2rem;*/
    width: 34.55vw;
    bottom: 26%;
    right: 4.2%;
  }

  .message_illust {
    top: -17.2rem;
    width: 27.4rem;
  }

  .message_text {
    padding-bottom: 8vw;
  }

  #ribbon01.line_anim {
    bottom: 6vw;
  }
}

@media print,
screen and (min-width: 1600px) {
  #message {
    padding-bottom: 14vw;
  }

  /*#message .lead_title {
    padding-top: 10vw;
  }*/
  .message_main_img {}

  #ribbon01.line_anim {
    bottom: 3vw;
  }

  .message_text {
    padding-bottom: 6vw;
  }
}

/* ---------------------------------------------------------------------------------------------

　   弊社の特徴

--------------------------------------------------------------------------------------------- */
#feature {
  background: #F3EFE6;
  position: relative;
  z-index: 12;
}

#feature:before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

#feature .container {
  /*position: relative;*/
  padding-bottom: 40px;
}

.feature_top_en {
  text-align: center;
}

#feature .title {
  color: #fff;
}

#feature .title_bg {
  color: #FAF7F2;
}

.feature_content {
  border-bottom: 2px dashed #212121;
}

.feature_box {
  background: #fff;
  position: relative;
}

.feature_box:after {
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #212121;
  position: absolute;
  z-index: 2;
}

.feature_box_inner {
  position: relative;
  z-index: 3;
}

.feature_title {
  color: #0260AC;
}

.feature_text h3 {
  letter-spacing: 0.1em;
}

.feature_text p {
  line-height: 2em;
}

.feature_box_cw h3 {
  letter-spacing: 0.1em;
}

.feature_voice_title_box {
  color: #fff;
}

.feature_voice_box {
  background: #fff;
}

.feature_voice_box h4 {
  background: #212121;
  color: #fff;
  text-align: center;
  padding: 0.4em;
  letter-spacing: 0.1em;
}

.feature_voice_content h5 {
  position: relative;
  padding-left: 1em;
  letter-spacing: 0.15em;
}

.feature_voice_content h5:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #0260AC;
  border-radius: 50%;
  width: 0.5em;
  height: 0.5em;
}

.feature_voice_info_text {
  margin-bottom: 1rem;
}

.feature_voice_info_text span {
  background: #e0bd25;
  display: inline-block;
  line-height: 1.2em;
  border-radius: 0.4rem;
  color: #212121;
  font-weight: 700;
  padding: 0.5em 0.6em;
  letter-spacing: 0.1em;
}

.feature_voice_position {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.feature_voice_name {
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
}

.feature_voice_text {
  line-height: 2em;
}

.feature_illust {
  position: absolute;
  z-index: 10;
}

.feature_illust01 {
  top: 0;
  left: 0;
}

.feature_illust02 {
  top: 0;
  right: 0;
}

.feature_illust03 {
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 767px) {
  #feature {
    margin-bottom: 4rem;
    margin-top: 18.6vw;
  }

  #feature:before {
    background: url(../img/wave_bg_sp.png) no-repeat top left / 100%;
    height: 18.6vw;
    top: calc(-18.6vw + 1px);
  }

  .feature_inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .feature_top_en img {
    width: 15rem;
  }

  .feature_content {
    padding-bottom: 1rem;
  }

  .feature_box {
    margin-bottom: 4.5rem;
    padding: 4.5rem 2rem 5rem 3rem;
  }

  .feature_box:after {
    top: 1rem;
    left: 1rem;
  }

  .feature_title {
    font-size: 1.6rem;
  }

  .feature_text h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }

  .feature_box .feature_img,
  .feature_box .feature_img img {
    width: 100%;
  }

  .feature_box_fw .feature_img {
    margin-top: 2rem;
  }

  .feature_box_cw_title {
    margin: 1.5rem 0 0;
  }

  .feature_box_cw .feature_img {
    width: 10.2rem;
    margin-right: 2rem;
  }

  .feature_box_cw h3 {
    font-size: 1.6rem;
    width: calc(100% - 12.2rem);
  }

  .feature_voice {
    padding: 4rem 0 9rem;
  }

  .feature_voice_title_box {
    margin-bottom: 4rem;
  }

  .feature_voice_title_box h3 {
    font-size: 3.2rem;
    line-height: 2em;
  }

  .feature_voice_title_box h3 span {
    border-bottom: 0.2rem solid #fff;
  }

  .feature_voice_box {}

  .feature_voice_box h4 {
    font-size: 2.4rem;
  }

  .feature_voice_box_inner {
    padding: 5rem 2rem 4rem;
  }

  .feature_voice_img {
    width: 23.3rem;
    margin: 0 auto 2rem;
  }

  .feature_voice_img img {
    width: 100%;
  }

  .feature_voice_info_text {
    font-size: 1rem;
  }

  .feature_voice_content h5 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .feature_voice_info_text span {
    font-size: 1rem;
  }

  .feature_voice_position {
    margin: 0 0 0.5rem;
  }

  .feature_voice_ph {
    width: 10rem;
    margin-right: 2rem;
  }

  .feature_voice_title_content {
    width: calc(100% - 12rem);
  }

  .feature_voice_title {
    margin-bottom: 2rem;
  }

  .feature_illust01 {
    width: 12.4rem;
    top: -12rem;
    left: 1.5rem;
  }

  .feature_illust02 {
    width: 7.4rem;
    top: -7rem;
    right: 2.5rem;
  }

  .feature_illust03 {
    width: 12.2rem;
  }
}

@media print,
screen and (min-width: 768px) {
  #feature {
    margin-bottom: 9rem;
    margin-top: 13.8vw;
  }

  #feature:before {
    background: url(../img/wave_bg.png) no-repeat top left / 100%;
    height: 13.8vw;
    top: calc(-13.8vw + 1px);
  }

  .feature_top_en img {
    width: 40.4rem;
  }

  .feature_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .feature_box {
    margin-bottom: 7rem;
    padding: 6rem 6.5rem;
  }

  .feature_box:after {
    top: 1.5rem;
    left: 1.5rem;
  }

  .feature_box_fw {
    width: 100%;
  }

  .feature_box_fw .feature_img {
    width: 48.4rem;
  }

  .feature_box_fw .feature_text {
    width: 50rem;
  }

  .feature_title {
    font-size: 2rem;
  }

  .feature_text h3 {
    font-size: 3.6rem;
    /*margin-bottom: 1em;*/
  }

  .feature_box_cw {
    width: 55.3rem;
    padding: 4rem 5rem;
  }

  .feature_box_cw .feature_img {
    width: 15rem;
  }

  .feature_box_cw h3 {
    font-size: 2rem;
    width: 27.4rem;
  }

  .feature_box_cw_title {
    margin: 2.4rem 0 0;
  }

  .feature_voice {
    padding: 7rem 0 24rem;
  }

  .feature_voice {
    flex-direction: row-reverse;
  }

  .feature_voice_title_box {
    width: 18rem;
    display: flex;
    justify-content: flex-end;
  }

  .feature_voice_title_box h3 {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: 5.6rem;
  }

  .feature_voice_title_box h3 span {
    border-right: 0.3rem solid #fff;
  }

  .feature_voice_box {
    /*width: 93.7rem;*/
  }

  .feature_voice_box h4 {
    font-size: 2.8rem;
  }

  .feature_voice_box_inner {
    padding: 5.4rem 7rem;
  }

  .feature_voice_img {
    width: 31.3rem;
  }

  .feature_voice_content {
    /*width: 42.3rem;*/
    width: 60.8rem;
  }

  .feature_voice_info_text {
    font-size: 1.2rem;
  }

  .feature_voice_content h5 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .feature_voice_position {
    margin: 0 0 1rem;
  }

  .feature_voice_ph {
    width: 11rem;
    margin-right: 3rem;
  }

  .feature_voice_title_content {
    width: calc(100% - 14rem);
  }

  .feature_voice_title {
    margin-bottom: 1.5rem;
  }

  .feature_illust01 {
    width: 30.8rem;
    top: -7rem;
  }

  .feature_illust02 {
    width: 24.4rem;
    top: -12rem;
  }

  .feature_illust03 {
    width: 30.8rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   経験できること

--------------------------------------------------------------------------------------------- */
#cando {
  position: relative;
}

#cando:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -1px;
  width: 100%;
}

#cando .container {
  position: relative;
  z-index: 2;
}

.cando_box {
  background: #fff;
  border: 0.2rem solid #212121;
  position: relative;
}

.cando_box_inner {
  max-width: 24.8rem;
  margin: 0 auto;
}

.cando_num {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.cando_text {
  line-height: 2em;
  font-weight: 700;
}

.cando_img img {
  width: 100%;
}

.cando_illust {
  position: absolute;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  #cando:after {
    height: 29.6vw;
    background: url(../img/wave_bg02_top_sp.png) no-repeat left top / 100%;
  }

  #cando_list {
    margin-top: 7rem;
  }

  .cando_box {
    margin-bottom: 4rem;
  }

  .cando_box:last-child {
    margin-bottom: 0;
  }

  .cando_box_inner {
    padding: 3.5rem 0 4rem;
  }

  .cando_num {
    top: -2rem;
  }

  .cando_num img {
    width: auto;
    height: 4.2rem;
  }

  .cando_img {
    margin-bottom: 2rem;
  }

  .cando_text {
    font-size: 1.6rem;
  }

  .cando_illust {
    display: none;
  }
}

@media print,
screen and (min-width: 768px) {
  #cando {
    padding-top: 16rem;
  }

  #cando:after {
    height: 22vw;
    background: url(../img/wave_bg02_top.png) no-repeat left top / 100%;
  }

  .cando_box {
    width: 33.8rem;
  }

  .cando_box_inner {
    padding: 6rem 0 5rem;
  }

  .cando_num {
    top: -3rem;
  }

  .cando_num img {
    width: auto;
    height: 5.8rem;
  }

  .cando_img {
    margin-bottom: 2.5rem;
  }

  .cando_text {
    font-size: 2rem;
  }

  .cando_illust {
    width: 21rem;
    top: -10rem;
    right: 6.8rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   キャリアアップ

--------------------------------------------------------------------------------------------- */
#careerup {
  background: #fce9e4;
}

#careerup .title_bg {
  color: #f8e1da;
}

.careerup_lead_text {
  font-weight: 700;
  line-height: 2em;
}

.careerup_box {
  border: 0.2rem solid #212121;
  background: #fff;
}

.careerup_box h3 {
  background: #212121;
  color: #fff;
  text-align: center;
  padding: 0.4rem;
}

.careerup_box_inner {
  text-align: center;
}

.careerup_image {
  width: 86.8rem;
}

@media only screen and (max-width: 767px) {
  .js-scrollable_inner {
    width: 86.8rem;
    padding: 3rem;
  }

  .careerup_lead_text {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }

  .careerup_box h3 {
    font-size: 2.4rem;
  }
}

@media print,
screen and (min-width: 768px) {
  #careerup {
    padding-top: 15rem;
  }

  .careerup_lead_text {
    font-size: 2rem;
    margin-bottom: 6rem;
  }

  .careerup_box h3 {
    font-size: 2.8rem;
  }

  .careerup_box_inner {
    padding: 7rem 4rem 9rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   教育体制・研修制度

--------------------------------------------------------------------------------------------- */

#traning {
  background: #fce9e4;
  position: relative;
}

#traning:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 1;
}

#traning .container {
  position: relative;
  z-index: 2;
}

#traning .title_bg {
  color: #f8e1da;
}

.traning_box {
  border: 0.2rem solid #212121;
  background: #fff;
  position: relative;
}

.traning_cross {
  display: flex;
  align-items: center;
}

.traning_cross img {
  width: 3rem;
}

.traning_num {
  position: absolute;
  z-index: 2;
  top: -2.4rem;
}

.traning_num img {
  width: auto;
  height: 4.2rem;
}

.traning_box h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25em;
  line-height: 2.25em;
  letter-spacing: 0.1em;
  font-size: 2.8rem;
  margin-left: -2.5rem;
  margin-right: -2.5rem;
  margin-bottom: 1.5rem;
}

.traning_box h3 span {
  text-align: center;
  line-height: 1.3;
}

.traning_text {
  line-height: 2em;
}

@media only screen and (max-width: 767px) {
  #traning {
    margin-bottom: 18.6vw;
  }

  #traning:after {
    background: url(../img/wave_bg02_bottom_sp.png) no-repeat left top / 100%;
    height: 18.6vw;
    bottom: calc(-18.6vw + 1px);
  }

  .traning_content {
    margin-top: 4rem;
  }

  .traning_cross {
    justify-content: center;
    height: 4.8rem;
  }

  .traning_num {
    left: 2rem;
  }

  .traning_box {
    padding: 3rem 3.5rem;
  }
}

@media print,
screen and (min-width: 768px) {
  #traning {
    margin-bottom: 18.6vw;
    padding-bottom: 12rem;
  }

  #traning:after {
    background: url(../img/wave_bg02_bottom.png) no-repeat left top / 100%;
    height: 9.8vw;
    bottom: calc(-9.8vw + 1px);
  }

  .traning_cross {
    width: 3rem;
  }

  .traning_box {
    width: 26.2rem;
    padding: 3.5rem;
    min-height: 33.2rem;
  }

  .traning_num {
    left: 50%;
    transform: translateX(-50%);
  }

  .traning_text {
    font-size: 1.4rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   先輩の声

--------------------------------------------------------------------------------------------- */
.voice_box:last-child {
  margin-bottom: 0;
}

.voice_img {
  position: relative;
}

.voice_img:after {
  content: "";
  border: 1px solid #FAF7F2;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 1000px;
}

.member_info_text {
  margin-bottom: 10px;
}

.member_info_text span {
  display: inline-block;
  background: #0260AC;
  border-radius: 0.4rem;
  font-weight: 700;
  padding: 0.5rem 0.8rem;
  letter-spacing: 0.1em;
  font-size: 2rem;
  color: #fff;
}

.member_position {
  font-weight: 600;
  margin-top: 0.5em;
  font-size: 2rem;
}

.member_name {
  font-weight: 700;
  letter-spacing: 0.15em;
  font-size: 3.6rem;
  margin-bottom: 2.5rem;
}

.member_voice_text {
  line-height: 2em;
}

@media only screen and (max-width: 767px) {
  .voice_box {
    margin-bottom: 4rem;
  }

  .voice_img {
    margin-bottom: 4rem;
  }

  .voice_img img {
    width: 100%;
  }

  .voice_img:after {
    top: 1rem;
    left: 1rem;
  }

  .member_info_text span {
    font-size: 2rem;
  }

  .member_name span {
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0;
  }
}

@media print,
screen and (min-width: 768px) {
  .voice_box {
    margin-bottom: 9rem;
  }

  .voice_img {
    width: 43rem;
  }

  .voice_img:after {
    top: 1.5rem;
    left: 0rem;
  }

  .voice_text {
    width: 46.5rem;
  }

  .member_position {
    font-size: 2rem;
  }

  .member_info_text span {
    font-size: 2rem;
  }

  .member_name span {
    display: none;
  }
}

/* ---------------------------------------------------------------------------------------------

　   一日の流れ

--------------------------------------------------------------------------------------------- */
.flow_content {
  position: relative;
}

.flow_content:before {
  content: "";
  width: 3px;
  background: #0260AC;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.flow_content:after {
  content: "";
  background: url(../img/flow_arrow.svg) no-repeat center / 100%;
  position: absolute;
  z-index: 2;
  bottom: -1px;
}

.flow_box {
  border-bottom: 2px dashed #212121;
  position: relative;
}

.flow_box .flow_num {
  position: relative;
}

.flow_box .flow_num:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  border: 3px solid #0260AC;
  box-sizing: border-box;
}

.flow_box .flow_num.flow_color:before {
  background: #0260AC;
}

.flow_color {
  color: #0260AC;
}

.flow_title {
  font-weight: 700;
  line-height: 1em;
}

.flow_text_p {
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  #flow {
    padding-bottom: 0;
  }

  #flow .flow_img {
    display: none;
  }

  .flow_box {
    padding: 2rem 0;
  }

  .flow_num {
    font-size: 2rem;
  }

  .flow_content:after {
    width: 1.3rem;
    height: 0.6rem;
    left: -0.5rem;
  }

  .flow_box .flow_num:before {
    width: 1.4rem;
    height: 1.4rem;
    left: -4.05rem;
  }

  .flow_text {}

  .flow_title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .flow_text_p {}

  .flow_content {
    padding-left: 3.5rem;
  }
}

@media print,
screen and (min-width: 768px) {
  #flow .flow_content {
    width: 74rem;
  }

  #flow .flow_img {
    width: 33rem;
  }

  #flow .flow_img picture {
    position: relative;
    margin-bottom: 5rem;
  }

  #flow .flow_img picture:last-child {
    margin-bottom: 0;
  }

  #flow .flow_img picture:after {
    content: "";
    border: 1px solid #212121;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 1rem;
    left: 1rem;
  }

  .flow_content {
    padding-left: 6rem;
  }

  .flow_content:after {
    width: 2.4rem;
    height: 1.2rem;
    left: -1.05rem;
  }

  .flow_box {
    display: flex;
    align-items: flex-start;
    padding: 5rem 0;
  }

  .flow_box .flow_num:before {
    width: 2.6rem;
    height: 2.6rem;
    left: -7.15rem;
  }

  .flow_num {
    font-size: 3.6rem;
    width: 18rem;
  }

  .flow_num span {
    border-bottom: 2px solid #eb603a;
    line-height: 1;
    display: inline-block;
  }

  .flow_text {
    width: calc(100% - 18rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .flow_title {
    font-size: 4.8rem;
    margin-bottom: 2rem;
  }

  .flow_text_p {
    font-size: 2rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   よくあるご質問

--------------------------------------------------------------------------------------------- */

.accordion_wrap {
  background: #fff;
}

.accordion_wrap:last-child {
  margin-bottom: 0;
}

.accordion_header {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  transition: 0.3s;
  background: #fff;
  font-size: 2rem;
}

.accordion_header:before {
  content: "Q";
  background: #2A3F44;
  position: absolute;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
}

.accordion_header.open:before {
  background: #fff;
  color: #2A3F44;
}

.acc_arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  transition: 0.3s;
}

.acc_arrow img {
  display: block;
  width: 2rem;
}

.accordion_header.open .acc_arrow {
  transform: translateY(-50%) rotate(180deg);
  background: url(../img/minus.svg) no-repeat center / 100%;
}

.accordion_header.open .acc_arrow img {
  opacity: 0;
}

.accordion_header.open {
  background: #2A3F44;
  color: #fff;
}

.accordion_content {
  position: relative;
  display: none;
}

.accordion_content p {
  line-height: 1.8em;
}

@media only screen and (max-width: 767px) {
  .accordion_wrap {
    margin-bottom: 1rem;
  }

  .accordion_header {
    min-height: 8rem;
    padding: 2rem 4rem 2rem 6rem;
  }

  .acc_arrow {
    right: 1.5rem;
  }

  .accordion_header:before {
    left: 2rem;
  }

  .accordion_content {
    padding: 3rem 4rem 3rem 6rem;
  }
}

@media print,
screen and (min-width: 768px) {
  .accordion_wrap {
    margin-left: 4rem;
    margin-bottom: 2rem;
  }

  .accordion_header {
    min-height: 10rem;
    padding-left: 10rem;
    padding-right: 4rem;
  }

  .acc_arrow {
    right: 5rem;
  }

  .accordion_header:before {
    left: 4.4rem;
  }

  .accordion_content {
    padding: 4rem 10rem;
    font-size: 2rem;
  }
}

/* ---------------------------------------------------------------------------------------------

　   募集要項

--------------------------------------------------------------------------------------------- */
.outline_content {
  border: 2px solid #212121;
  background: #fff;
}

.outline_content dt {
  font-weight: 700;
}

@media only screen and (max-width: 767px) {
  #outline {
    padding-bottom: 0;
  }

  .outline_content {
    padding: 3rem 2rem;
  }

  .outline_content dt {
    margin-bottom: 1.5rem;
  }

  .outline_content dd {
    border-bottom: 2px dashed #212121;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
  }

  .outline_content dd:last-of-type {
    margin-bottom: 0;
  }
}

@media print,
screen and (min-width: 768px) {
  .outline_content {
    padding: 8rem 9.5rem;
  }

  .outline_content dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .outline_content dt,
  .outline_content dd {
    border-bottom: 2px dashed #212121;
    margin-bottom: 4.5rem;
    padding-bottom: 3rem;
  }

  .outline_content dt:last-of-type,
  .outline_content dd:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .outline_content dt {
    width: 20rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .outline_content dd {
    width: calc(100% - 20rem);
  }
}


/* ---------------------------------------------------------------------------------------------

　   採用までの流れ

--------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 767px) {
  #flow_recruitment {
    padding-bottom: 0;
  }
}

@media print,
screen and (min-width: 768px) {}

/* ---------------------------------------------------------------------------------------------

　   応募・ご相談フォーム

--------------------------------------------------------------------------------------------- */
input,
textarea {
  border-radius: 0;
  line-height: 1em;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"] {
  height: 50px;
  padding: 0 15px;
}

input[type="text"],
textarea,
input[type="tel"],
input[type="email"],
input[type="number"] {
  border: none;
  margin: 0;
  display: block;
  background: #f9f9f9;
  font-family: inherit;
  -webkit-appearance: none;
  font-size: inherit;
  width: 100%;
  border: 1px solid #212121;
  border-radius: 0.3rem;
}

input.short_input {
  width: 10em;
  display: inline-block;
}

textarea {
  padding: 2rem;
  width: 100%;
  display: block;
  resize: vertical;
  line-height: 1.8em;
}

button {
  -webkit-appearance: none;
  border: none;
  display: block;
  text-align: center;
  background: none;
  font-size: inherit;
  cursor: pointer;
  position: relative;
  font-family: inherit;
  width: 32rem;
}

button:hover {
  opacity: 0.8;
}

.contact_form__block button {
  margin: 0;
}

label input[type="radio"]+span {
  position: relative;
  padding: 0 0.8rem 0.5rem 2.6rem;
}

label {
  position: relative;
  display: inline-block;
  word-break: break-all;
}

label span {
  display: inline-block;
}

label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

label input[type="radio"]+span::before {
  position: absolute;
  display: inline-block;
  content: "";
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 1.6rem;
}

label input[type="radio"]+span::before {
  z-index: 0;
  top: 0.35rem;
  left: 0;
  background-color: transparent;
  width: 2rem;
  height: 2rem;
  border: 1px #0260AC solid;
  background: #fff;
}

label input[type="radio"]:checked+span::before {
  border: 6px #0260AC solid;
}

.select-wrap {
  position: relative;
  display: block;
}

.select-wrap:before {
  content: "";
  z-index: 1;
  position: absolute;
  right: 1.5rem;
  top: 2.2rem;
  height: 1em;
  line-height: 1em;
  pointer-events: none;
  font-weight: bold;
  width: 1rem;
  height: 0.7rem;
  background: url(../img/arrow_down.svg) no-repeat center / 100%;
}

select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 50px;
  padding: 0.8rem 3.4rem 0.8rem 1.2rem;
  border: none;
  /*color:#D3D3D3;*/
  width: 100%;
  background: #f6f5f4;
}

select option {
  background-color: #fff;
  color: #333;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

::placeholder {
  color: #d3d3d3;
}

.form_dl dt {
  font-weight: 700;
}

.required,
.optional {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  width: 3em;
  text-align: center;
  margin-right: 1em;
  font-weight: 400;
  border-radius: 0.2rem;
}

.required {
  background: #0260AC;
}

.optional {
  background: #707070;
}

.confirm_text {
  text-align: center;
  border-bottom: 1px solid #000;
  font-weight: bold;
  font-size: 2.4rem;
}

.form_dl.d-flex dt,
.form_dl.d-flex dd {
  margin-bottom: 0;
  border-bottom: 1px dashed #000;
  line-height: 1.8em;
}

.back_btn,
.send_btn {
  height: 8rem;
  text-align: center;
  border: none;
  font-weight: 700;
  font-family: inherit;
  border-radius: 0.6rem;
  border: 0.2rem solid #212121;
}

.back_btn {
  color: #212121;
  background: #fff;
}

.send_btn {
  background: #212121;
  color: #fff;
}

.thanks__block {
  background: #fff;
}

.thanks_check {
  display: block;
  max-width: 8.6rem;
  margin: 0 auto 5rem;
}

.thanks__block h2,
.thanks__block p {
  text-align: center;
}

.thanks__block h2 {
  margin-bottom: 1.6em;
  font-size: 2.8rem;
}

.thanks__block p {
  line-height: 2em;
}

.top_back_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #212121;
  color: #fff;
  margin: 0 auto;
  max-width: 32rem;
}

.contact_form__inner {
  background: #fff;
}

.entry_line {
  background: #dcebe3;
}

.entry_line p {
  text-align: center;
  font-weight: 700;
  color: #03c755;
  line-height: 1.5em;
}

.entry_line .cta_btn {
  margin: 0 auto;
}

.error_messe {
  color: #eb603a;
}

@media only screen and (max-width: 767px) {
  .entry_line {
    padding: 2.5rem 1rem 3rem;
    margin-bottom: 3.5rem;
  }

  .entry_line p {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .entry_line .cta_btn {
    font-size: 1.6rem;
    max-width: 20rem;
    height: 4.2rem;
    box-shadow: none;
  }

  .contact_form__inner {
    padding: 3rem 2rem;
  }

  .form_dl dt {
    margin-bottom: 1rem;
  }

  .form_dl dd {
    margin-bottom: 3rem;
  }

  .required,
  .optional {
    font-size: 1.2rem;
  }

  .form_dl.d-flex {
    margin-bottom: 3rem;
  }

  .form_dl.d-flex dt,
  .form_dl.d-flex dd {
    padding: 3rem 0;
    font-size: 1.4rem;
  }

  .form_dl.d-flex dt {
    width: 12rem;
    padding-right: 1.5rem;
    line-height: 1.4em;
  }

  .form_dl.d-flex dd {
    width: calc(100% - 12rem);
  }

  .back_btn,
  .send_btn {
    width: 100%;
  }

  .confirm__block .back_btn {
    /*margin-right: 4%;*/
    margin-bottom: 1.5rem;
  }

  .thanks__block {
    padding: 5rem 1.5rem;
    margin-bottom: 3rem;
  }

  .thanks__block .top_back_btn {
    display: none;
  }

  textarea {
    height: 17rem;
  }

  .reservation_contact_tel .h_contact_tel_num {
    font-size: 3.5rem;
  }

  .reservation_contact_tel .h_contact_tel_num span {
    font-size: 2rem;
  }

  .confirm_text {
    padding-bottom: 2rem;
    font-size: 1.7rem;
  }

  .top_back_btn {
    font-size: 1.7rem;
    height: 5rem;
  }

  .thanks_check {
    margin-bottom: 2rem;
  }

  .contact_form__inner {
    margin-top: 3.5rem;
  }
}

#entry {
  /* margin-top: -16rem; */
  /* position: relative;
  top: -4rem;
  height: 1px; */
}

#form {
  padding-top: 2rem;
}

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

  .contact_form__inner {
    padding: 8rem 9.5rem;
    margin-top: 7.5rem;
  }

  .form_dl dt {
    margin-bottom: 1.5rem;
  }

  .form_dl dd {
    margin-bottom: 4rem;
  }

  textarea {
    height: 20rem;
  }

  .confirm__block {
    background: #fff;
    border-radius: 3rem;
    padding: 6rem 10rem;
  }

  .form_dl.d-flex {
    margin-bottom: 6rem;
  }

  .form_dl.d-flex dt,
  .form_dl.d-flex dd {
    padding: 3rem;
  }

  .form_dl.d-flex dt {
    text-align: right;
    width: 22rem;
  }

  .form_dl.d-flex dd {
    width: calc(100% - 22rem);
  }

  .confirm__block .back_btn {
    margin-right: 3rem;
  }

  .thanks__block {
    padding: 12rem 6rem;
  }

  .thanks__block p {
    margin-bottom: 4rem;
  }

  .thanks__block_btn_sp {
    display: none;
  }

  .reservation_contact_tel .h_contact_tel_num {
    font-size: 3.5rem;
  }

  .reservation_contact_tel .h_contact_tel_num span {
    font-size: 2rem;
  }

  .confirm_text {
    padding-bottom: 3rem;
  }

  .top_back_btn {
    font-size: 2rem;
    height: 6rem;
  }

  .entry_line {
    padding: 3rem 2rem 4rem;
    margin-bottom: 5rem;
  }

  .entry_line p {
    font-size: 3.6rem;
    margin-bottom: 2.5rem;
  }

  .back_btn,
  .send_btn {
    font-size: 2.4rem;
  }

  .movie {
    margin-bottom: 30px;
  }

}

.mb40 {
  margin-bottom: 100px;
}

@media screen and (min-width: 768px) {
  .mb40 {
    margin-bottom: 180px;
  }
}

.attention {
  text-align: center;
  max-width: 700px;
  margin: 20px auto;
}

.kojin {
  padding-top: 40px;
  padding-bottom: 20px;
}

/* ---------------------------------------------------------------------------------------------

　   続きを読むのコード

--------------------------------------------------------------------------------------------- */
.cp_box2 {
  width: auto;
  margin: 30px auto;
}

.cp_box2 input {
  display: none;
}

/*続きを読むボタン*/
.cp_box2 label {
  font-weight: bold;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  margin: auto;
  padding: 0.3em 1em;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  color: #0260AC;
  border: 2px solid #0260AC;
  border-radius: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/*＋マーク*/
.cp_box2 label::after {
  position: absolute;
  content: '';
  right: 16px;
  width: 16px;
  height: 16px;
  background: #0260AC;
  clip-path: polygon(0 40%, 40% 40%, 40% 0, 60% 0, 60% 40%, 100% 40%, 100% 60%, 60% 60%, 60% 100%, 40% 100%, 40% 60%, 0 60%);
}

.cp_box2 label:hover::after {
  color: #ffffff;
}

/*hover*/
.cp_box2 label:hover {
  transition: all 0.3s;
  color: #ffffff;
  background: #0260AC;
  opacity: 0.7;
}

.cp_box2 label:hover::after {
  background: #ffffff;
}

/*-マーク*/
.cp_box2 input:checked~label::after {
  background: #0260AC;
  clip-path: polygon(0 40%, 100% 40%, 100% 60%, 0 60%);
}

/*hover*/
.cp_box2 input:checked~label:hover::after {
  background: #ffffff;
}

.cp_box2 div.cp_container2 {
  position: relative;
  z-index: 10;
  overflow: hidden;
  height: 0;
  margin-top: -1px;
}

.cp_box2 input:checked~div.cp_container2 {
  transition: height 0.5s ease-in-out;
}

/* 高さを設定 */
.cp_box2 input:checked~div.cp_container2 {
  height: auto;
}


u.message_target_list>li {
  list-style: none;
}

.message_target_list>li {
  position: relative;
  padding-left: 24px;
  font-size: 20px;
  line-height: 2;
}

.message_target_list>li::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 16px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #0260AC;
  border-radius: 5px;
}

/* ---------------------------------------------------------------------------------------------

　   

-------------------------------------------------------------------------------------------*/
.voice_ul {
  border: double 5px #2A3F44;
  border-radius: 3px;
  padding: 0.5em 1em 0.5em 2.3em;
  list-style: none;
}

.voice_ul li {
  line-height: 2.5;
  color: #333333;
  font-size: 2rem;
  padding-left: 25px;
  font-weight: bold;
  background: url(../img/check.svg) left 0px top 15px no-repeat;
  background-size: 2rem auto;
}


/* --------------------------------------------------------
	募集要項
-------------------------------------------------------- */

.cardContainer {
  display: flex;
  flex-flow: row wrap;
  margin: 50px 0;
}

.cardBox {
  width: calc(33.3% - 20px);
  margin: 0 10px;
  background-color: #fff;

}

@media screen and (max-width: 768px) {
  .cardBox {
    width: 100%;
    margin-bottom: 50px;
  }

  .cardBox:last-child {
    margin-bottom: 20px;
  }
}

.cardBox {
  position: relative;
  padding: 20px;
  border: 2px solid #FAF7F2;
  border-radius: 5px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

@media screen and (max-width: 768px) {
  .cardBox {
    padding: 50px 10px 40px;
  }
}

.cardBox img {
  display: block;
  max-width: 120px;
  margin: 0 auto 30px;
}

.cardTtl {
  text-align: center;
  font-size: 130%;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
}

.cardInner img {
  width: 64px;
}


.cardText p {
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .cardText {
    margin-bottom: 50px;
  }
}

.cardText a {
  position: absolute;
  bottom: 30px;
  left: 25px;
  margin: 0 20px;
}

.center {
  text-align: center;
  color: #333;
}

.last-coment {
  font-size: 3rem;
  margin: 0 10px;
  background: linear-gradient(transparent 60%, yellow 30%);
}

@media screen and (max-width: 768px) {
  .last-coment {
    font-size: 2rem;
  }
}

.komep {
  margin-top: 20px;
}

.kome {
  font-size: 16px;
  border-bottom: none !important;
}

.cta_btn03 {
  background: #EB603A;
  margin: 30px auto;
}

.syain {
  background-color: #fde0d8;
  margin: 20px auto;
  padding: 20px;
}


@media only screen and (max-width: 767px) {}

@media print,
screen and (min-width: 768px) {}