@charset "UTF-8";
/*
 * Utility
 * -------------------------------------------------------------------
 */
.sp-only { display: none; }
@media screen and (max-width: 820px) {
  .sp-only { display: block; }
}
.pc-only { display: block; }
@media screen and (max-width: 820px) {
  .pc-only { display: none; }
}
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6em;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  background: #f7f7f7;
}

a {
  text-decoration: none;
  outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
  display: block;
  margin: 0px auto;
  padding: 0px;
  /*min-height: 100vh;*/
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * Mixin
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */
.pc {
  display: block;
}
@media screen and (max-width: 820px) {
  .pc {
    display: none;
  }
}

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

.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.nav-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.1);
}
.nav-header__container {
  display: flex;
  justify-content: space-between;
  max-width: 1275px;
  height: 10rem;
  margin: 0 auto;
  padding: 0 0 0 15px;
  transition: all 0.2s;
}
@media screen and (min-width: 992px) {
  .nav-header__container {
    padding: 0 15px;
  }
}
@media (max-width: 991px) {
  .nav-header__container {
    height: 5rem;
  }
}
.nav-header__logo {
  font-weight: 700;
  font-family: "Lato";
  display: flex;
  align-items: center;
  color: #222222;
  font-weight: 700;
  font-size: 2rem;
}
@media (max-width: 991px) {
  .nav-header__logo {
    width: 100px;
  }
}
.nav-header__logo-image {
  display: block;
  height: 3rem;
}
.nav-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .nav-header__menu {
    display: none;
  }
}
@media (min-width: 992px) {
  .nav-header__menu {
    display: flex;
    align-items: center;
  }
}
.nav-header__menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.nav-header__menu-item--has-dropdown {
  position: relative;
}
.nav-header__menu-item--has-dropdown:hover .nav-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-header__menu-item--has-dropdown:hover .nav-header__link::after {
  opacity: 1;
  width: 100%;
}
.nav-header__dropdown {
  position: absolute;
  top: 100px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  width: 140px;
  padding: 0;
  list-style: none;
}
.nav-header__dropdown li a {
  width: 100%;
  height: 55px;
  display: block;
  padding: 10px 12px;
  font-size: 1.2rem;
  color: #222222;
  text-align: left;
  text-decoration: none;
  display: grid;
  align-items: center;
}
.nav-header__dropdown li a:hover {
  background: #f7f7f7;
}
.nav-header__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #222222;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0 16px;
  min-width: 140px;
}
.nav-header__link:after {
  display: block;
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #f2714a;
  content: "";
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transition: all 0.2s;
}
.nav-header__link:hover:after {
  opacity: 1;
  width: 100%;
}
.nav-header__link span {
  color: #f2714a;
}
.nav-header__icon {
  width: 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1050px) {
  .nav-header__icon {
    display: none;
  }
}
.nav-header__icon-item {
  width: 36px;
  height: 36px;
}
.nav-header__icon-item:nth-child(1) {
  background: url(../images/common/icon_yt_on.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.nav-header__icon-item:nth-child(2) {
  background: url(../images/common/icon_x_on.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.nav-header__icon-item:nth-child(3) {
  background: url(../images/common/icon_fb_on.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.nav-header__icon-item a {
  display: inline-block;
  transition: all 0.2s;
}
.nav-header__icon-item a:hover {
  opacity: 0;
}
.nav-header__entry-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 991px) {
  .nav-header__entry-wrap {
    display: none;
  }
}
.nav-header__entry {
  width: auto;
}
.nav-header__entry-button {
  display: inline-block;
  text-decoration: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25em;
  box-sizing: border-box;
  transition: all 0.3s;
  position: relative;
  width: 130px;
  height: 60px;
  border: 2px solid #226C72;
  background: #ffffff;
  color: #226C72;
  font-weight: 600;
  font-size: 1.6rem;
}
.nav-header__entry-button::before, .nav-header__entry-button::after {
  box-sizing: border-box;
  transition: all 0.3s;
}
.nav-header__entry-button::after {
  display: none;
  content: "";
  background-color: #226C72;
  -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="45.4" height="10.199" viewBox="0 0 45.4 10.199"><path d="M45.4,10.2H0v-2H40.6L33.8,1.4,35.2,0Z"/></svg>');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="45.4" height="10.199" viewBox="0 0 45.4 10.199"><path d="M45.4,10.2H0v-2H40.6L33.8,1.4,35.2,0Z"/></svg>');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color 0.4s;
  width: 4.5rem;
  height: 1.125rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(-50%, -50%);
}
.nav-header__entry-button:hover {
  border-color: #ffffff;
  background: linear-gradient(135deg, rgb(121 191 183), rgb(102 154 214));
  color: #ffffff;
}
.nav-header__entry-button:hover::after {
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .nav-header__entry {
    display: flex;
    align-items: center;
  }
}
.nav-header__contact {
  display: inline-block;
  text-decoration: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1.5em;
  box-sizing: border-box;
  transition: all 0.3s;
  background-color: #f2714a;
  color: #ffffff;
  margin-left: 1.6rem;
  padding: 1.2rem 3.2rem;
  border-radius: 100px;
}
.nav-header__contact::before, .nav-header__contact::after {
  box-sizing: border-box;
  transition: all 0.3s;
}
.nav-header__contact:hover {
  background-color: #f05e32;
}
.nav-header__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 10rem;
  height: 10rem;
  background: #f2714a;
  cursor: pointer;
}
@media (min-width: 992px) {
  .nav-header__toggle {
    display: none;
  }
}
.nav-header__toggle:hover {
  background: #f05e32;
}
.nav-header__toggle-line {
  display: block;
  width: 35%;
  border-bottom: 2px solid #fff;
}
.nav-header__toggle-line:nth-child(2) {
  margin: 10% 0px;
}

.nav-pagetop {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  bottom: 60px;
  right: 15px;
  z-index: -1000;
  width: 70px;
  height: 70px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  background: #f2714a;
  border-radius: 50%;
  opacity: 0;
  cursor: pointer;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}
.nav-pagetop.active {
  opacity: 1;
  z-index: 1000;
}
.nav-pagetop:before {
  display: block;
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
  content: "\e5ce";
  transition: all 0.2s;
}
.nav-pagetop:after {
  content: "PAGETOP";
  display: block;
  padding: 4px 0px;
}
.nav-pagetop:hover {
  background: #f05e32;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}
.nav-pagetop:hover:before {
  transform: translateY(-4px);
}

.nav-drawer {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 1002;
}
.nav-drawer__container {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  height: 100%;
  max-width: 350px;
  min-width: 200px;
  background: #fff;
  border-left: #e2e2e2 1px solid;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}
.nav-drawer[data-open=true] .nav-drawer__container {
  animation-name: menu-container-appeared;
}
.nav-drawer[data-open=false] .nav-drawer__container {
  animation-name: menu-container-leaved;
}
.nav-drawer__menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}
.nav-drawer__menu-item {
  border-bottom: #e2e2e2 1px dashed;
}
.nav-drawer__menu-item:hover {
  background: #efefef;
}
.nav-drawer__link {
  position: relative;
  display: block;
  align-items: center;
  justify-content: space-between;
  color: inherit;
  letter-spacing: 0.01em;
  padding: 1em 2.5em 1em 2em;
  text-decoration: none;
}
.nav-drawer__link-main {
  display: block;
  font-weight: 500;
}
.nav-drawer__link-sub {
  color: #aaa;
  display: block;
}
.nav-drawer__menu-button {
  display: flex;
  margin: 0px;
  padding: 0px;
}
.nav-drawer__button-close {
  position: relative;
  background-color: #f2714a;
  margin: 0px 0px 0px auto;
  padding: 0px;
  width: 10rem;
  height: 10rem;
  border: none;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
  outline: none;
  background: #f48462;
}
.nav-drawer__button-close-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 2px;
  margin: auto;
  background: #fff;
}
.nav-drawer__button-close-line:nth-child(1) {
  transform: translateY(0) rotate(45deg);
}
.nav-drawer__button-close-line:nth-child(2) {
  transform: translateY(0) rotate(-45deg);
}
.nav-drawer__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.08);
  animation-duration: var(--nav-drawer-duration);
  animation-fill-mode: forwards;
}
.nav-drawer[data-open=true] .nav-drawer__overlay {
  animation-name: menu-overlay-appeared;
}
.nav-drawer[data-open=false] .nav-drawer__overlay {
  animation-name: menu-overlay-leaved;
}

@media screen and (max-width: 820px) {
  .mainvisual__container {
    height: 83vw;
  }
}
.mainvisual__container {
  position: relative;
}
.mainvisual__copy-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 8rem;
  z-index: 1;
}
.mainvisual__copy {
  position: relative;
}
.mainvisual__copy img {
  display: block;
  width: auto;
  height: auto;
  filter: drop-shadow(0px 0px 6px rgba(180, 180, 180, 0.3));
}
@media screen and (max-width: 820px) {
  .mainvisual__copy-wrap {
    padding-bottom: 3rem;
    width: calc(100% - 14.6vw);
  }
}
.mainvisual .mainvisual__slider .slick-slide {
  opacity: 0;
  transition: opacity 1s ease;
}
.mainvisual .mainvisual__slider .slick-active {
  opacity: 1;
}
.mainvisual .mainvisual__slider img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 820px) {
  .mainvisual .mainvisual__slider img {
    width: auto;
    height: 83vw;
  }
}

@media screen and (max-width: 820px) {
  .footer-heading {
    margin: 2rem 0 0;
  }
}
.footer-heading__text-main {
  font-weight: 700;
  font-family: "Lato";
  font-weight: 300;
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media screen and (max-width: 820px) {
  .footer-heading__text-main {
    font-size: 1.2rem;
  }
}
.footer-heading__text-sub {
  font-size: 2rem;
  color: #ffffff;
}
@media screen and (max-width: 820px) {
  .footer-heading__text-sub {
    font-size: 1.7rem;
  }
}

.footer__goworks {
  position: fixed;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  z-index: 10;
  transition: 0.3s;
}
@media screen and (max-width: 820px) {
  .footer__goworks {
    bottom: 10px;
    right: 10px;
  }
}

.footer__goworks-link {
  color: aqua;
}
.footer__goworks-link img {
  display: grid;
  gap: 5px;
}
.footer__goworks-link img:hover {
  opacity: 0.8;
}
@media screen and (max-width: 820px) {
  .footer__goworks-link img {
    width: 18.6vw;
    height: 18.6vw;
  }
}

.footer {
  background: #ffffff;
}
.footer__container {
  max-width: 1275px;
  margin: 0 auto;
}
.footer__copy {
  padding: 1.6rem 0;
  color: #f7f7f7;
  font-size: 1.2rem;
  text-align: center;
}
.footer-share {
  background: #ffffff;
  padding: 1rem;
}
.footer-share__container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-share__container p {
  font-weight: 700;
  font-family: "Lato";
  line-height: 2.5;
  padding: 0 2rem;
  display: grid;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .footer-share__container p {
    font-size: 1.9rem;
    font-weight: 300;
  }
}
.footer-share__container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-share__container ul li {
  margin: 0.5rem 1rem;
  width: 36px;
  height: 36px;
}
.footer-share__container ul li:nth-child(1) {
  background: url(../images/common/icon_x_on.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-share__container ul li:nth-child(2) {
  background: url(../images/common/icon_fb_on.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-share__container ul li a {
  display: inline-block;
  transition: all 0.2s;
}
.footer-share__container ul li a:hover {
  opacity: 0;
}
.footer-nav {
  background: linear-gradient(135deg, rgb(30, 90, 95), rgb(60, 140, 140));
  padding: 2.5rem 0;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .footer-nav {
    padding: 1.5rem 0 3rem;
  }
}
.footer-nav__container {
  max-width: 1000px;
  margin: 0 auto;
}
.footer-nav__link {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav__link li:first-child {
  margin-right: 3rem;
}
@media screen and (max-width: 820px) {
  .footer-nav__link {
    width: calc(100% - 6rem);
    margin: 0 auto;
  }
  .footer-nav__link li {
    width: 100%;
  }
  .footer-nav__link li:first-child {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.footer-nav .footer-heading {
  margin: 2rem auto;
}
.footer-bottom {
  padding: 5rem 0;
}
@media screen and (max-width: 820px) {
  .footer-bottom {
    padding: 3rem 0;
  }
}
.footer-bottom__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .footer-bottom__container {
    width: calc(100% - 6rem);
    margin: 0 auto;
  }
}
.footer-bottom__link {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .footer-bottom__link {
    margin: 0 0 3rem;
  }
}
.footer-bottom__link li {
  border-right: 1px solid #222222;
  padding: 0 3rem;
}
@media screen and (max-width: 820px) {
  .footer-bottom__link li {
    width: 100%;
    padding: 0;
    border-right: 0;
  }
}
.footer-bottom__link li a {
  font-size: 1.4rem;
  color: #222222;
  font-weight: bold;
  transition: all 0.3s;
}
.footer-bottom__link li a:hover {
  color: #f2714a;
}
@media screen and (max-width: 820px) {
  .footer-bottom__link li a {
    line-height: 2.5;
  }
}
.footer-bottom__link li:last-child {
  border-right: 0;
}
.footer-bottom__copy {
  font-size: 1.2rem;
}
@media screen and (max-width: 820px) {
  .footer-bottom__copy {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }
}

.button01 {
  display: inline-block;
  text-decoration: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1.5em;
  position: relative;
  width: 340px;
  height: 60px;
  border: 2px solid #226C72;
  background: #ffffff;
  color: #226C72;
  font-weight: 600;
  font-size: 1.6rem;
}
@media screen and (max-width: 820px) {
  .button01 {
    width: 100%;
    height: 50px;
  }
}
.button01::after {
  display: block;
  content: "";
  background-color: #226C72;
  -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="45.4" height="10.199" viewBox="0 0 45.4 10.199"><path d="M45.4,10.2H0v-2H40.6L33.8,1.4,35.2,0Z"/></svg>');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="45.4" height="10.199" viewBox="0 0 45.4 10.199"><path d="M45.4,10.2H0v-2H40.6L33.8,1.4,35.2,0Z"/></svg>');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color 0.4s;
  width: 4.5rem;
  height: 1.125rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(-50%, -50%);
}
.button01:hover {
  border-color: #ffffff;
  background: linear-gradient(135deg, rgb(121 191 183), rgb(102 154 214));
  color: #ffffff;
}
.button01:hover::after {
  background-color: #ffffff;
}

.button02 {
  display: inline-block;
  text-decoration: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 1.5em;
  box-sizing: border-box;
  transition: all 0.3s;
  position: relative;
  width: 320px;
  height: 60px;
  background: #ffffff;
  color: #f2714a;
  font-weight: 600;
  font-size: 1.6rem;
}
.button02::before, .button02::after {
  box-sizing: border-box;
  transition: all 0.3s;
}
.button02::after {
  display: block;
  content: "";
  background-color: #f2714a;
  -webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="45.4" height="10.199" viewBox="0 0 45.4 10.199"><path d="M45.4,10.2H0v-2H40.6L33.8,1.4,35.2,0Z"/></svg>');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="45.4" height="10.199" viewBox="0 0 45.4 10.199"><path d="M45.4,10.2H0v-2H40.6L33.8,1.4,35.2,0Z"/></svg>');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: background-color 0.4s;
  width: 4.5rem;
  height: 1.125rem;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translate(-50%, -50%);
}
.button02:hover {
  background: #f2714a;
  color: #ffffff;
}
.button02:hover::after {
  background-color: #ffffff;
}
@media screen and (max-width: 820px) {
  .button01::after {
  width: 2.5rem;
}
  .button02 {
    width: 100%;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* slider */
.gallery {
  margin: 0 0 5px 0;
}
.gallery img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*矢印の設定*/
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 3;
  top: 37%;
  cursor: pointer;
  outline: none;
  width: 2rem;
  height: 4rem;
}
@media screen and (max-width: 820px) {
  .slick-prev,
  .slick-next {
    top: unset;
    bottom: 0.5rem;
  }
}

.slick-prev {
  right: 0;
  left: -695px;
  margin: auto;
}
@media screen and (max-width: 820px) {
  .slick-prev {
    right: unset;
    left: 1.5rem;
  }
}
.slick-prev::before {
  content: "\f104";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 4rem;
  color: #f2714a;
  display: inline-block;
}

.slick-next {
  right: 0;
  left: 695px;
  margin: auto;
}
@media screen and (max-width: 820px) {
  .slick-next {
    left: unset;
    right: 1.5rem;
  }
}
.slick-next::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 4rem;
  color: #f2714a;
  display: inline-block;
}

.choice-btn li {
  outline: none;
  width: 100% !important;
  position: absolute;
  pointer-events: none;
}

.choice-btn li div {
  opacity: 0;
}

.choice-btn li.slick-current {
  position: relative;
}

.choice-btn li.slick-current div {
  opacity: 1;
}

.choice-btn .slick-track {
  transform: unset !important;
  width: 100% !important;
  position: relative;
}

.slick-dots {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 1.5rem auto;
  padding: 0;
}

.slick-dots li {
  display: inline-block;
  width: unset;
}

.slick-dots button {
  display: block;
  width: 10px;
  height: 10px;
  margin: 6px;
  font-size: 0;
  padding: 0;
  border: 0;
  outline: none;
  cursor: pointer;
  background: #e8c19e;
  border-radius: 50%;
}

.slick-dots .slick-active button {
  background: #f2714a;
}

.drawer__btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10002;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (min-width: 992px) {
  .drawer__btn {
    display: none;
  }
}
.drawer__btn span {
  display: block;
  width: 60%;
  height: 3px;
  background-color: #f2714a;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
}
.drawer__btn span:nth-child(1) {
  transform: translate(-50%, -12px);
}
.drawer__btn span:nth-child(2) {
  transform: translate(-50%, -50%);
}
.drawer__btn span:nth-child(3) {
  transform: translate(-50%, 9px);
}
.drawer__btn.active span {
  background: #ffffff;
}
.drawer__btn.active span:nth-child(1) {
  transform: translate(-50%, 0) rotate(45deg);
}
.drawer__btn.active span:nth-child(2) {
  opacity: 0;
}
.drawer__btn.active span:nth-child(3) {
  transform: translate(-50%, 0) rotate(-45deg);
}
@media screen and (min-width: 992px) {
  .drawer__btn.active {
    display: block !important;
  }
}
.drawer__menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: -10001;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background: linear-gradient(180deg, rgb(242, 113, 74), rgb(232, 154, 106));
  transition: 0.3s;
  transform: translateX(100%);
  opacity: 0;
}
.drawer__menu.active {
  opacity: 1;
  z-index: 10001;
  transition: 0.3s;
  transform: translateX(0);
}
.drawer__menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  margin: 6rem auto 4rem;
  width: 60%;
  max-width: 405px;
}
.drawer__menu > ul li > a, .drawer__menu > ul li > span {
  color: #ffffff;
  font-size: 1.6rem;
  display: block;
  line-height: 3.5;
  font-weight: 600;
}
/* メインメニュー項目に「-」プレフィックスを付ける（ボタン除く） */
.drawer__menu > ul > li:not(.drawer__btn-wrap) > a::before,
.drawer__menu > ul > li > .drawer__accordion-trigger::before {
  content: "- ";
}
/* ボタンラッパー */
.drawer__menu > ul > li.drawer__btn-wrap {
  margin-top: 3rem;
}
/* エントリー・募集要項ボタン */
.drawer__btn-entry,
.drawer__btn-recruit {
  display: block;
  border: 1px solid #ffffff;
  border-radius: 5rem;
  line-height: 2.5;
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
/* アコーディオントリガー */
.drawer__accordion-trigger {
  cursor: pointer;
  position: relative;
  padding-right: 1.5em;
}
.drawer__accordion-trigger::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30.705' height='18.634' viewBox='0 0 30.705 18.634'%3E%3Cpath d='M14.557,26.823.892,13.158a1.687,1.687,0,0,1,0-2.386L2.486,9.177a1.687,1.687,0,0,1,2.384,0L15.75,20,26.631,9.175a1.687,1.687,0,0,1,2.384,0l1.594,1.594a1.687,1.687,0,0,1,0,2.386L16.943,26.823A1.688,1.688,0,0,1,14.557,26.823Z' transform='translate(-0.398 -8.683)' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.drawer__accordion.open > .drawer__accordion-trigger::after {
  transform: translateY(-50%) rotate(180deg);
}
/* サブメニューはデフォルト非表示 */
.drawer__menu .drawer__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}
.drawer__accordion.open .drawer__submenu {
  display: block;
}
.drawer__menu .drawer__submenu li {
  padding-left: 1em;
}
.drawer__menu .drawer__submenu li a {
  font-size: 1.4rem;
  line-height: 2.75;
}
.drawer__menu .drawer__submenu li a:before {
  content: "-";
  padding-right: 0.5em;
}
.drawer__bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100vh;
  transition: 0.3s;
  transform: translateX(100%);
  opacity: 0.5;
  cursor: pointer;
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * Page
 * -------------------------------------------------------------------
 */
.page__title {
  width: 100%;
  margin-top: 10rem;
  background: linear-gradient(90deg, rgb(242, 113, 74), rgb(232, 154, 106));
  padding: 4rem 0;
  display: inline-block;
}
@media screen and (max-width: 820px) {
  .page__title {
    margin-top: 5rem;
    padding: 3rem 0;
  }
}
.page__title h1 {
  display: flex;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  font-family: "Lato";
  color: #ffffff;
  font-size: 4rem;
  letter-spacing: 0.1em;
}
.page__title h1 span {
  font-size: 1.6rem;
  color: #f2714a;
  padding: 0.5rem 1.5rem;
  background: #ffffff;
  margin-left: 2rem;
}
@media screen and (max-width: 820px) {
  .page__title h1 span {
    font-size: 1.2rem;
    padding: 0.1em 0.5em;
    margin-left: 1rem;
  }
}
@media screen and (max-width: 820px) {
  .page__title h1 {
    width: calc(100% - 3rem);
    margin: 0 auto;
    font-size: 2rem;
  }
}

.page__container {
  width: 1000px;
}
@media screen and (max-width: 820px) {
  .page__container {
    width: calc(100% - 6rem);
    margin: 0 auto;
  }
}

.page-copy {
  margin: 6rem auto;
}
@media screen and (max-width: 820px) {
  .page-copy {
    margin: 3rem auto;
  }
}
.page-copy__heading {
  max-width: 960px;
  margin: 0 auto 1em;
  color: #f2714a;
  font-size: 32px;
}
@media screen and (max-width: 820px) {
  .page-copy__heading {
    max-width: calc(100% - 3rem);
    font-size: 21px;
    text-align: center;
  }
}
.page-copy__container {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .page-copy__container {
    max-width: calc(100% - 3rem);
  }
}
.page-copy__container p {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 820px) {
  .page-copy__container p {
    font-size: 1.6rem;
    line-height: 1.7;
  }
}

.works-slider {
  width: 100%;
}
.works-slider .gallery {
  margin: 0 auto;
  padding: 0;
}
.works-slider .gallery .slick-slide {
  width: 640px;
}
@media screen and (max-width: 820px) {
  .works-slider .gallery .slick-slide {
    width: 300px;
  }
}
.works-slider .gallery .slick-slide a {
  overflow: hidden;
  border-radius: 1rem;
  position: relative;
  display: inline-block;
  background: #222222;
}
.works-slider .gallery .slick-slide a::after {
  content: "\f144";
  font-family: "Font Awesome 5 Free";
  font-weight: 300;
  font-size: 8rem;
  color: #fff;
  display: inline-block;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  text-shadow: 0 0 20px rgb(122, 122, 122);
  pointer-events: none;
}
.works-slider .gallery .slick-slide a img {
  transition: all 0.3s;
  opacity: 0.5;
}
.works-slider .gallery .slick-slide a img:hover {
  opacity: 1;
}
.works-slider .gallery .slick-slide {
  margin-right: 2vw !important;
  margin-left: 2vw !important;
}

/* 2403works追加 */
.works-message {
  width: 100%;
  max-width: 1000px;
  padding: 0;
  margin: 8rem auto;
}

@media screen and (max-width: 1000px) {
  .works-message {
    width: 100%;
    padding: 0;
    margin: 8rem auto;
  }
}
@media screen and (max-width: 820px) {
  .works-message {
    width: 100%;
    padding: 0;
    margin: 11.3vw auto;
  }
}
.works-message01,
.works-message02,
.works-message03 {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

@media screen and (max-width: 820px) {
  .works-message01,
  .works-message02,
  .works-message03 {
    max-width: calc(100% - 6rem);
    margin: 0 auto 6rem;
    padding-left: 0;
  }
}
.works-message04 {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.works-message04 h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 40px;
}

.works-message04 h2 span {
  font-size: 16px;
}

@media screen and (max-width: 820px) {
  .works-message__routine::after {
    right: 0;
    left: 10px;
    margin: 55px 0 0;
  }
}
.works-message__routine {
  width: 100%;
  position: relative;
  min-height: 1700px;
}

@media screen and (max-width: 1000px) {
  .works-message__routine {
    width: 350px;
    margin: 0 auto;
    position: relative;
    min-height: 1850px;
  }
}
.works-message__routine-inner {
  position: relative;
}

.works-message__routine-inner::after {
  position: absolute;
  right: 0;
  left: 0;
  margin: 80px auto 0;
  content: "";
  width: 2px;
  background-color: #e2e2e2;
  height: 1400px;
}

@media screen and (max-width: 1000px) {
  .works-message__routine-inner::after {
    right: 0;
    left: 10px;
    margin: 55px 0 0;
    height: 1565px;
  }
}
.works-message__routine-item {
  background-color: #fff;
  padding: 10px;
  width: 100%;
  max-width: 460px;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

@media screen and (max-width: 1000px) {
  .works-message__routine-item {
    width: calc(100% - 45px);
  }
}
@media screen and (max-width: 820px) {
  .works-cpc-message__routine::after {
    right: 0;
    left: 10px;
    margin: 55px 0 0;
  }
}
.works-cpc-message__routine {
  width: 100%;
  position: relative;
  min-height: 1000px;
}

@media screen and (max-width: 1000px) {
  .works-cpc-message__routine {
    width: 350px;
    margin: 0 auto;
    position: relative;
    min-height: 1050px;
  }
}
.works-cpc-message__routine-inner {
  position: relative;
}

.works-cpc-message__routine-inner::after {
  position: absolute;
  right: 0;
  left: 0;
  margin: 40px auto 0;
  content: "";
  width: 2px;
  background-color: #e2e2e2;
  height: 770px;
}

@media screen and (max-width: 1000px) {
  .works-cpc-message__routine-inner::after {
    right: 0;
    left: 10px;
    margin: 25px 0 0;
    height: 860px;
  }
}
.works-cpc-message__routine-item {
  background-color: #fff;
  padding: 10px;
  width: 100%;
  max-width: 460px;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

@media screen and (max-width: 1000px) {
  .works-cpc-message__routine-item {
    width: calc(100% - 45px);
  }
}

.routine__text {
  width: 100%;
}

.routine__stateimage .routine__text {
  max-width: 100%;
  width: calc(100% - 200px);
}

@media screen and (max-width: 1000px) {
  .routine__stateimage .routine__text {
    width: calc(100% - 130px);
  }
}
.routine__text p {
  font-size: 16px;
}

@media screen and (max-width: 1000px) {
  .routine__text p {
    font-size: 14px;
  }
}
.routine__text-header {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-bottom: 10px;
}

.routine__text-header p {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 1000px) {
  .routine__text-header p {
    font-size: 14px;
  }
}
.routine__time {
  display: inline-block;
  height: -moz-fit-content;
  height: fit-content;
  padding: 3px 15px;
  font-family: "Lato";
  font-size: 18px;
  color: #f2714a;
  border-radius: 20px;
  border: 2px solid #f2714a;
}

@media screen and (max-width: 1000px) {
  .routine__time {
    font-size: 14px;
    padding: 2px 10px;
  }
}
.routine__img {
  flex-basis: 200px;
}

@media screen and (max-width: 1000px) {
  .routine__img {
    flex-basis: 130px;
  }
}
.routine__right {
  position: absolute;
  top: 0;
  right: 0;
}

.routine__right:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 26px solid #fff;
}

.routine__right:after {
  content: "●";
  position: absolute;
  font-size: 16px;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -48px;
  color: #f2714a;
  z-index: 1;
}

.routine__left {
  position: absolute;
  top: 0;
  left: 0;
}

.routine__left:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 26px solid #fff;
  transform: rotate(180deg);
}

.routine__left:after {
  content: "●";
  position: absolute;
  font-size: 16px;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -48.8px;
  color: #f2714a;
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  .routine__left,
  .routine__right {
    top: 0;
    left: 35px;
    right: unset;
  }
  .routine__right:before,
  .routine__left:before {
    content: "";
    position: absolute;
    top: 50%;
    right: unset;
    left: -26px;
    margin-top: -13px;
    border: 13px solid transparent;
    border-right: 13px solid #fff;
    transform: unset;
  }
  .routine__right:after,
  .routine__left:after {
    content: "●";
    position: absolute;
    font-size: 14px;
    height: -moz-fit-content;
    height: fit-content;
    top: 0;
    bottom: 0;
    margin: auto;
    left: -30.5px;
    right: unset;
    color: #f2714a;
    z-index: 1;
  }
}
.routine__01 {
  top: 0;
}

.routine__02 {
  top: 135px;
}

.routine__03 {
  top: 243px;
}

.routine__04 {
  top: 335px;
}

.routine__05 {
  top: 425px;
}

.routine__06 {
  top: 535px;
}

.routine__07 {
  top: 660px;
}

.routine__08 {
  top: 775px;
}

.routine__09 {
  top: 835px;
}

.routine__10 {
  top: 995px;
}

.routine__11 {
  top: 1115px;
}

.routine__12 {
  top: 1205px;
}

.routine__13 {
  top: 1285px;
}

.routine__14 {
  top: 1365px;
}

.routine__15 {
  top: 1445px;
}

@media screen and (max-width: 1000px) {
  .routine__01 {
    top: 0;
  }
  .routine__02 {
    top: 135px;
  }
  .routine__03 {
    top: 281px;
  }
  .routine__04 {
    top: 378px;
  }
  .routine__05 {
    top: 482px;
  }
  .routine__06 {
    top: 621px;
  }
  .routine__07 {
    top: 778px;
  }
  .routine__08 {
    top: 860px;
  }
  .routine__09 {
    top: 943px;
  }
  .routine__10 {
    top: 1081px;
  }
  .routine__11 {
    top: 1224px;
  }
  .routine__12 {
    top: 1325px;
  }
  .routine__13 {
    top: 1412px;
  }
  .routine__14 {
    top: 1498px;
  }
  .routine__15 {
    top: 1594px;
  }
}
.works-message__words {
  width: 100%;
  position: relative;
}

@media screen and (max-width: 1000px) {
  .works-message__words {
    width: calc(100% - 3rem);
    margin: 0 auto;
  }
}
.works-message__words h3 {
  font-size: 22px;
  text-align: center;
}

.works-message__words dl {
  margin: 20px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 10px;
}

.works-message__words dt {
  width: 250px;
  background-color: #f8e5ca;
  font-weight: bold;
  padding: 15px;
  display: grid;
  align-items: center;
  font-size: 18px;
}

@media screen and (max-width: 1000px) {
  .works-message__words dt {
    width: 100%;
    text-align: center;
  }
}
.works-message__words dd {
  width: calc(100% - 260px);
  background-color: #fff;
  padding: 15px;
  font-size: 16px;
}

@media screen and (max-width: 1000px) {
  .works-message__words dd {
    width: 100%;
  }
}
.works-message .works-message__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 820px) {
  .works-message .works-message__item:nth-child(2n) {
    flex-wrap: wrap-reverse;
  }
}
.works-message .works-message__item .works-message__text {
  width: 480px;
  max-width: calc(100% - 450px);
}
@media screen and (max-width: 820px) {
  .works-message .works-message__item .works-message__text {
    max-width: 100%;
    margin-bottom: 3rem;
  }
}
.works-message .works-message__item .works-message__text h3 {
  font-size: 1.7rem;
  margin-bottom: 1em;
  color: #f2714a;
}
@media screen and (max-width: 820px) {
  .works-message .works-message__item .works-message__text h3 {
    font-size: 1.5rem;
  }
}
.works-message .works-message__item .works-message__text p {
  font-size: 1.4rem;
  line-height: 2;
}
.works-message__subtitle {
  display: block;
  color: #f2714a;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.3em;
}
.works-message .works-message__item .works-message__img {
  max-width: 430px;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  border-radius: 2rem;
}
@media screen and (max-width: 820px) {
  .works-message .works-message__item .works-message__img {
    margin-bottom: 0;
  }
}
.works-message .works-message__item.cpc-message01-02, .works-message .works-message__item.cpc-message01-03 {
  display: block;
}
.works-message .works-message__item.cpc-message01-02 .works-message__text, .works-message .works-message__item.cpc-message01-03 .works-message__text {
  width: 100%;
  max-width: 100%;
}
.works-message .works-message__item.cpc-message01-02 .works-message__text::after, .works-message .works-message__item.cpc-message01-03 .works-message__text::after {
  display: block;
  clear: both;
}
.works-message .works-message__item.cpc-message01-02 .works-message__img, .works-message .works-message__item.cpc-message01-03 .works-message__img {
  float: right;
  margin: 5px 0 20px 50px;
}
@media screen and (max-width: 820px) {
  .works-message .works-message__item.cpc-message01-02 .works-message__img, .works-message .works-message__item.cpc-message01-03 .works-message__img {
    width: 100%;
  }
}
.works-message .works-message__item.cpc-message01-03 h3 {
  font-size: 1.7rem;
  margin-bottom: 1em;
  color: #f2714a;
}
.works-message .cpc-top,
.works-message .cpc-message01,
.works-message .cpc-message02 {
  max-width: 960px;
}
@media screen and (max-width: 820px) {
  .works-message .cpc-top,
  .works-message .cpc-message01,
  .works-message .cpc-message02 {
    width: calc(100% - 6rem);
  }
}
.works-message .cpc-top .works-message__item,
.works-message .cpc-message01 .works-message__item,
.works-message .cpc-message02 .works-message__item {
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 820px) {
  .works-message .cpc-top .works-message__item,
  .works-message .cpc-message01 .works-message__item,
  .works-message .cpc-message02 .works-message__item {
    margin-bottom: 2.5rem;
  }
}
.works-message .cpc-top .works-message__item p,
.works-message .cpc-message01 .works-message__item p,
.works-message .cpc-message02 .works-message__item p {
  font-size: 1.6rem;
  line-height: 2.125;
}
@media screen and (max-width: 820px) {
  .works-message .cpc-top .works-message__item p,
  .works-message .cpc-message01 .works-message__item p,
  .works-message .cpc-message02 .works-message__item p {
    font-size: 1.4rem;
  }
}
.works-message .cpc-top .cpc-top02 {
  flex-wrap: wrap;
}
@media screen and (max-width: 820px) {
  .works-message .cpc-top .cpc-top02 {
    flex-wrap: wrap-reverse;
  }
}
.works-message .cpc-top .cpc-top04 .works-message__text {
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .works-message .cpc-top .cpc-top04 .works-message__text {
    margin-bottom: 0;
  }
}
.works-message .cpc-top .cpc-top04 .works-message__text-point h4 {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 1em;
}
.works-message .cpc-top .cpc-top04 .works-message__text-point h4:before {
  position: relative;
  content: "";
  width: 39px;
  height: 2px;
  background: #000;
}
.works-message .cpc-top .cpc-top04 .works-message__text-point p {
  margin-bottom: 1em;
}
.works-message .cpc-top .cpc-top05 .works-message__img {
  margin-bottom: 3rem;
}
.works-message .cpc-message01-02, .works-message .cpc-message01-03 {
  display: block;
}
.works-message .cpc-message01-02 .works-message__text, .works-message .cpc-message01-03 .works-message__text {
  width: 100%;
  max-width: 100%;
}
.works-message .cpc-message01-02 .works-message__text::after, .works-message .cpc-message01-03 .works-message__text::after {
  display: block;
  clear: both;
}
.works-message .cpc-message01-02 .works-message__img, .works-message .cpc-message01-03 .works-message__img {
  float: right;
  margin: 5px 0 20px 50px;
}
@media screen and (max-width: 820px) {
  .works-message .cpc-message01-02 .works-message__text {
    display: flex;
    flex-direction: column;
  }
}
.works-message .cpc-message01-02 .works-message__text .works-message__img {
  float: left;
  margin: 5px 50px 20px 0;
}
@media screen and (max-width: 820px) {
  .works-message .cpc-message01-02 .works-message__text .works-message__img {
    float: none;
    margin: 2rem auto 0;
  }
}
.works-message .cpc-message01-02 .image {
  order: 3;
}
.works-message .cpc-message01-02 .heading {
  order: 1;
}
.works-message .cpc-message01-02 .text01 {
  order: 2;
}
.works-message .cpc-message01-03 h3 {
  font-size: 1.7rem;
  margin-bottom: 1em;
  color: #f2714a;
}
@media screen and (max-width: 820px) {
  .works-message .cpc-message01-03 .works-message__text {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 820px) {
  .works-message .cpc-message01-03 .works-message__text .works-message__img {
    float: none;
    margin: 2rem auto 0;
  }
}
.works-message .cpc-message01-03 .image {
  order: 3;
}
.works-message .cpc-message01-03 .text01 {
  order: 1;
}
.works-message .cpc-message01-03 .text02 {
  order: 2;
}
@media screen and (max-width: 820px) {
  .works-message .cpc-message02-02 .works-message__text {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 820px) {
  .works-message .cpc-message02-02 .works-message__text .works-message__img {
    float: none;
    margin: 2rem auto 0;
  }
}
.works-message .cpc-message02-03 h3 {
  font-size: 1.7rem;
  margin-bottom: 1em;
  color: #f2714a;
}
@media screen and (max-width: 820px) {
  .works-message .cpc-message02-03 .works-message__text {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 820px) {
  .works-message .cpc-message02-03 .works-message__text .works-message__img {
    float: none;
    margin: 2rem auto 0;
  }
}
.works-message .cpc-message02-03 .image {
  order: 3;
}
.works-message .cpc-message02-03 .text01 {
  order: 1;
}
.works-message .cpc-message02-03 .text02 {
  order: 2;
}

.works-single__image {
  max-width: 640px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1rem;
}
@media screen and (max-width: 820px) {
  .works-single__image {
    max-width: calc(100% - 6rem);
    height: unset;
  }
}
.works-single__message {
  max-width: 960px;
  margin: 8rem auto;
}
@media screen and (max-width: 820px) {
  .works-single__message {
    max-width: calc(100% - 6rem);
    margin: 3rem auto 6rem;
    padding-left: 0;
  }
}
.works-single__message .works-message__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 820px) {
  .works-single__message .works-message__item:nth-child(2n) {
    flex-wrap: wrap-reverse;
  }
}
.works-single__message .works-message__item .works-message__text {
  max-width: calc(100% - 450px);
}
@media screen and (max-width: 820px) {
  .works-single__message .works-message__item .works-message__text {
    max-width: 100%;
    margin-bottom: 3rem;
  }
}
.works-single__message .works-message__item .works-message__text p {
  font-size: 1.4rem;
  line-height: 2;
}
.works-single__message .works-message__item .works-message__img {
  max-width: 430px;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  border-radius: 2rem;
}
@media screen and (max-width: 820px) {
  .works-single__message .works-message__item .works-message__img {
    margin-bottom: 3rem;
  }
}

.cpc-message__title {
  width: 960px;
  max-width: 960px;
  padding: 0.25em 0;
  margin: 0 auto 1em;
}
@media screen and (max-width: 820px) {
  .cpc-message__title {
    width: calc(100% - 6rem);
  }
}
.cpc-message__title span {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.7rem;
  color: #222;
  display: block;
}
@media screen and (max-width: 820px) {
  .cpc-message__title span {
    font-size: 1.5rem;
  }
}

.message-contents {
  max-width: 960px;
  margin: 8rem auto 16rem;
}
@media screen and (max-width: 820px) {
  .message-contents {
    width: calc(100% - 3rem);
    margin: 0 auto;
  }
}
.message-contents__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.message-contents__item h3 {
  font-size: 1.8rem;
  line-height: 2;
  margin: 0 0 1rem;
  border-bottom: solid 3px #f2714a;
  color: #f2714a;
  display: inline-block;
}
@media screen and (max-width: 820px) {
  .message-contents__item h3 {
    font-size: 1.6rem;
    line-height: 2;
    margin: 0 0 1rem;
    border-bottom: solid 2px #f2714a;
  }
}
.message-contents__item p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 0 0 1rem;
}
@media screen and (max-width: 820px) {
  .message-contents__item p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin: 0 0 2rem;
  }
}
.message-contents__item .sign {
  text-align: right !important;
  font-size: 1.6rem;
  line-height: 2;
  margin: 3rem 0;
}
@media screen and (max-width: 820px) {
  .message-contents__item .sign {
    text-align: right !important;
    font-size: 1.4rem;
    line-height: 2;
    margin: 3rem 0 6rem;
  }
}
@media screen and (max-width: 820px) {
  .message-contents__item {
    flex-wrap: wrap;
  }
}
.message-contents__text {
  max-width: calc(100% - 480px);
}
@media screen and (max-width: 820px) {
  .message-contents__text {
    max-width: 100%;
    margin: 0 auto 2rem;
  }
}
.message-contents__text p {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 820px) {
  .message-contents__text p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
.message-contents__img {
  max-width: 430px;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
  border-radius: 2rem;
}
@media screen and (max-width: 820px) {
  .message-contents__img {
    max-width: 430px;
    width: 100%;
    overflow: hidden;
  }
}
.message-contents__img img {
  width: 100%;
  border-radius: 1rem;
  margin: 0 0 2rem;
}

.service-contents {
  max-width: 960px;
  margin: 8rem auto 10rem;
}
@media screen and (max-width: 820px) {
  .service-contents {
    width: calc(100% - 3rem);
    margin: 2rem auto;
  }
}
.service-contents h2 {
  font-size: 2rem;
  padding: 1.5rem;
  color: #f2714a;
  border: 2px solid #f2714a;
  margin-bottom: 2rem;
}
@media screen and (max-width: 820px) {
  .service-contents h2 {
    font-size: 1.8rem;
    padding: 1rem;
  }
}
.service-contents h3 {
  font-size: 2rem;
  font-weight: 700;
  padding: 1.5rem;
  color: #f2714a;
  border-bottom: 2px solid #f2714a;
  margin-bottom: 2rem;
  border-left: 10px solid #f2714a;
  border-image: linear-gradient(#f2714a 0%, #E89A6A 100%);
  border-image-slice: 1;
  line-height: 1.4;
}
@media screen and (max-width: 820px) {
  .service-contents h3 {
    font-size: 1.6rem;
  }
}
.service-contents__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media screen and (max-width: 820px) {
  .service-contents__item {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
}
.service-contents__item-text {
  max-width: calc(100% - 340px);
}
@media screen and (max-width: 600px) {
  .service-contents__item-text {
    max-width: 100%;
    margin: 2rem auto 3rem;
    padding: 0;
  }
}
.service-contents__item-text p {
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 600px) {
  .service-contents__item-text p {
    font-size: 1.4rem;
  }
}
.service-contents__item-img {
  max-width: 320px;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .service-contents__item-img {
    max-width: 100%;
    width: 100%;
    border-radius: 1rem;
  }
}
.service-contents__item-img img {
  border-radius: 1rem;
}
@media screen and (max-width: 600px) {
  .service-contents__item-img img {
    display: block;
    margin: auto;
    /*width: 100%;*/
    border-radius: 1rem;
  }
}

.news-contents {
  max-width: 1000px;
  margin: 8rem auto 16rem;
  border-top: 1px solid #e2e2e2;
}
@media screen and (max-width: 430px) {
  .news-contents {
    width: calc(100% - 3rem);
    margin: 6rem auto 16rem;
  }
}
.news-contents section {
  border-bottom: 1px solid #e2e2e2;
  padding: 3rem;
}
@media screen and (max-width: 820px) {
  .news-contents section {
    padding: 2rem 0;
  }
}
.news-contents section span {
  color: #f2714a;
  line-height: 3;
}
.news-contents section p {
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 2;
}
.news-contents section a {
  line-height: 2;
  text-decoration: underline;
}

.recruit-contents {
  max-width: 960px;
  margin: 8rem auto 16rem;
}
@media screen and (max-width: 820px) {
  .recruit-contents {
    width: calc(100% - 3rem);
    margin: 2rem auto 16rem;
  }
}
.recruit-contents h2 {
  text-align: center;
  font-size: 2.4rem;
  padding: 3rem 0;
}
@media screen and (max-width: 820px) {
  .recruit-contents h2 {
    font-size: 1.8rem;
  }
}
.recruit-contents__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 1rem;
}
.recruit-contents__list dt {
  width: 25%;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e2e2;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .recruit-contents__list dt {
    width: 100%;
    border-bottom: 0;
  }
}
.recruit-contents__list dd {
  width: 75%;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e2e2;
  line-height: 1.7;
}
.recruit-contents__list dd p a {
  color: #226C72;
  text-decoration: underline;
}
@media screen and (max-width: 820px) {
  .recruit-contents__list dd {
    width: 100%;
  }
}
.recruit-contents__list ul {
  padding-left: 0;
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0;
}
.recruit-contents__list ul li {
  list-style: none;
}
.recruit-contents__flow {
  margin: 5rem 0 0;
}
.recruit-contents__flow-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin: 3rem auto 6rem;
}
@media screen and (max-width: 820px) {
  .recruit-contents__flow-list {
    width: 90%;
  }
}
.recruit-contents__flow-list li {
  position: relative;
  width: calc(25% - 5rem);
  border: 2px solid #f2714a;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: #f2714a;
}
@media screen and (max-width: 820px) {
  .recruit-contents__flow-list li {
    font-size: 1.6rem;
    width: calc(50% - 2rem);
    height: 10rem;
    margin: 0 0 3rem;
  }
}
.recruit-contents__flow-list li::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 2.5rem;
  color: #f2714a;
  display: inline-block;
  position: absolute;
  right: -4.3rem;
}
@media screen and (max-width: 820px) {
  .recruit-contents__flow-list li::after {
    right: -3rem;
  }
}
.recruit-contents__flow-list li:last-child::after {
  display: none;
}
@media screen and (max-width: 820px) {
  .recruit-contents__flow-list li:nth-child(2)::after {
    display: none;
  }
}
.recruit-contents__flow-button a {
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .recruit-contents__flow-button a {
    width: calc(100% - 6rem);
  }
}

.company-contents {
  max-width: 960px;
  margin: 8rem auto 16rem;
}
@media screen and (max-width: 820px) {
  .company-contents {
    width: calc(100% - 3rem);
    margin: 2rem auto 8rem;
  }
}
.company-contents h2 {
  text-align: center;
  font-size: 2.4rem;
  padding: 6rem 0 2rem;
}
@media screen and (max-width: 820px) {
  .company-contents h2 {
    font-size: 1.8rem;
  }
}
.company-contents__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /*border-top: 1px solid #e2e2e2;*/
  margin: 0 auto 0.5rem;
}
.company-contents__list dt {
  width: 25%;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid #e2e2e2;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .company-contents__list dt {
    width: 100%;
    border-bottom: 0;
    padding: 1.5rem;
  }
}
.company-contents__list dd {
  width: 75%;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid #e2e2e2;
  line-height: 1.7;
}
@media screen and (max-width: 820px) {
  .company-contents__list dd {
    width: 100%;
    padding: 0 1.5rem 1.5rem;
  }
}
.company-contents__list dd > ul {
  list-style: none;
  padding-left: 0;
  line-height: 1.7;
}
.company-contents__list dd > ul li > ul {
  padding-left: 2rem;
  list-style: none;
  line-height: 1.7;
}
.company-contents__access {
  padding: 3rem 1.5rem;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
}
.company-contents__access p {
  margin: 0 0 3rem;
  line-height: 2;
}
.company-contents__access-map {
  max-width: 600px;
  margin: 0 auto;
}

.policy-contents {
  max-width: 1000px;
  margin: 8rem auto 16rem;
  border-top: 1px solid #e2e2e2;
}
@media screen and (max-width: 820px) {
  .policy-contents {
    width: calc(100% - 3rem);
    margin: 6rem auto 8rem;
  }
}
.policy-contents section {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 3rem;
}
@media screen and (max-width: 820px) {
  .policy-contents section {
    padding: 0 1.5rem 3rem 1.5rem;
  }
}
.policy-contents section h2 {
  max-width: 960px;
  margin: 0 auto;
  font-size: 1.8rem;
  padding: 3rem 0;
}
.policy-contents section p {
  max-width: 960px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 1.7;
  word-break: break-all;
}
.policy-contents section p a {
  color: #226C72;
  text-decoration: underline;
}

.entry-contents {
  /*max-width: 1000px;*/
  margin: 8rem auto 0;
}

@media screen and (max-width: 820px) {
  .entry-contents {
    width: calc(100% - 3rem);
    margin: 3rem auto 0;
  }
}
.entry-contents section {
  padding-bottom: 3rem;
}

@media screen and (max-width: 820px) {
  .entry-contents section {
    padding: 0 1.5rem 3rem 1.5rem;
  }
}
.entry-contents section h2 {
  max-width: 960px;
  margin: 0 auto;
  font-size: 1.8rem;
  padding: 3rem 0;
}

.entry-contents section p {
  max-width: 960px;
  margin: 0 auto;
  font-size: 1.4rem;
  line-height: 2;
  word-break: break-all;
}

.top-heading__text-main {
  font-weight: 700;
  font-family: "Lato";
  font-size: 1.4rem;
  color: #f2714a;
}
.top-heading__text-sub {
  font-size: 1.8rem;
  color: #f2714a;
}

.top-nav {
  display: grid;
  place-items: center;
  background: linear-gradient(90deg, rgb(242, 113, 74), rgb(232, 154, 106));
  height: 100px;
}
.top-nav__container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-nav__title {
  color: #ffffff;
  font-weight: 600;
}
@media screen and (max-width: 820px) {
  .top-nav__title {
    display: none;
  }
}
.top-nav__link {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: calc(100% - 1.5rem);
  max-width: 660px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .top-nav__link {
    width: calc(100% - 3rem);
  }
  .top-nav__link li {
    width: calc(50% - 1rem);
  }
  .top-nav__link li .button02:after {
    width: 2.5rem;
    height: 1.125rem;
    right: 0.2rem;
  }
}

.top-copy {
  margin: 8rem 0 9rem;
}
@media screen and (max-width: 820px) {
  .top-copy {
    margin: 6rem 0 8rem;
  }
}
.top-copy__container {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .top-copy__container {
    width: calc(100% - 6rem);
    margin: 0 auto;
  }
}

.top-news {
  max-width: 1000px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  margin-bottom: 15rem;
}
@media screen and (max-width: 820px) {
  .top-news {
    width: calc(100% - 3rem);
    padding: 3rem 1.5rem 6rem;
    margin: 0 auto 8rem;
  }
}
.top-news__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 3rem 0 4rem;
  margin: 0;
}
.top-news__list dt {
  width: 20%;
  border-bottom: 1px solid #e2e2e2;
  padding: 2rem 1.5rem;
  font-family: "Lato";
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: #999;
}
@media screen and (max-width: 820px) {
  .top-news__list dt {
    width: 100%;
    border-bottom: 0;
    padding: 1.5rem 0 0 0;
  }
}
.top-news__list dd {
  width: 80%;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.top-news__list dd a {
  text-decoration: underline;
  color: #226C72;
}
.top-news__list dd a:hover {
  color: #2d74c1;
}
@media screen and (max-width: 820px) {
  .top-news__list dd {
    width: 100%;
    padding: 0 0 1.5rem 0;
  }
}
.top-news__button {
  display: grid;
  place-items: center;
  margin: 2rem 0 0;
}

.top-message{
  margin-bottom: 8rem;
}


.top-works {
  margin-bottom: 15rem;
}

@media screen and (max-width: 820px) {
    .top-message{
      padding-bottom: 3rem;
    }
    .top-message, .top-works {
        margin: 0 4vw 4rem;
        background: #FFF;
    }
}
/* ============================================
   共通コンポーネント: top-contents__container
   -right: 画像左・テキスト右 (top-message スタイル)
   -left : 画像右・テキスト左 (修正前 top-service スタイル)
   ============================================ */
.top-contents__container-right,
.top-contents__container-left {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
/* -right: img を左端に absolute 配置 */
.top-contents__container-right .top-contents__img {
  position: absolute;
  top: -5rem;
  left: 0;
  max-width: 430px;
  overflow: hidden;
  border-radius: 2rem;
  z-index: 1;
}
.top-contents__container-right .top-contents__text {
  width: 100%;
  margin-left: calc(100% - 630px);
  margin-top: 5rem;
  max-width: 630px;
  z-index: 0;
  background: #ffffff;
  padding: 3rem 4rem 4rem 9rem;
}
/* -left: img を右端に absolute 配置 */
.top-contents__container-left .top-contents__img {
  position: absolute;
  top: -5rem;
  right: 0;
  max-width: 430px;
  overflow: hidden;
  border-radius: 2rem;
  z-index: 1;
}
.top-contents__container-left .top-contents__text {
  width: 100%;
  margin-right: calc(100% - 630px);
  margin-top: 5rem;
  max-width: 630px;
  background: #ffffff;
  padding: 3rem 9rem 4rem 4rem;
  z-index: 0;
}
/* SP */
@media screen and (max-width: 820px) {
  .top-contents__container-right .top-contents__img,
  .top-contents__container-left .top-contents__img {
    position: relative;
    top: unset;
    left: unset;
    right: unset;
    width: calc(100% - 8vw);
    margin: 0 auto;
  }
  .top-message .top-contents__container-right .top-contents__img {
    margin: 0 auto 2rem;
  }
  .top-contents__container-right .top-contents__text,
  .top-contents__container-left .top-contents__text {
    width: calc(100% - 8vw);
    height: -moz-fit-content;
    height: fit-content;
    margin: 0 auto;
    padding: 2.5rem 0 0;
    background: unset;
  }
}

/* 共通: button / heading */
.top-message__button,
.top-works__button,
.top-service__button {
  margin: 2rem 0;
  display: grid;
  place-items: flex-start;
  gap: 2rem;
}
.top-contents__container-right .top-message__button,
.top-contents__container-right .top-works__button,
.top-contents__container-right .top-service__button {
  place-items: flex-end;
}
.top-message__button .button01,
.top-works__button .button01,
.top-service__button .button01 {
  padding: 0 1em;
}
.top-message__button .button01::after,
.top-works__button .button01::after,
.top-service__button .button01::after {
  top: 45%;
  right: -0.5em;
}
.top-message .top-heading,
.top-works .top-heading,
.top-service .top-heading {
  margin: 2rem 0;
}
.top-message .top-heading__text-main,
.top-works .top-heading__text-main,
.top-service .top-heading__text-main {
  margin-bottom: 1rem;
}

.top-message__text p,
.top-works__text p {
  line-height: 2;
  margin-bottom: 2em;
  word-break: break-all;
}
.top-works__intro {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4rem;
}
.top-works__lead {
  max-width: 500px;
  line-height: 2;
  margin-top: 1rem;
}
.top-works__item {
  padding: 2rem 0;
}
.top-works__item-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f2714a;
  margin-bottom: 2rem;
}
@media screen and (max-width: 820px) {
  .top-message__button .button01::after, .top-works__button .button01::after, .top-service__button .button01::after {
    top: 45%;
    right: -0.25em;
}
  .top-works__intro {
      padding: 1.5rem 4vw 3.5rem;
  }
  .top-works__item {
    padding:0 0 3rem;
  }
}
/* section 固有: top-service テキストエリア */
.top-service__text p {
  line-height: 2;
  margin-bottom: 2em;
}

.top-service {
  margin-bottom: 8rem;
}
@media screen and (max-width: 820px) {
  .top-service {
    margin: 0 4vw 4rem;
    background: #FFF;
  }
}
.top-service__intro {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 4rem;
}
.top-service__lead {
  max-width: 500px;
  line-height: 2;
  margin-top: 1rem;
}
.top-service__item {
  padding: 2rem 0;
}
.top-service__item-title {
  font-size: 2rem;
  font-weight: 700;
  color: #f2714a;
  margin-bottom: 2rem;
}
@media screen and (max-width: 820px) {
  .top-service__intro {
    padding: 1.5rem 4vw 3.5rem;
  }
  .top-service__item {
    padding: 0 0 3rem;
  }
}

@media screen and (max-width: 992px) {
  .top-nav__title {
    display: none;
  }
  .top-nav__link {
    width: calc(100% - 3rem);
  }
  .top-nav__link li {
    width: calc(50% - 1rem);
  }
  .top-copy__container {
    width: calc(100% - 6rem);
    margin: 0 auto;
  }
}
.drawer__menu .drawer__menu-icon {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 2rem auto;
  width: 100%;
  max-width: 150px;
}
.drawer__menu .drawer__menu-icon li:last-child a {
  border: none;
  line-height: 0;
  margin-top: 0;
}/*# sourceMappingURL=style.css.map */
/* =====================================
   FAQ
   ===================================== */
.faq-contents {
  max-width: 1000px;
  margin: 0 auto 8rem;
  padding: 0 2rem;
}
@media screen and (max-width: 820px) {
  .faq-contents {
    padding: 0 1.5rem;
    margin-bottom: 5rem;
  }
}

.faq-section {
  margin-bottom: 5rem;
}
@media screen and (max-width: 820px) {
  .faq-section {
    margin-bottom: 3rem;
  }
}

.faq-section__title {
  font-size: 2rem;
  font-weight: 700;
  padding: 1.5rem;
  color: #f2714a;
  border-bottom: 2px solid #f2714a;
  margin-bottom: 2rem;
  border-left: 10px solid #f2714a;
  border-image: linear-gradient(#f2714a 0%, #E89A6A 100%);
  border-image-slice: 1;
  line-height: 1.4;
}
@media screen and (max-width: 820px) {
  .faq-section__title {
    font-size: 1.6rem;
  }
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}


.faq-item__question {
  display: flex;
  align-items:start;
  width: 100%;
  padding: 1.8rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1.5rem;
}
@media screen and (max-width: 820px) {
  .faq-item__question {
    padding: 1.5rem 0;
    gap: 1rem;
  }
}

.faq-item__q-mark {
  color: #f2714a;
  font-size: 2.8rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  top: -0.1em;
}

.faq-item__q-text {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  color: #333333;
}
@media screen and (max-width: 820px) {
  .faq-item__q-mark {
  font-size: 2.2rem;
}
  .faq-item__q-text {
    font-size: 1.4rem;
  }
  .faq-item__chevron svg {
    width: 17px;
    height: 10px;
  }
}

.faq-item__chevron {
  flex-shrink: 0;
  color: #226C72;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
}

.faq-item__answer {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 0 0 0;
}

.faq-item.is-open .faq-item__answer {
  padding-bottom: 2rem;
}
@media screen and (max-width: 820px) {
  .faq-item__answer {
    gap: 1rem;
  }
}

.faq-item__a-mark {
  color: #999;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Lato", sans-serif;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.2rem;
}

.faq-item__a-text {
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #555555;
  padding-right: 3em;
}
@media screen and (max-width: 820px) {
  .faq-item__a-mark {
    font-size: 1.9rem;
  }
  .faq-item__a-text {
    font-size: 1.4rem;
  }
}

.footer-bottom__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-bottom__link {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  flex: 1;
  min-width: 0;
}

.footer-bottom__link li {
  border-right: 1px solid #222222;
  padding: 0 1.5rem;
  white-space: nowrap;
}

.footer-bottom__link li:first-child {
  padding-left: 0;
}

.footer-bottom__link li:last-child {
  border-right: 0;
}

.footer-bottom__copy {
  font-size: 1.2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.mentor-day-title {
  text-align: center;
}

.top-faq .top-works__intro {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.top-faq .top-heading {
  margin-bottom: 2rem;
}

.top-faq .top-heading__text-main {
  margin-bottom: 0.8rem;
}

.top-faq .top-works__lead {
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 2;
}

.top-faq .contents-maker-2-area {
  display: none;
}

.top-faq .top-news__button {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 820px) {
  .top-faq .top-works__intro {
    padding: 0 1.5rem;
  }

  .top-faq .top-heading {
    margin-bottom: 0.8rem;
  }

  .top-faq .top-works__lead {
    margin: 0 auto 2.5rem;
  }
}

.top-faq .top-works__lead {
  max-width: 500px;
  margin: 0 0 3rem;
  line-height: 2;
  text-align: left;
}

.text-member {
  color: #F2714A;
}

.text-mentor {
  color: #167C70;
}

.faq-item__chevron {
  flex-shrink: 0;
  color: #226C72;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
  transform-origin: center;
}

.faq-item__chevron svg {
  display: block;
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(0deg);
}

@media screen and (max-width: 820px) {
  .faq-item__chevron svg {
    width: 17px;
    height: 10px;
  }
}

@media screen and (max-width: 767px) {
    .footer-bottom__link {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-bottom__link li {
        width: 100%;
    }

    .footer-bottom__link a {
        display: inline-block;
        line-height: 1.6;
    }

    .footer-bottom__copy {
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer-bottom__container {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .footer-bottom__link {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100% !important;
        gap: 12px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .footer-bottom__link li {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    .footer-bottom__link a {
        display: block !important;
        width: 100% !important;
        line-height: 1.6 !important;
    }

    .footer-bottom__copy {
        margin-top: 20px !important;
        text-align: left !important;
        line-height: 1.6 !important;
    }
}