@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #fff;
}

.bg-green {
  background-color: #ddebe3;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

a,
p {
  font-size: clamp(1.5rem, 1.95vw, 1.8rem);
  font-weight: normal;
  line-height: 1.67;
  color: #333;
}

/*list 共通*/
.data-for-aidemlog {
  /* 独自ログ計測用 */
}

/* v-cloak処理 */
[v-cloak] {
  display: none;
}

.on1024 {
  display: none;
}

@media screen and (min-width: 1024px) {
  .on1024 {
    display: block;
  }
}

#app {
  overflow-x: clip;
}

/* tel */
@media screen and (min-width: 768px) {
  /* 電話番号　スマホのみ */
  a[href*='tel:'] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.fadeLeft,
.fadeRight,
.scroll-item {
  opacity: 0;
  transform: translateZ(0);
  will-change: transform, opacity;
}
/* ******************************************************* */

/* header */

/* ******************************************************* */
.wrapper-header {
  width: 100%;
  background-color: #fff;
}

.container-header {
  width: 95%;
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .container-header {
    padding-right: 25vw;
  }
}

/* logo */
.header-logo img {
  width: clamp(200px, 57.14vw, 300px);
  height: clamp(26px, 7.62vw, 40px);
}

@media screen and (min-width: 1024px) {
  .header-logo img {
    width: clamp(156px, 20.3125vw, 260px);
    height: clamp(20px, 2.656vw, 34px);
  }
}

.header-logo h2 {
  font-size: clamp(1.6rem, 4.57vw, 1.8rem);
  font-weight: bold;
  line-height: 1.75;
  color: #1a1a1a;
}

@media screen and (min-width: 1024px) {
  .header-logo h2 {
    font-size: clamp(1.4rem, 1.719vw, 2.2rem);
  }
}

/* nav */
.nav-content {
  display: flex;
  align-items: center;
  gap: 2.27vw;
}

.nav-content li {
  padding: 20px 0;
}

.nav-content > li {
  text-align: center;
}

.nav-content > li > a {
  display: block;
  width: 115px;
  font-weight: 600;
  line-height: 1.75;
  position: relative;
  transition: color 0.3s;
}

.nav-content > li > a::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #007e72;
  transition: transform 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

@media (hover: hover) {
  .nav-content li:hover > a,
  .nav-content li:focus-within > a {
    color: #007e72;
  }

  .nav-content li:hover > a::after,
  .nav-content li:focus-within > a::after {
    transform: scale(1, 1);
  }
}

.nav-content > li a span {
  font-size: 0.78em;
  font-weight: normal;
  color: #999;
}

/* btn-header-event */
.btn-header-event {
  position: fixed;
  top: 0;
  right: 2.5%;
  z-index: 30;
}

.btn-header-event a {
  width: clamp(168px, 21.875vw, 280px);
  height: 140px;
  background-color: #fbb13c;
  border-radius: 0 0 15px 15px;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (hover: hover) {
  .btn-header-event a:hover {
    background-color: #ffc15e;
  }
}

.btn-header-event a p {
  font-size: clamp(2.1rem, 2.8125vw, 3.6rem);
  font-weight: bold;
  line-height: 1;
  color: #333;
}

.btn-header-event a p span {
  font-size: 0.5em;
  line-height: 1.5;
}

/* nav-sub-content */
.nav-sub-content {
  position: absolute;
  top: 100%;
  left: -2.5%;
  width: 100dvw;
  height: auto;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
  z-index: 3;
}

.nav-company:hover #nav-company,
.nav-company:focus-within #nav-company,
.nav-work:hover #nav-work,
.nav-work:focus-within #nav-work,
.nav-qa:hover #nav-qa,
.nav-qa:focus-within #nav-qa {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* sub-content */
.sub-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20%;
}

#nav-work .sub-content {
  gap: 10%;
}

.sub-content li {
  text-align: left;
}

.sub-content li a {
  font-size: 1.8rem;
  font-weight: normal;
  position: relative;
}

.sub-content li a::before {
  content: '';
  background-image: url(../img/icon_nav-arrow_g.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

/* nav_sp */
.hamburger {
  width: 60px;
  height: 60px;
  background-color: #007e72;
  position: relative;
  cursor: pointer;
}

.hamburger p {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.hamburger-line {
  width: 36px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition:
    transform 0.3s ease,
    rotate 0.3s ease,
    opacity 0.3s ease;
  will-change: transform opacity;
}

.top-line {
  top: 25px;
}

.top-line.active {
  top: 39px;
  transform: translateX(-50%) rotate(45deg);
}

.mid-line {
  top: 35px;
}

.mid-line.active {
  top: 39px;
  transform: translateX(-50%) rotate(-45deg);
}

.bot-line {
  top: 45px;
}

.bot-line.active {
  opacity: 0;
}

.no-scroll {
  overflow: hidden;
}

/* container-sp-nav */
.container-sp-nav {
  width: 100dvw;
  min-height: 0;
  height: 0;
  position: fixed;
  top: 78px;
  left: 0;
  z-index: 5;
  background-color: #fff;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.inner-container_spnav {
  width: 90%;
  margin: 0 auto;
  padding: 30px 0;
  margin-bottom: 100px;
}

.btn-header-event_sp {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.btn-header-event_sp a {
  width: 300px;
  height: 100px;
  background-color: #fbb13c;
  border-radius: 10px;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (hover: hover) {
  .btn-header-event_sp a:hover {
    background-color: #ffc15e;
  }
}

.btn-header-event_sp a p {
  font-size: clamp(2.8rem, 3.516vw, 3.2rem);
  font-weight: bold;
  line-height: 1;
  color: #333;
  position: relative;
}

.btn-header-event_sp a p::after {
  content: '';
  background-image: url(../img/icon_nav-arrow_w.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 25%;
  right: 10px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
}

.btn-header-event_sp a p span {
  font-size: 0.7em;
  line-height: 1.5;
}

.nav-content_sp {
  position: relative;
  padding: 12px 0;
  border-top: 1px solid #333;
}

.nav-content_sp h3 {
  font-size: clamp(1.8rem, 4.18vw, 2.4rem);
  font-weight: bold;
  line-height: 1.2;
  color: #333;
  cursor: pointer;
}

.nav-content_sp h3 span {
  font-size: 0.8em;
  color: #999;
  padding-left: 10px;
}

.nav-content_sp div {
  display: block;
  overflow: hidden;
  height: 0;
}

.nav-content_sp a {
  display: block;
  width: fit-content;
  position: relative;
  padding-bottom: 5px;
  pointer-events: none;
}

.nav-content_sp .is-open a {
  pointer-events: auto;
}

.nav-content_sp p {
  font-size: clamp(1.6rem, 3.72vw, 2rem);
  font-weight: 500;
  color: #333;
  padding-top: 15px;
  padding-left: 15px;
}

.nav-content_sp a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  width: 100%;
  height: 2px;
  background-color: #007e72;
  transition: transform 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}

@media (hover: hover) {
  .nav-content_sp a:hover {
    color: #007e72;
  }

  .nav-content_sp a:hover::after {
    transform: scale(1, 1);
  }
}

.nav-sp-arrow {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  transform: rotate(0);
  transition: transform 0.3s ease;
}

.is-open_img {
  transform: rotate(90deg);
}

.border-b {
  border-bottom: 1px solid #333;
}

/* ******************************************************* */

/* index_top FV */

/* ******************************************************* */
.wrapper-fv {
  position: relative;
  height: 100%;
}

.white-space {
  display: none;
}

@media screen and (min-width: 768px) {
  .white-space {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 37px;
    background-color: #fff;
    z-index: 0;
  }
}

.img-fv {
  width: 100%;
  height: auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .img-fv {
    height: var(--box-height);
  }
}

.swiper-top {
  width: auto;
  height: 100%;
}

.slide-box {
  max-width: 1520px;
  width: auto;
  height: 100%;
  position: static;
}

@media screen and (min-width: 768px) {
  .slide-box {
    position: absolute;
    top: 0;
    right: 0;
    width: auto;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    z-index: 1;
  }
}

.img-fv img {
  width: 100dvw;
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .img-fv img {
    max-width: 1520px;
    width: 93vw;
    border-radius: 60px 0 0 0;
  }
}

/* news */
.container-news {
  max-width: 1100px;
  width: 100dvw;
  height: auto;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: static;
  transform: translateX(0);
  background-color: rgba(77, 77, 77);
  border-radius: 0;
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .container-news {
    width: 80vw;
    display: flex;
    align-items: center;
    flex-direction: row;
    position: absolute;
    top: clamp(350px, 48.63vw, 800px);
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(77, 77, 77, 0.8);
    border-radius: 20px;
    z-index: 2;
  }
}

.container-news div {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 15px;
  --bar-height: 0;
  position: relative;
  padding: 30px 0 0;
}

@media screen and (min-width: 768px) {
  .container-news div {
    width: 95%;
    gap: 10px;
    --bar-height: 0;
    position: relative;
    padding: 0 10px;
  }
}

.container-news h3 {
  font-size: clamp(1.6rem, 2.18vw, 2.4rem);
  font-weight: bold;
  color: #fff;
  white-space: nowrap;
  margin: 0 30px;
}

.container-news h3::after {
  content: '';
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 90%;
  height: 1px;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .container-news h3::after {
    top: 50%;
    left: clamp(80px, 18%, 140px);
    transform: translate(0, -50%);
    width: 4px;
    height: var(--bar-height);
  }
}

.container-news p,
.container-news a {
  font-size: clamp(1.4rem, 1.88vw, 1.6rem);
  font-weight: 500;
  color: #fff;
  padding-left: 15px;
}

@media screen and (min-width: 768px) {
  .container-news p,
  .container-news a {
    padding-left: 0;
  }
}

@media (hover: hover) {
  .container-news a:hover {
    text-decoration: underline;
  }
}

.fv-spacer {
  display: none;
}

@media screen and (min-width: 768px) {
  .fv-spacer {
    display: block;
    width: 100%;
    height: clamp(450px, 60.5vw, 920px);
  }
}

/* ******************************************************* */

/* intex_top EVENT/COMPANY/WORK */

/* ******************************************************* */
.wrapper-primary {
  width: 100%;
  margin: 80px auto;
  position: relative;
}

/* section-header */
.section-header {
  width: clamp(255px, 75.4vw, 620px);
  height: clamp(55px, 14.1vw, 100px);
  display: flex;
  align-items: center;
  position: absolute;
  top: 5%;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .section-header {
    width: clamp(620px, 80.9vw, 880px);
    height: 100px;
    top: 8%;
  }
}

.bg-ltor {
  left: 0;
  justify-content: flex-end;
  padding-right: clamp(40px, 14vw, 70px);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 85%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media screen and (min-width: 768px) {
  .bg-ltor {
    padding-right: 130px;
  }
}

.bg-rtol {
  right: 0;
  justify-content: flex-start;
  padding-left: clamp(40px, 14vw, 70px);
  background: linear-gradient(
    to left,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 1) 85%,
    rgba(255, 255, 255, 0) 100%
  );
}

@media screen and (min-width: 768px) {
  .bg-rtol {
    padding-left: 130px;
  }
}

.section-header h2 {
  font-size: clamp(2.6rem, 5.95vw, 6rem);
  font-weight: 800;
  line-height: 1.75;
  color: #666;
}

.section-header h2 span {
  font-size: 0.45em;
  font-weight: bold;
  color: #ccc;
  padding-left: 15px;
}

@media screen and (min-width: 768px) {
  .section-header h2 span {
    padding-left: 30px;
  }
}

/* flex-recruit */
.flex-recruit {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: clamp(70px, 22.16vw, 170px);
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .flex-recruit {
    flex-direction: row;
    padding-top: 170px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1200px) {
  .flex-recruit {
    padding-top: 120px;
    margin: 0;
  }
}

/* img-section */
.img-section {
  position: relative;
  overflow-x: hidden;
}

.img-section picture img {
  max-width: none;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateX(0);
}

.img-left-pos {
  width: 94%;
  margin: 0 auto 0 0;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .img-left-pos {
    width: 85%;
  }
}

.img-left-pos picture img {
  border-radius: 0 60px 0 0;
  display: block;
}

@media screen and (min-width: 768px) {
  .img-left-pos picture img {
    width: auto;
    height: 570px;
    transform: translateX(clamp(-770px, calc((100dvw - 1540px) * 0.88), -10px));
  }
}

.img-right-pos {
  width: 94%;
  margin: 0 0 0 auto;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .img-right-pos {
    width: 85%;
  }
}

.img-right-pos picture img {
  border-radius: 60px 0 0 0;
  display: block;
}

@media screen and (min-width: 768px) {
  .img-right-pos picture img {
    width: auto;
    height: 690px;
    margin-left: auto;
  }
}

.img-work-top {
  padding-top: 110px;
  z-index: 1;
}

@media screen and (min-width: 540px) {
  .img-work-top {
    padding-top: 170px;
  }
}

@media screen and (min-width: 768px) {
  .img-work-top {
    padding-top: 200px;
  }
}

.img-work-top picture img {
  max-width: 1100px;
  width: 90vw;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.img-recruit-top {
  position: relative;
  z-index: 1;
}

.img-recruit-top picture img {
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .img-recruit-top picture img {
    max-width: 550px;
  }
}

/* textbox */
.section-textbox {
  position: static;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  max-width: 520px;
  width: 90%;
  margin: 40px auto 20px;
  padding: 30px 0;
}

@media screen and (min-width: 768px) {
  .section-textbox {
    max-width: 520px;
    margin: 20px auto;
    padding: 30px 0;
  }
}

.left-pos {
  position: static;
}

@media screen and (min-width: 768px) {
  .left-pos {
    position: absolute;
    top: 28%;
    left: 19%;
  }
}

.right-pos {
  position: static;
}

@media screen and (min-width: 768px) {
  .right-pos {
    position: absolute;
    top: 28%;
    right: 19%;
  }
}

.work-textbox {
  background-color: rgba(255, 255, 255, 0.8);
  max-width: 1100px;
  width: 90vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: clamp(40px, 12.93vw, 90px) 15px 30px 15px;
  position: absolute;
  top: 65%;
  left: 0;
  right: 0;
  /* transform: translateX(-50%); */
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .work-textbox {
    background-color: #fff;
    align-items: flex-end;
    flex-direction: row;
    padding: clamp(95px, 12.5vw, 150px) 40px 40px 40px;
    top: 75%;
  }
}

.recruit-textbox {
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 90%;
  left: 0;
  right: 0;
  /* transform: translateX(-50%); */
  margin: 0 auto;
  padding-top: clamp(30px, 10.43vw, 80px);
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .recruit-textbox {
    background-color: #fff;
    position: static;
    padding-top: 30px;
    margin: 0;
    transform: translateX(0);
  }
}

.inner-textbox {
  width: 85%;
  margin: 0 auto;
}

.inner-textbox p {
  font-size: clamp(1.4rem, 3.1vw, 1.8rem);
  font-weight: normal;
  line-height: 1.67;
  color: #333;
  padding-bottom: 25px;
}

/* Work textbox */
.work-textbox .inner-textbox {
  width: auto;
  margin: 0;
}

.btn-more {
  display: flex;
  justify-content: center;
  width: clamp(280px, 90%, 350px);
  margin: 0 auto;
}

.btn-more a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: clamp(280px, 90%, 350px);
  height: 60px;
  background-color: #672a4e;
  margin-top: 0;
  transition: background-color 0.3s ease;
}

@media (hover: hover) {
  .btn-more a:hover {
    background-color: #853f68;
  }
}

@media screen and (min-width: 768px) {
  .btn-more a {
    margin-top: 30px;
  }
}

.btn-more a p {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
}

.btn-more a p::after {
  content: '';
  background-image: url(../img/icon_nav-arrow_w.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

/* bg-line */
.container-bg {
  position: absolute;
  z-index: -2;
}

.container-bg_event {
  top: 20%;
}

@media screen and (min-width: 540px) {
  .container-bg_event {
    top: 30%;
  }
}

@media screen and (min-width: 768px) {
  .container-bg_event {
    top: 50%;
  }
}

.container-bg_company {
  top: 20%;
}

@media screen and (min-width: 540px) {
  .container-bg_company {
    top: 27%;
  }
}

@media screen and (min-width: 768px) {
  .container-bg_company {
    top: 37%;
  }
}

.container-bg_work {
  top: 75%;
}

@media screen and (min-width: 540px) {
  .container-bg_work {
    top: 72%;
  }
}

@media screen and (min-width: 768px) {
  .container-bg_work {
    top: 72%;
  }
}

.container-bg_recruit {
  top: 79%;
}

@media screen and (min-width: 540px) {
  .container-bg_recruit {
    top: 79%;
  }
}

@media screen and (min-width: 768px) {
  .container-bg_recruit {
    top: 42%;
  }
}

.bg-left {
  left: 0;
}

.bg-right {
  right: 0;
}

.bg-line {
  max-width: 500px;
  width: 90vw;
  height: 500px;
  position: relative;
  overflow: hidden;
  z-index: -2;
}

@media screen and (min-width: 470px) {
  .bg-line {
    height: 540px;
  }
}

@media screen and (min-width: 768px) {
  .bg-line {
    width: 80vw;
    height: 400px;
  }
}

.container-bg_company .bg-line {
  height: 430px;
}

@media screen and (min-width: 470px) {
  .container-bg_company .bg-line {
    height: 510px;
  }
}

@media screen and (min-width: 768px) {
  .container-bg_company .bg-line {
    height: 400px;
  }
}

.container-bg_work .bg-line {
  height: 380px;
}

@media screen and (min-width: 470px) {
  .container-bg_work .bg-line {
    height: 400px;
  }
}

@media screen and (min-width: 768px) {
  .container-bg_work .bg-line {
    height: 440px;
  }
}

.container-bg_recruit .bg-line {
  height: 420px;
}

@media screen and (min-width: 470px) {
  .container-bg_recruit .bg-line {
    height: 520px;
  }
}

@media screen and (min-width: 768px) {
  .container-bg_recruit .bg-line {
    height: 400px;
  }
}

.left-line {
  background: linear-gradient(to right, rgba(0, 126, 114, 1) 55%, rgba(255, 255, 255, 0) 100%);
}

@media screen and (min-width: 768px) {
  .left-line {
    background: linear-gradient(to right, rgba(0, 126, 114, 1) 85%, rgba(255, 255, 255, 0) 100%);
  }
}

.right-line {
  background: linear-gradient(to left, rgba(0, 126, 114, 1) 55%, rgba(255, 255, 255, 0) 100%);
}

@media screen and (min-width: 768px) {
  .right-line {
    background: linear-gradient(to left, rgba(0, 126, 114, 1) 85%, rgba(255, 255, 255, 0) 100%);
  }
}

.bg-img_l {
  background-image: url(../img/bg-line_l.webp);
  background-position: left;
  background-repeat: no-repeat;
  background-size: contain;
  width: 500px;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.bg-img_r {
  background-image: url(../img/bg-line_r.webp);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  width: 500px;
  height: 400px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

/* ******************************************************* */

/* intex_top MOVIE */

/* ******************************************************* */
.container-movie {
  width: clamp(300px, 91.67vw, 700px);
  margin: 100px auto 50px;
  background-color: #fff;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  padding: 50px 0;
}

@media screen and (min-width: 768px) {
  .container-movie {
    width: clamp(704px, 91.67vw, 1100px);
    margin: 150px auto 100px;
    height: 420px;
  }
}

.inner-movie {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  gap: 35px;
}

@media screen and (min-width: 768px) {
  .inner-movie {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 35px;
  }
}

.inner-movie iframe {
  width: clamp(280px, 80vw, 560px) !important;
  height: clamp(158px, 45.14vw, 315px) !important;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .inner-movie iframe {
    width: clamp(350px, 46.67vw, 560px) !important;
    height: clamp(200px, 26.25vw, 315px) !important;
  }
}

.movie-right div {
  position: absolute;
  top: 15px;
  right: 35px;
}

@media screen and (min-width: 768px) {
  .movie-right div {
    position: static;
  }
}

.movie-right h2 {
  font-size: clamp(3.4rem, 8.5vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.075em;
  color: #004cbc;
  margin-bottom: 40px;
  padding-left: 35px;
  padding-bottom: 20px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .movie-right h2 {
    font-size: clamp(3.4rem, 4.6vw, 7rem);
    margin-bottom: 40px;
    padding-left: 35px;
    padding-bottom: 20px;
  }
}

.movie-right h2 span {
  font-size: 0.4em;
  font-weight: normal;
  letter-spacing: 0.025em;
  padding-left: 30px;
}

.movie-right h2::after {
  content: '';
  width: calc(100% + clamp(35px, 4.58vw, 55px));
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, #39b59b 50%, #004cbc 100%);
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

.movie-right picture img {
  max-width: 500px;
  margin-top: clamp(50px, 12.5vw, 80px);
}

@media screen and (min-width: 768px) {
  .movie-right picture img {
    max-width: 400px;
    margin-top: 0;
  }
}

.bg-img_b {
  background-image: url(../img/bg-line_b.webp);
  background-position: right;
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(200px, 65.2vw, 500px);
  height: clamp(165px, 54.76vw, 420px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .bg-img_b {
    background-image: url(../img/bg-line_b.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 500px;
    height: 420px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
  }
}

.bg-img_b-top {
  display: block;
  background-image: url(../img/bg-line_b-top.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(150px, 44.87vw, 340px);
  height: clamp(88px, 26.41vw, 200px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media screen and (min-width: 768px) {
  .bg-img_b-top {
    display: none;
  }
}
/* ******************************************************* */

/* intex_top adjustment spacer */

/* ******************************************************* */
.adjustment-spacer {
  width: 100%;
  height: 200px;
}

@media screen and (min-width: 768px) {
  .adjustment-spacer {
    height: 170px;
  }
}

.spacer {
  width: 100%;
  height: 360px;
}

@media screen and (min-width: 768px) {
  .spacer {
    height: 100px;
  }
}

/* ========================================================================== */

/* breadcrumbs */

/* ========================================================================== */
#breadcrumbs {
  position: relative;
}

.breadcrumbs-container {
  max-width: 1180px;
  width: 90%;
  margin: 0 auto 15px;
}

@media screen and (min-width: 1280px) {
  .breadcrumbs-container {
    width: 100%;
    margin: 0 auto 10px;
  }
}

.breadcrumbs-flex {
  width: 75vw;
  display: flex;
  align-items: center;
}

.breadcrumbs-flex a,
.breadcrumbs-flex span,
.breadcrumbs-flex p {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  color: #333;
}

@media screen and (min-width: 768px) {
  .breadcrumbs-flex a,
  .breadcrumbs-flex span,
  .breadcrumbs-flex p {
    font-size: 1.2rem;
  }
}

.breadcrumbs-flex a,
.breadcrumbs-flex p {
  min-width: 35px;
}

@media screen and (min-width: 768px) {
  .breadcrumbs-flex a,
  .breadcrumbs-flex span,
  .breadcrumbs-flex p {
    font-size: 1.5rem;
  }
}

.breadcrumbs-flex a {
  transition:
    background-color 0.4s ease,
    color 0.4s ease;
  -webkit-tap-highlight-color: transparent; /* タップ時のハイライト色を無効化（iOS対策） */
}

.breadcrumbs-flex a:hover:active {
  background-color: rgba(0, 122, 255, 0.1);
  color: #222;
  border-radius: 4px;
}

/* hover時css */
@media (hover: hover) {
  .breadcrumbs-flex a:hover {
    text-decoration: underline;
  }
}

@media screen and (min-width: 768px) {
  .breadcrumbs-flex a {
    white-space: normal;
  }
}

.breadcrumbs-flex span {
  margin: 0 5px;
}

/* ******************************************************* */

/* btn-top */

/* ******************************************************* */
.btn-top {
  position: absolute;
  bottom: -15px;
  right: 5%;
}

@media screen and (min-width: 1280px) {
  .btn-top {
    bottom: -10px;
  }
}

.btn-top a {
  opacity: 1;
  transition: opacity 0.3s;
}

@media (hover: hover) {
  .btn-top a:hover {
    opacity: 0.8;
  }
}

.btn-top a img {
  width: 50px;
  height: auto;
}

@media screen and (min-width: 768px) {
  .btn-top a img {
    width: 100px;
  }
}

/* ========================================================================== */

/* footer */

/* ========================================================================== */
.wrapper-footer {
  width: 100%;
  background-color: #f2f2f2;
  padding: 50px 0;
}

@media screen and (min-width: 768px) {
  .wrapper-footer {
    padding: 150px 0 100px;
  }
}

.container-footer {
  width: 80%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .container-footer {
    width: 90%;
  }
}

.footer-information > img {
  width: 300px;
  height: 40px;
}

.grid-footer {
  display: grid;
  justify-content: center;
  grid-template-areas:
    'area1'
    'area2'
    'area3'
    'area4'
    'area5';
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  column-gap: clamp(10px, 5.5vw, 40px);
  row-gap: 30px;
}

@media screen and (min-width: 540px) {
  .grid-footer {
    grid-template-areas:
      'area1 area1'
      'area2 area3'
      'area4 area5';
    grid-template-columns: repeat(2, 1fr);
    column-gap: clamp(40px, 5.5vw, 90px);
    row-gap: 50px;
  }
}

@media screen and (min-width: 768px) {
  .grid-footer {
    grid-template-areas:
      'area1 area1 area1 area1'
      'area2 area3 area4 area5';
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 10px;
  }
}

@media screen and (min-width: 1280px) {
  .grid-footer {
    grid-template-columns: 350px 1fr 1fr 1fr 1fr;
    justify-content: space-between;
    grid-template-areas: none;
    column-gap: 4vw;
    row-gap: initial;
  }
}

.company-info {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

@media screen and (min-width: 768px) {
  .company-info {
    align-items: normal;
    gap: 0;
  }
}

.company-info div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.company-info p {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.75;
  color: #333;
  text-align: center;
}

.company-info a {
  font-size: clamp(1.7rem, 3.95vw, 2rem);
  font-weight: 600;
  line-height: 1.75;
  color: #333;
}

.social-icon {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .social-icon {
    justify-content: flex-start;
    margin-top: 40px;
  }
}

.social-icon a:first-of-type img {
  width: 90px;
  height: 20px;
}

.social-icon a:last-of-type img {
  width: 30px;
  height: 30px;
}

.footer-information {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-information:first-of-type {
  align-items: center;
}

@media screen and (min-width: 540px) {
  .footer-information {
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .footer-information {
    align-items: flex-start;
  }
}

.footer-information h4 {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.75;
  color: #333;
  margin-bottom: 15px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .footer-information h4 {
    margin-bottom: 25px;
  }
}

.footer-information h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80vw;
  height: 1px;
  background-color: #999;
}

@media screen and (min-width: 540px) {
  .footer-information h4::after {
    width: 100%;
  }
}

.footer-information h4 span {
  font-size: 0.875em;
  padding-left: 10px;
}

.footer-information a p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-top: 15px;
  transition: color 0.3s;
}

@media (hover: hover) {
  .footer-information a p:hover {
    text-decoration: underline;
    color: #007e72;
  }
}

.footer-item1 {
  grid-area: area1;
  position: relative;
}

.footer-item2 {
  grid-area: area2;
}

.footer-item3 {
  grid-area: area3;
}

.footer-item4 {
  grid-area: area4;
}

.footer-item5 {
  grid-area: area5;
}

@media screen and (min-width: 1280px) {
  .footer-item1,
  .footer-item2,
  .footer-item3,
  .footer-item4,
  .footer-item5 {
    grid-area: unset;
  }
}

/* tel */
@media screen and (min-width: 768px) {
  /* 電話番号　スマホのみ */
  a[href*='tel:'] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* tel-icon */
.before-tel-icon::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 13px;
  background-image: url(../img/tel-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: center;
  padding-right: 2px;
}

/* footer-bottom */
.footer-bottom {
  width: 100%;
  padding: 10px 0;
  background-color: #4d4d4d;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: #fff;
}

/* ******************************************************* */

/* main-visual */

/* ******************************************************* */
.container-main {
  width: 100%;
  position: relative;
  background-color: #007e72;
  padding: 0 0 20px;
  background-image: url(../img/bg-line_lw.webp);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 200px;
}

@media screen and (min-width: 768px) {
  .container-main {
    padding: 100px 0 20px;
    background-size: 400px;
  }
}

.container-main_d {
  width: 100%;
  position: relative;
  background-color: #ddebe3;
  padding: 0 0 20px;
  background-repeat: no-repeat, no-repeat;
  background-position:
    bottom left,
    bottom right 10%;
  background-size:
    200px,
    180px 120px;
  background-blend-mode: screen, normal;
}

@media screen and (min-width: 768px) {
  .container-main_d {
    padding: 100px 0 20px;
    background-size:
      400px,
      350px 250px;
  }
}

/* category event */
.container-main_ed {
  background-image: url(../img/bg-line_lw.webp), url(../img/bg-tire.webp);
}

/* content narration */
.container-main_ed_nar {
  background-image: url(../img/bg-line_lw.webp), url(../img/bg-bus.webp);
  background-size:
    200px,
    clamp(100px, 20.86vw, 160px) clamp(71px, 14.86vw, 114px);
}

@media screen and (min-width: 768px) {
  .container-main_ed_nar {
    background-size:
      400px,
      clamp(200px, 25.9vw, 350px) clamp(142px, 18.5vw, 250px);
  }
}

/* category company */
.container-main_cd {
  background-image: url(../img/bg-line_lw.webp), url(../img/bg-build.webp);
}

.container-main_cd_off {
  background-image: url(../img/bg-line_lw.webp), url(../img/bg-bus-office.webp);
}

/* category work */
.container-main_dd {
  background-image: url(../img/bg-line_lw.webp), url(../img/bg-workday.webp);
}

.container-main_wd {
  background-image: url(../img/bg-line_lw.webp), url(../img/bg-voice.webp);
}

/* category inquiry */
.container-main_id {
  background-image: url(../img/bg-line_lw.webp), url(../img/bg-faq.webp);
}

.container-main_fd {
  background-image: url(../img/bg-line_lw.webp), url(../img/bg-family.webp);
}

/* main-header */
.main-header {
  width: clamp(200px, 51.28vw, 450px);
  height: clamp(80px, 20.51vw, 100px);
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 5vw;
  left: 0;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .main-header {
    width: clamp(450px, 53.66vw, 960px);
    height: clamp(100px, 13.02vw, 170px);
    background-color: #fff;
    position: relative;
    top: 0;
    z-index: 1;
  }
}

.main-header_r {
  width: clamp(300px, 66.28vw, 500px);
  height: clamp(70px, 20.51vw, 100px);
}

@media screen and (min-width: 768px) {
  .main-header_r {
    width: clamp(450px, 71.66vw, 1060px);
    height: clamp(100px, 13.02vw, 170px);
  }
}

.main-header_d {
  width: clamp(310px, 69.28vw, 550px);
  height: auto;
  min-height: 70px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px 10px 10px 0;
}

@media screen and (min-width: 768px) {
  .main-header_d {
    width: clamp(470px, 81.39vw, 1070px);
    height: auto;
    min-height: 100px;
    padding: 15px 10px 15px 0;
  }
}

.main-header h1 {
  font-size: clamp(2.2rem, 5.9vw, 7.2rem);
  font-weight: 800;
  line-height: 1.4;
  color: #274c77;
}

.main-header_r h1 {
  font-size: clamp(2rem, 4.28vw, 6rem);
}

.main-header_d h1 {
  font-size: clamp(2rem, 4.4vw, 5.6rem);
  line-height: 1.1;
}

.main-header h1::after {
  content: '';
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #274c77;
}

@media screen and (min-width: 540px) {
  .main-header h1::after {
    top: 65%;
  }
}

.main-header_r h1::after {
  top: 57%;
}

@media screen and (min-width: 540px) {
  .main-header h1::after {
    top: 60%;
  }
}

@media screen and (min-width: 768px) {
  .main-header h1::after {
    top: 65%;
  }
}

.main-header_d h1::after {
  top: 58%;
}

@media screen and (min-width: 540px) {
  .main-header_d h1::after {
    top: 60%;
  }
}

@media screen and (min-width: 768px) {
  .main-header_d h1::after {
    top: 65%;
  }
}

.other-header_d h1::after {
  top: 66%;
}

@media screen and (min-width: 540px) {
  .other-header_d h1::after {
    top: 71%;
  }
}

@media screen and (min-width: 768px) {
  .other-header_d h1::after {
    top: 73%;
  }
}

.main-header span {
  font-size: clamp(1.3rem, 2.13vw, 2.6rem);
  font-weight: bold;
  color: #ccc;
  padding-top: 6px;
}

.main-header_d span {
  padding-top: 12px;
}

.main-header h1,
.main-header span {
  padding-left: 15%;
}

@media screen and (min-width: 768px) {
  .main-header h1,
  .main-header span {
    padding-left: 25%;
  }
}

.main-header_d h1,
.main-header_d span {
  padding-left: 3%;
}

@media screen and (min-width: 768px) {
  .main-header_d h1,
  .main-header_d span {
    padding-left: 20%;
  }
}

.main-img {
  position: static;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .main-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
  }
}

.main-img img {
  max-width: none;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateX(0);
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .main-img img {
    width: auto;
    height: 100%;
    border-radius: 60px 0 0 0;
    transform: translateX(clamp(10px, calc((100dvw - 1520px) * -0.6), 770px));
  }
}

.main-img_d img {
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .main-img_d img {
    border-radius: 0 0 0 60px;
  }
}

.spacer_d {
  width: 100%;
  height: 0;
}

@media screen and (min-width: 768px) {
  .spacer_d {
    height: 300px;
  }
}

.spacer_d_nar {
  width: 100%;
  height: 0;
}

@media screen and (min-width: 768px) {
  .spacer_d_nar {
    height: 460px;
  }
}

.lead-text {
  max-width: 100dvw;
  width: 85%;
  padding-left: 0;
  margin: 50px auto;
}

@media screen and (min-width: 768px) {
  .lead-text {
    max-width: calc(43.8vw + 2.665%);
    padding-left: 4.665%;
    margin: 50px 0;
  }
}

@media screen and (min-width: 1200px) {
  .lead-text {
    max-width: calc(clamp(430px, 28.29vw, 540px) + 12.665%);
    padding-left: 12.665%;
  }
}

.lead-text p {
  font-size: clamp(1.6rem, 2.08vw, 1.8rem);
  font-weight: 500;
  color: #fff;
}

.lead-text_d {
  max-width: 100dvw;
  width: 85%;
  margin: 50px auto;
  padding-left: 10px;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .lead-text_d {
    margin: 50px auto 120px 0;
  }
}

.lead-text_d p {
  font-size: clamp(1.4rem, 2.08vw, 1.8rem);
  font-weight: 500;
  color: #333;
}

/* ******************************************************* */

/* list_top anker */

/* ******************************************************* */
.wrapper-anker,
.wrapper-charm,
.wrapper-lead,
.wrapper-space,
.wrapper-support,
.wrapper-office {
  width: 100%;
  background-color: #fff;
  background-image: url(../img/bg-line_gw.webp);
  background-repeat: repeat;
  background-position: left top;
  background-size: 200px;
}

.wrapper-charm {
  padding-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .wrapper-charm {
    padding-bottom: 70px;
  }
}

.container-anker {
  max-width: 1060px;
  width: 95%;
  margin: 0 auto;
  padding: 50px 0;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-template-areas: 'area1 area1 area2 area2 area3 area3' 'area4 area4 area4 area5 area5 area5';
  column-gap: 6px;
  row-gap: 10px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .container-anker {
    width: 80%;
    padding: 200px 0 150px;
    column-gap: clamp(15px, 1.95vw, 30px);
    row-gap: 30px;
  }
}

.card-anker_s {
  width: clamp(100px, 28.65vw, 220px);
  height: clamp(100px, 23.26vw, 140px);
  background-color: #9a879d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .card-anker_s {
    width: clamp(140px, 25vw, 330px);
    height: 180px;
    flex-direction: row-reverse;
    gap: clamp(5px, 0.65vw, 10px);
  }
}

.card-anker_s p {
  font-size: clamp(1.5rem, 3.49vw, 2.4rem);
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .card-anker_s p {
    font-size: clamp(1.7rem, 2.27vw, 3rem);
  }
}

.card-anker_s p span {
  font-size: 0.85em;
}

@media screen and (min-width: 768px) {
  .card-anker_s p span {
    font-size: 0.75em;
  }
}

.card-anker_s img {
  width: auto;
  height: clamp(30px, 6.97vw, 50px);
}

@media screen and (min-width: 768px) {
  .card-anker_s img {
    height: 50px;
  }
}

.card-anker_m {
  width: clamp(160px, 44.27vw, 340px);
  height: clamp(50px, 11.11vw, 100px);
  background-color: #9a879d;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 6px;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  .card-anker_m {
    width: clamp(295px, 38.63vw, 510px);
    height: 150px;
    padding: 0 10px;
  }
}

.card-anker_m p {
  font-size: clamp(1.5rem, 3.49vw, 2.4rem);
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .card-anker_m p {
    font-size: clamp(2.4rem, 3.18vw, 4.2rem);
  }
}

.card-anker_m img {
  width: auto;
  height: clamp(30px, 6.97vw, 50px);
}

@media screen and (min-width: 768px) {
  .card-anker_m img {
    height: 100px;
  }
}

.anker-item01 {
  grid-area: area1;
}

.anker-item02 {
  grid-area: area2;
}

.anker-item03 {
  grid-area: area3;
}

.anker-item04 {
  grid-area: area4;
}

.anker-item05 {
  grid-area: area5;
}

.anker-item06 {
  grid-area: area6;
}

.anker-item01,
.anker-item02,
.anker-item03,
.anker-item04,
.anker-item05,
.anker-item06 {
  transition: background-color 0.3s;
}

@media (hover: hover) {
  .anker-item01:hover,
  .anker-item02:hover,
  .anker-item03:hover,
  .anker-item04:hover,
  .anker-item05:hover,
  .anker-item06:hover {
    background-color: #b2a4b4;
  }
}

/* ******************************************************* */

/* list_top event */

/* ******************************************************* */
.f2f-heading {
  width: 95%;
  margin: 0 auto;
  background-color: #666;
  border-radius: 25px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .f2f-heading {
    width: 85%;
  }
}

.f2f-heading p {
  font-size: clamp(1.3rem, 3.26vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  padding: 4px;
}

@media screen and (min-width: 768px) {
  .f2f-heading p {
    padding: 10px 0;
  }
}

.container-f2f {
  width: 95%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: clamp(10px, 2.33vw, 30px);
  margin: 20px auto 0;
}

@media screen and (min-width: 768px) {
  .container-f2f {
    flex-direction: row;
    gap: clamp(32px, 4.17vw, 50px);
    margin: 50px auto 0;
  }
}

.card-place {
  width: clamp(330px, 95%, 700px);
  height: 70px;
  background-color: #274c77;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .card-place {
    width: 280px;
    height: 240px;
    flex-direction: column;
    padding: 35px 0;
  }
}

.card-place:last-of-type {
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .card-place:last-of-type {
    padding: 25px 0 35px;
  }
}

.card-place h3 {
  font-size: clamp(1.8rem, 4.18vw, 2.4rem);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .card-place h3 {
    font-size: clamp(2.2rem, 3vw, 3.6rem);
  }
}

.card-place h3 span {
  font-size: 0.67em;
}

.card-place a {
  display: inline-block;
  background-color: #fff;
  padding: 10px 30px 10px 15px;
  transition: background-color 0.3s;
}

@media screen and (min-width: 768px) {
  .card-place a {
    padding: 15px 45px 15px 30px;
  }
}

@media (hover: hover) {
  .card-place a:hover {
    background-color: #cdd5df;
  }
}

.card-place a p {
  font-size: clamp(1.4rem, 3.25vw, 1.8rem);
  font-weight: normal;
  line-height: 1.2;
  color: #274c77;
  position: relative;
}

@media screen and (min-width: 768px) {
  .card-place a p {
    font-size: clamp(1.6rem, 1.91vw, 2.3rem);
  }
}

.card-place a p::after {
  content: '';
  background-image: url(../img/icon_arrow_b.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
}

@media screen and (min-width: 768px) {
  .card-place a p::after {
    right: -30px;
    width: 25px;
    height: 25px;
  }
}

/* ******************************************************* */

/* wrapper-common */

/* ******************************************************* */
.wrapper-common {
  margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
  .wrapper-common {
    margin-bottom: 100px;
  }
}

.common-heading {
  width: 100%;
  padding: 35px 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .common-heading {
    padding: 60px 0;
  }
}

.inner-heading {
  max-width: 1280px;
  padding-left: 4.665%;
  display: flex;
  gap: 10px;
}

@media screen and (min-width: 540px) {
  .inner-heading {
    padding-left: 12.665%;
    gap: 20px;
  }
}

.common-heading img {
  width: auto;
  height: clamp(30px, 6.97vw, 50px);
  align-self: center;
}

@media screen and (min-width: 768px) {
  .common-heading img {
    height: 50px;
  }
}

.common-heading h2 {
  font-size: clamp(2.2rem, 5.12vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #007e72;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .common-heading h2 {
    font-size: clamp(3.4rem, 4.5vw, 5.4rem);
    line-height: 1.3;
  }
}

.common-heading .real-session {
  font-size: clamp(2.2rem, 5.12vw, 3.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #007e72;
  line-height: 1;
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .common-heading .real-session {
    font-size: clamp(3.4rem, 4.5vw, 5.4rem);
    padding-bottom: 18px;
  }
}

@media screen and (min-width: 1220px) {
  .common-heading .real-session {
    line-height: 1.3;
  }
}

.common-heading h2::after {
  content: '';
  position: absolute;
  top: 80%;
  left: 0;
  max-width: 1200px;
  width: 90vw;
  height: 1px;
  background-color: #007e72;
}

@media screen and (min-width: 768px) {
  .common-heading h2::after {
    top: 72%;
    width: 90vw;
  }
}

@media screen and (min-width: 1200px) {
  .common-heading h2::after {
    width: 85vw;
  }
}

.common-heading h2 span {
  font-size: 0.61em;
  font-weight: 500;
  letter-spacing: 0.025em;
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .common-heading h2 span {
    font-size: 0.41em;
    padding-left: 15px;
  }
}

.head-bg-space {
  width: 100%;
  height: 170px;
  background-color: #cce5e3;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url(../img/bg-line_rw.webp);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 190px;
}

@media screen and (min-width: 768px) {
  .head-bg-space {
    height: 260px;
    background-size: 500px;
  }
}

.bg-bus-trial {
  height: 120px;
}

@media screen and (min-width: 768px) {
  .bg-bus-trial {
    height: 260px;
  }
}

.container-box-common {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  padding: 10px 0;
  border-radius: 30px 30px 0 0;
  box-shadow: 6px 6px 8px rgba(147, 147, 147, 0.6);
  position: relative;
}

@media screen and (min-width: 768px) {
  .container-box-common {
    padding: 50px 0;
    border-radius: 60px 60px 0 0;
  }
}

.align-center {
  align-items: center;
}

.common_h {
  height: 240px;
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .common_h {
    height: 290px;
    padding: 50px 0;
  }
}

.inner-container-common {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .inner-container-common {
    width: 85%;
  }
}

.inner-container-common > p {
  font-size: clamp(1.4rem, 3.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #333;
}

@media screen and (min-width: 768px) {
  .inner-container-common > p {
    font-size: 2.2rem;
  }
}

.inner-container-common a {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: clamp(280px, 65vw, 350px);
  height: clamp(50px, 11.6vw, 60px);
  background-color: #bb9f06;
  transition: background-color 0.3s;
}

@media screen and (min-width: 768px) {
  .inner-container-common a {
    align-self: flex-end;
    width: 350px;
    height: 60px;
  }
}

@media (hover: hover) {
  .inner-container-common a:hover {
    background-color: #c5b55b;
  }
}

.inner-container-common a p {
  font-size: clamp(1.6rem, 3.5vw, 1.8rem);
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
}

@media screen and (min-width: 768px) {
  .inner-container-common a p {
    font-size: 2.2rem;
  }
}

.inner-container-common a p::after {
  content: '';
  background-image: url(../img/icon_nav-arrow_w.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.container-common {
  width: 95%;
  margin: 0 auto 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: clamp(25px, 4.6vw, 70px);
}

@media screen and (min-width: 768px) {
  .container-common {
    flex-direction: row;
  }
}

@media screen and (min-width: 1120px) {
  .container-common {
    width: 90%;
  }
}

.img-container-common {
  overflow: hidden;
  border-radius: 0 60px 0 0;
}

.img-container-common picture img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .img-container-common picture img {
    width: auto;
    height: 530px;
    transform: translateX(clamp(-300px, calc((100dvw - 1580px) * 0.3), 0px));
  }
}

@media screen and (min-width: 1120px) {
  .img-container-common picture img {
    transform: translateX(clamp(-300px, calc((100dvw - 1580px) * 0.1), 0px));
  }
}

.inner-flex-common {
  width: 85%;
  gap: 40px;
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .inner-flex-common {
    width: 42vw;
    gap: 55px;
    padding-top: 80px;
  }
}

@media screen and (min-width: 1120px) {
  .inner-flex-common {
    width: 35vw;
  }
}

.inner-flex-common > p {
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
}

@media screen and (min-width: 1120px) {
  .inner-flex-common > p {
    font-size: 2rem;
  }
}

.inner-flex-common a {
  align-self: center;
}

.data-heading h2 {
  font-size: clamp(1.8rem, 2.86vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #274c77;
}

.data-heading h2::after {
  background-color: #274c77;
}

/* ******************************************************* */

/* event charm */

/* ******************************************************* */
.charm-heading h2 span {
  font-size: 1.35em;
  font-weight: 800;
  padding: 0;
}

.container-charm {
  max-width: 1100px;
  width: 95%;
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 25px;
}

@media screen and (min-width: 768px) {
  .container-charm {
    margin: 0 auto 100px;
    align-items: flex-start;
    flex-direction: row;
    gap: 10px;
  }
}

.charm-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.box-charm {
  width: clamp(350px, 90vw, 570px);
  height: clamp(70px, 15.56vw, 110px);
  background-color: #007e72;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding-left: clamp(20px, 4.44vw, 30px);
}

@media screen and (min-width: 768px) {
  .box-charm {
    width: clamp(350px, 45.6vw, 570px);
    height: clamp(84px, 8.8vw, 110px);
    padding-left: 30px;
  }
}

.box-charm img {
  width: clamp(60px, 13.33vw, 100px);
  height: clamp(43px, 9.56vw, 71px);
}

@media screen and (min-width: 768px) {
  .box-charm img {
    width: clamp(64px, 8.33vw, 100px);
    height: clamp(45px, 5.92vw, 71px);
  }
}

.box-charm p {
  font-size: clamp(1.6rem, 3.56vw, 2.7rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: pre-wrap;
}

@media screen and (min-width: 768px) {
  .box-charm p {
    font-size: clamp(1.6rem, 2.25vw, 2.7rem);
  }
}

.charm-right picture img {
  max-width: 90vw;
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .charm-right picture img {
    max-width: 500px;
  }
}

.charm-right p {
  font-size: clamp(1.5rem, 3.48vw, 1.8rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #333;
  text-align: center;
  padding-top: 8px;
}

@media screen and (min-width: 768px) {
  .charm-right p {
    font-size: clamp(1.7rem, 2.18vw, 1.8rem);
    text-align: left;
    padding-top: 10px;
  }
}

.charm-right p:first-of-type {
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .charm-right p:first-of-type {
    margin-bottom: 20px;
  }
}

/* btn-last */
.btn-last {
  display: flex;
  justify-content: center;
}

.btn-last a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 550px;
  width: 85%;
  margin: 0 auto;
  padding: 10px 40px;
  background-color: #672a4e;
  transition: background-color 0.3s;
}

@media screen and (min-width: 768px) {
  .btn-last a {
    padding: 14px 0;
  }
}

@media (hover: hover) {
  .btn-last a:hover {
    background-color: #8d466f;
  }
}

.btn-last a p {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .btn-last a p {
    font-size: 2rem;
  }
}

/* ******************************************************* */

/* event slide */

/* ******************************************************* */
.img-gallery {
  overflow: hidden;
}

.swiper1 {
  overflow: hidden !important;
  margin: 0 auto;
  padding: 0 12.5vw 50px !important;
  margin-top: 100px;
}

@media screen and (min-width: 768px) {
  .swiper1 {
    padding: 0 2.5vw 50px !important;
  }
}

.swiper1 .swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper1 .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper1 .swiper-slide img {
  display: block;
  max-width: 250px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (min-width: 540px) {
  .swiper1 .swiper-slide img {
    max-width: 400px;
  }
}

/* ******************************************************* */

/* event overview */

/* ******************************************************* */
.box-event {
  padding-top: 20px;
}

@media screen and (min-width: 768px) {
  .box-event {
    padding-top: 50px;
  }
}

.trial-heading {
  width: 91%;
  margin: 0 auto;
}

.trial-heading p {
  font-size: clamp(1.7rem, 3.78vw, 2.8rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: #fbb13c;
}

.table-trial {
  width: 96%;
  margin: 10px auto 0;
  border-collapse: separate;
  border-spacing: 10px 18px;
}

@media screen and (min-width: 768px) {
  .table-trial {
    width: 91%;
    margin: 40px auto 0;
    border-spacing: 15px 35px;
  }
}

.table-trial tr th {
  background-color: #274c77;
  width: clamp(80px, 17.56vw, 100px);
  height: auto;
  padding: 6px 10px;
  font-size: clamp(1.4rem, 2.6vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: center;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .table-trial tr th {
    padding: 10px 17px;
  }
}

.table-trial tr td,
.table-trial tr td ul li {
  font-size: clamp(1.4rem, 3.25vw, 1.8rem);
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.02em;
  color: #274c77;
  vertical-align: baseline;
  position: relative;
}

.table-trial tr td a {
  color: #007e72;
  padding-left: 10px;
}

.table-trial tr td ul {
  text-indent: 0;
}

.table-trial tr td ul li {
  padding-left: 16px;
}

.table-trial tr td ul li::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #274c77;
  font-size: 1em;
  line-height: 1;
}

/* ******************************************************* */

/* event cta */

/* ******************************************************* */
.cta-event,
.cta-nar {
  width: 85%;
  margin: 40px auto 0;
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .cta-event,
  .cta-nar {
    width: 80%;
    margin: 100px auto;
    padding-bottom: 100px;
  }
}

.cta-event a {
  max-width: 750px;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
  background-color: #bb9f06;
  transition: background-color 0.3s;
}

@media screen and (min-width: 768px) {
  .cta-event a {
    width: 90%;
    padding: 35px 0;
  }
}

.cta-nar a {
  max-width: 750px;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 15px 0;
  text-align: center;
  background-color: #bb9f06;
  transition: background-color 0.3s;
}

@media screen and (min-width: 768px) {
  .cta-nar a {
    width: 90%;
    padding: 35px 0 35px 3%;
    text-align: left;
  }
}

@media (hover: hover) {
  .cta-event a:hover,
  .cta-nar a:hover {
    background-color: #c0aa2b;
  }
}

.cta-event a p,
.cta-nar a p {
  display: inline-block;
  font-size: clamp(1.8rem, 4.44vw, 3.6rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
}

.cta-nar a p {
  font-size: clamp(1.8rem, 3.6vw, 3.6rem);
}

.cta-event a p::after,
.cta-nar a p::after {
  content: '';
  background-image: url(../img/icon_nav-arrow_w.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
}

@media screen and (min-width: 768px) {
  .cta-event a p::after,
  .cta-nar a p::after {
    right: -70px;
    width: 40px;
    height: 40px;
  }
}

/* ******************************************************* */

/* event tour voice */

/* ******************************************************* */
.container-voice {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 6px 6px 8px rgba(147, 147, 147, 0.6);
  padding: 25px 0;
}

@media screen and (min-width: 768px) {
  .container-voice {
    border-radius: 30px;
    padding: 100px 0;
  }
}

.voice-heading {
  text-align: center;
}

.voice-heading h2 {
  font-size: clamp(2rem, 4.15vw, 5.4rem);
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #672a4e;
}

.under-bubble {
  text-align: center;
}

.under-bubble > img {
  max-width: 960px;
  width: 85%;
  height: auto;
}

@media screen and (min-width: 450px) {
  .under-bubble > img {
    width: 75%;
  }
}

.voice-list {
  width: 90%;
  margin: 0 auto;
}

.voice-list div {
  display: flex;
  align-items: center;
  padding: 20px 0;
  position: relative;
}

.voice-list div::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 3px dotted #b3b3b3;
}

.voice-list div img {
  width: auto;
  height: 40px;
}

@media screen and (min-width: 768px) {
  .voice-list div img {
    height: 80px;
  }
}

.voice-list div p {
  font-size: clamp(1.4rem, 2.67vw, 3.2rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #9a879d;
  padding-left: 5px;
}

.voice-list div p span {
  font-size: 0.9em;
  color: #333;
}

@media screen and (min-width: 768px) {
  .voice-list div p span {
    font-size: 0.625em;
  }
}

/* ******************************************************* */

/* event tour faq */

/* ******************************************************* */
.event-faq {
  width: 95%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .event-faq {
    width: 90%;
  }
}

.question-tour {
  padding: 15px 15px 15px 45px;
  border-bottom: 3px dotted #b3b3b3;
}

@media screen and (min-width: 768px) {
  .question-tour {
    padding: 20px 45px;
  }
}

.question-tour p {
  font-size: clamp(1.4rem, 3.25vw, 1.8rem);
  font-weight: 500;
  color: #333;
  position: relative;
  text-indent: 0;
  padding-left: 4px;
}

@media screen and (min-width: 768px) {
  .question-tour p {
    padding-left: 10px;
  }
}

.question-tour p::before {
  content: 'Q';
  position: absolute;
  top: 50%;
  left: -31.5px;
  transform: translateY(-50%);
  color: #fff;
  width: clamp(20px, 4.65vw, 25px);
  height: clamp(20px, 4.65vw, 25px);
  background-color: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.4rem, 3.25vw, 1.7rem);
}

@media screen and (min-width: 768px) {
  .question-tour p::before {
    align-items: flex-end;
  }
}

.answer-tour {
  padding: 15px 15px 15px 45px;
  border-bottom: 2px solid #274c77;
}

@media screen and (min-width: 768px) {
  .answer-tour {
    padding: 20px 45px;
  }
}

.answer-tour:last-of-type {
  border: none;
}

.answer-tour p {
  font-size: clamp(1.4rem, 3.25vw, 2.3rem);
  font-weight: 600;
  line-height: 1.4;
  color: #bb9f06;
  position: relative;
  text-indent: 0;
  padding-left: 4px;
}

@media screen and (min-width: 768px) {
  .answer-tour p {
    padding-left: 10px;
  }
}

.answer-tour p::before {
  content: 'A';
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
  color: #fff;
  width: clamp(25px, 5.81vw, 32px);
  height: clamp(25px, 5.81vw, 32px);
  background-color: #bb9f06;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1.6rem, 3.72vw, 2.2rem);
}

@media screen and (min-width: 768px) {
  .answer-tour p::before {
    top: 25%;
  }

  .answer-tour:last-of-type p::before {
    top: 50%;
  }
}

/* ******************************************************* */

/* event input */

/* ******************************************************* */
#form {
  max-width: 100dvw;
  margin-bottom: 150px;
}

.section-inn {
  width: 95%;
  margin: 0 auto 13px;
}

@media screen and (min-width: 768px) {
  .section-inn {
    width: 93%;
    margin: 0 auto 28px;
  }
}

.section-nodata {
  width: 90%;
  margin: 0 auto 13px;
}

@media screen and (min-width: 768px) {
  .section-nodata {
    width: 70%;
    margin: 0 auto 28px;
  }
}

.section-nodata p {
  font-size: clamp(1.5rem, 3.75vw, 1.8rem);
  font-weight: 600;
  color: #274c77;
}

.description-cont {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .description-cont {
    margin-top: 0;
  }
}

.section-title {
  font-size: clamp(1.8rem, 4.18vw, 4rem);
  line-height: 2;
  padding: 0 1rem;
  padding-left: 4.665%;
  width: 60%;
  color: #274c77;
  font-weight: 600;
  position: relative;
}

@media screen and (min-width: 768px) {
  .section-title {
    width: 75%;
    padding-left: 12.665%;
  }
}

.section-title span {
  font-size: 1.5em;
}

.section-title::after {
  content: '';
  position: absolute;
  top: 83%;
  left: 0;
  max-width: 1200px;
  width: 55vw;
  height: 1px;
  background-color: #274c77;
}

.schedule {
  width: 100%;
  margin: 0 auto 8px;
}

@media screen and (min-width: 540px) {
  .schedule {
    width: 90%;
  }
}

@media screen and (min-width: 768px) {
  .schedule {
    max-width: 1200px;
    width: 85%;
    margin: 16px auto;
  }
}

.schedule-online {
  width: 100%;
}

@media screen and (min-width: 540px) {
  .schedule-online {
    width: 90%;
  }
}

.schedule table {
  width: 100%;
  font-size: 1.4rem;
  text-align: left;
}

.schedule table th {
  background: #274c77;
  color: #fff;
  font-size: 1.5rem;
  padding: 10px 0 10px 18px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .schedule table th {
    font-size: 1.6rem;
  }
}

.schedule table th::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 4px;
  height: 17px;
  background-color: #fff;
}

.schedule table th.event-date {
  width: 25%;
}

.schedule table th.event-place {
  width: 35%;
}

.schedule table th.event-access {
  width: 40%;
}

.schedule table td {
  padding: 6px;
  vertical-align: top;
  word-break: break-all;
}

@media screen and (min-width: 768px) {
  .schedule table td {
    padding: 12px;
  }
}

.schedule table td p {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: #274c77;
  font-weight: 500;
  min-width: 60px;
}

@media screen and (min-width: 768px) {
  .schedule table td p {
    font-size: 1.6rem;
  }
}

.date-time {
  font-size: 1.4rem !important;
}

.schedule table td p span {
  font-size: 1.3rem;
  font-weight: 500;
  color: #274c77;
}

@media screen and (min-width: 768px) {
  .schedule table td p span {
    font-size: 1.6rem;
  }
}

.schedule table td a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #007e72;
}

.schedule table td.category-tag {
  padding: 12px 0 0;
  border-bottom: 0;
}

.schedule table td.btn-reserve,
.schedule table td.btn-online_reserve,
.schedule table td.online_reserve_table,
.schedule table td.online_reserve_table_time {
  /* display: block; */
  border-bottom: 0;
  text-align: left;
  padding: 6px;
  border-bottom: 1px solid #999;
}

.schedule table td.online_reserve_table,
.schedule table td.online_reserve_table_time {
  text-align: left;
}

.schedule table td.btn-online_reserve {
  width: 100%;
  display: block;
  border-bottom: 0;
  text-align: left;
  padding: 6px 12px;
}

.schedule table td.online_reserve_table {
  width: 25%;
  min-width: 100px;
}

.schedule table td.online_reserve_table_time {
  width: 75%;
  min-width: 345px;
}

@media only screen and (min-width: 1024px) {
  .schedule table td.online_reserve_table,
  .schedule table td.online_reserve_table_time {
    display: table-cell;
    text-align: left;
    border-bottom: 1px solid #000;
  }

  .schedule table td.online_reserve_table {
    width: 15%;
  }

  .schedule table td.online_reserve_table_time {
    width: 43%;
  }

  .schedule table td.btn-online_reserve {
    display: table-cell;
    width: 42%;
    padding: 6px 12px;
  }

  .schedule table td.online_reserve_table p,
  .schedule table td.online_reserve_table_time p {
    margin-bottom: 0;
  }

  .schedule table td.btn-online_reserve {
    border-bottom: 1px solid #000;
  }
}

.schedule table td.btn-reserve a,
.schedule table td.btn-online_reserve a {
  display: block;
  width: clamp(300px, 75vw, 350px);
  float: none;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 8px 0;
  background-color: #bb9f06;
  transition: background-color 0.3s;
  background-image: url('../img/icon_nav-arrow_w.webp');
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 15px;
  font-size: 1.4rem;
}

@media screen and (min-width: 768px) {
  .schedule table td.btn-reserve a {
    float: right;
    margin: 0;
    padding: 15px 0;
    background-size: 20px;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1024px) {
  .schedule table td.btn-online_reserve a {
    float: right;
    margin: 0;
    padding: 15px 0;
    background-size: 20px;
    font-size: 1.8rem;
  }
}

@media (hover: hover) {
  .schedule table td.btn-reserve a:hover,
  .schedule table td.btn-online_reserve a:hover {
    background-color: #cfb624;
  }
}

/* ******************************************************* */

/* event input */

/* ******************************************************* */
.schedule .table {
  width: 100%;
  font-size: 1.4rem;
  text-align: left;
}

.schedule .table .date-bg {
  background: #274c77;
  padding: 10px 0 10px 18px !important;
}

.schedule .table .tr h3 {
  color: #fff;
  font-size: 1.5rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .schedule .table .tr h3 {
    font-size: 1.6rem;
  }
}

.schedule .table .tr h3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -7px;
  transform: translateY(-50%);
  width: 4px;
  height: 18px;
  background-color: #fff;
}

.schedule .table .event-date {
  width: 25%;
}

.schedule .table .tr {
  padding: 6px;
  vertical-align: top;
  word-break: break-all;
}

@media screen and (min-width: 768px) {
  .schedule .table .tr {
    padding: 10px 0 0;
  }
}

.schedule .table div p {
  margin-bottom: 0;
  font-size: 1.4rem;
  color: #274c77;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .schedule .table div p {
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }
}

.schedule .table div .online_reserve_table_time p {
  font-size: 1.2rem;
}

@media screen and (min-width: 768px) {
  .schedule .table div .online_reserve_table_time p {
    font-size: 1.6rem;
  }
}

.date-time {
  font-size: 1.4rem !important;
}

.box-row {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #999;
}

@media screen and (min-width: 1024px) {
  .box-row {
    flex-direction: row;
  }
}

.box-row:last-of-type {
  border-bottom: 2px solid #274c77;
}

.box-row div {
  display: flex;
}

@media screen and (min-width: 1024px) {
  .box-row div {
    flex-direction: row;
  }
}

.schedule .table div a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #007e72;
}

.schedule .table .btn-online_reserve,
.schedule .table .online_reserve_table,
.schedule .table .online_reserve_table_time {
  display: block;
  border-bottom: 0;
  text-align: left;
  padding: 6px 0;
}

.schedule .table .online_reserve_table,
.schedule .table .online_reserve_table_time {
  text-align: left;
}

.schedule .table .btn-online_reserve {
  width: 100%;
  display: block;
  border-bottom: 0;
  text-align: left;
  padding: 6px 12px;
}

.schedule .table .online_reserve_table {
  width: 20%;
  min-width: 85px;
}

.schedule .table .online_reserve_table_time {
  min-width: none;
}

@media only screen and (min-width: 1024px) {
  .schedule .table .online_reserve_table,
  .schedule .table .online_reserve_table_time {
    text-align: left;
    /* border-bottom: 1px solid #000; */
  }

  .schedule .table .online_reserve_table {
    width: 100%;
    min-width: 150px;
  }

  .schedule .table .online_reserve_table_time {
    width: 100%;
    min-width: 360px;
  }

  .schedule .table .btn-online_reserve {
    width: 70%;
    padding: 6px 12px 10px;
  }

  .schedule .table .online_reserve_table p,
  .schedule .table .online_reserve_table_time p {
    margin-bottom: 0;
  }
}

.schedule .table .btn-online_reserve a {
  display: block;
  width: clamp(300px, 75vw, 350px);
  float: none;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  padding: 8px 0;
  background-color: #bb9f06;
  transition: background-color 0.3s;
  background-image: url('../img/icon_nav-arrow_w.webp');
  background-repeat: no-repeat;
  background-position: center right 20px;
  background-size: 15px;
  font-size: 1.5rem;
}

@media screen and (min-width: 768px) {
  .schedule .table .btn-reserve a {
    float: right;
    margin: 0;
    padding: 15px 0;
    background-size: 20px;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 1024px) {
  .schedule .table .btn-online_reserve a {
    float: right;
    margin: 0;
    padding: 15px 0;
    background-size: 20px;
    font-size: 1.8rem;
  }
}

@media (hover: hover) {
  .schedule .table .btn-reserve a:hover,
  .schedule .table .btn-online_reserve a:hover {
    background-color: #cfb624;
  }
}
/* ******************************************************* */

/* event online */

/* ******************************************************* */
.wrapper-lead {
  padding: 60px 0;
}

@media screen and (min-width: 768px) {
  .wrapper-lead {
    padding: 150px 0;
  }
}

.online-lead-heading {
  text-align: center;
}

.online-lead-heading p {
  font-size: clamp(1.8rem, 4.15vw, 5.4rem);
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #672a4e;
}

.online-lead-heading p span {
  font-size: 1.25em;
  font-weight: 800;
}

.wrapper-online-lead .under-bubble > img {
  max-width: 960px;
  width: 90%;
}

/* online-form */
#online-form {
  margin: 35px auto 50px;
}

@media screen and (min-width: 768px) {
  #online-form {
    margin: 90px auto 150px;
  }
}

/* method */
@media screen and (min-width: 768px) {
  .mb-60 {
    margin-bottom: 60px;
  }
}

.container-online-method {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: clamp(20px, 4.16vw, 50px);
}

@media screen and (min-width: 768px) {
  .container-online-method {
    width: 80%;
    flex-direction: row;
    gap: clamp(20px, 4.16vw, 50px);
  }
}

.box-online-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
}

@media screen and (min-width: 768px) {
  .box-online-method {
    padding: 50px 0;
  }
}

.container-online-method img {
  width: auto;
  height: 70px;
}

.method-lead {
  width: 95%;
  min-height: 60px;
  margin: 0 auto;
  background-color: #274c77;
  border-radius: 100px;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .method-lead {
    min-height: 90px;
  }
}

.method-lead p {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #fff;
  text-align: center;
}

.method-lead p:nth-of-type(2) {
  font-size: clamp(1.3rem, 1.33vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.box-online-method > p {
  width: 90%;
  margin: 0 auto;
  font-size: clamp(1.4rem, 2.08vw, 1.8rem);
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  text-align: center;
}

.chrome-download a {
  font-size: clamp(1.6rem, 1.83vw, 2.2rem);
  font-weight: bold;
  line-height: 1.3;
  color: #0000ff;
  border-bottom: 2px solid #0000ff;
  position: relative;
  margin-right: 20px;
}

.chrome-download a::after {
  content: '';
  position: absolute;
  top: 55%;
  right: -30px;
  transform: translateY(-50%);
  background-image: url(../img/img-download.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 24px;
  height: 20px;
}

/* entry */
.online-entry {
  width: 85%;
  margin: 50px auto;
  background-color: #fff;
  border: 2px solid #274c77;
  border-radius: 60px;
  padding: 8px 0;
}

@media screen and (min-width: 768px) {
  .online-entry {
    width: 65%;
    margin: 100px auto 50px;
    padding: 15px 0;
  }
}

.online-entry p {
  font-size: clamp(1.6rem, 3.72vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #274c77;
  text-align: center;
}

/* entrance */
.wrapper-entrance {
  width: 100%;
  background-color: #ddebe3;
  padding: 40px 0 80px;
}

@media screen and (min-width: 768px) {
  .wrapper-entrance {
    padding: 60px 0 150px;
  }
}

.entrance-heading {
  text-align: center;
}

.entrance-heading h2 {
  display: inline-block;
  font-size: clamp(2.2rem, 4.67vw, 5.6rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #672a4e;
  position: relative;
}

.entrance-heading h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  background-image: url(../img/icon_event-entrance.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 30px;
}

@media screen and (min-width: 768px) {
  .entrance-heading h2::before {
    left: -65px;
    width: 50px;
    height: 60px;
  }
}

.container-entrance {
  max-width: 1000px;
  width: 90%;
  margin: 25px auto 0;
  padding: 20px 0;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .container-entrance {
    width: 75%;
    margin: 45px auto 0;
    padding: 50px 0;
  }
}

.container-entrance a {
  display: block;
  font-size: clamp(1.6rem, 3.33vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0000ff;
  margin-bottom: 20px;
  cursor: pointer;
}

@media (hover: hover) {
  .container-entrance a:hover {
    text-decoration: underline;
  }
}

.container-entrance span {
  font-size: clamp(1.6rem, 3.56vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #333;
}

/* online-attention */
.online-attention {
  max-width: 1000px;
  width: 90%;
  margin: 30px auto 0;
  padding: 20px 0;
}

@media screen and (min-width: 768px) {
  .online-attention {
    width: 75%;
  }
}

.online-attention span {
  font-size: clamp(1.6rem, 3.55vw, 2.2rem);
  font-weight: 500;
  line-height: 1.5;
  color: #672a4e;
  display: block;
  text-align: left;
  padding-left: 15px;
}

@media screen and (min-width: 768px) {
  .online-attention span {
    padding-left: 25px;
  }
}

.online-attention ul li {
  width: 90%;
  margin: 0 auto;
  font-size: clamp(1.4rem, 3.11vw, 1.8rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #333;
  padding-left: clamp(15px, 3.75vw, 20px);
  text-indent: 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .online-attention ul li {
    padding-left: 25px;
  }
}

.online-attention ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 1em;
  transform: translateY(-0.65em);
  color: #333;
  font-size: 1em;
  line-height: 1;
}

/* ******************************************************* */

/* event narration */

/* ******************************************************* */
.lead-imgflex {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .lead-imgflex {
    width: 80%;
    margin: 0 auto 150px;
  }
}

.lead-imgflex img {
  width: clamp(70px, 19.2vw, 240px);
  height: clamp(70px, 19.2vw, 240px);
}

.nar-lead-heading {
  text-align: center;
}

.nar-lead-heading p {
  font-size: clamp(1.6rem, 3.84vw, 5rem);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #672a4e;
}

.nar-lead-heading p span {
  font-size: 1.25em;
  font-weight: 800;
}

#narration-lead .under-bubble > img {
  max-width: 1000px;
  width: 85%;
}

.container-nar-lead {
  max-width: 1000px;
  width: 85%;
  margin: clamp(10px, 2.33vw, 30px) auto 0;
  background-color: #fff;
  border-radius: 20px;
  padding: clamp(25px, 5.55vw, 35px) 0;
  box-shadow: 6px 6px 8px rgba(147, 147, 147, 0.6);
}

@media screen and (min-width: 768px) {
  .container-nar-lead {
    width: 80%;
  }
}

.container-nar-lead p {
  width: 80%;
  margin: 0 auto;
  font-size: clamp(1.4rem, 3.26vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #333;
  text-align: center;
}

.box-nar-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 18px 0 25px;
  background-color: #274c77;
}

@media screen and (min-width: 768px) {
  .box-nar-data {
    gap: 40px;
    padding: 25px 0 40px;
  }
}

.data-lead {
  width: 95%;
  min-height: 40px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 100px;
  padding: 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .data-lead {
    min-height: 70px;
  }
}

.data-lead p {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #274c77;
  text-align: center;
}

.box-nar-data > p {
  width: 90%;
  margin: 0 auto;
  font-size: clamp(1.4rem, 2.08vw, 1.8rem);
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  text-align: center;
}

/* ******************************************************* */

/* wrapper space */

/* ******************************************************* */
.wrapper-space {
  width: 100%;
  height: 60px;
}

@media screen and (min-width: 768px) {
  .wrapper-space {
    height: 200px;
  }
}

/* ******************************************************* */

/* company overview */

/* ******************************************************* */
.box-overview {
  border-radius: 0;
  padding: 15px 0;
}

@media screen and (min-width: 768px) {
  .box-overview {
    padding: 60px 0;
  }
}

.overview-heading {
  max-width: 980px;
  width: 90%;
  height: clamp(30px, 6.97vw, 70px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  background-color: #274c77;
  position: relative;
}

.h-min50 {
  height: clamp(50px, 8.97vw, 70px);
}

.overview-heading h2 {
  font-size: clamp(1.5rem, 2.72vw, 3rem);
  font-weight: 500;
  color: #fff;
  padding-left: 15px;
}

@media screen and (min-width: 768px) {
  .overview-heading h2 {
    padding-left: 30px;
  }
}

.overview-heading h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  background-color: #fff;
  width: 3px;
  height: 50%;
}

@media screen and (min-width: 768px) {
  .overview-heading h2::before {
    left: 10px;
    width: 5px;
    height: 70%;
  }
}

.overview-heading h2 span {
  font-size: 0.75em;
}

.table-overview {
  max-width: 980px;
  width: 90%;
  margin: 0 auto;
}

.row-table {
  width: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
  .row-table {
    align-items: center;
    flex-direction: row;
    padding: 25px 15px;
  }
}

.row-table h3 {
  font-size: clamp(1.4rem, 3.26vw, 1.7rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #333;
  width: 200px;
}

.row-table p {
  font-size: clamp(1.4rem, 3.26vw, 1.7rem);
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #666;
}

.table-spacer {
  width: 100%;
  height: 35px;
}

@media screen and (min-width: 768px) {
  .table-spacer {
    height: 100px;
  }
}

/* relief */
.box-relief {
  margin-bottom: 20px;
  padding: 25px 0 10px;
}

@media screen and (min-width: 768px) {
  .box-relief {
    margin-bottom: 50px;
    padding: 50px 0;
  }
}

.container-relief {
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: clamp(25px, 3.29vw, 50px);
}

@media screen and (min-width: 768px) {
  .container-relief {
    align-items: flex-start;
    flex-direction: row;
  }
}

.relief-l h3 {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: bold;
  color: #274c77;
  margin-bottom: 25px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .relief-l h3 {
    margin-bottom: 40px;
  }
}

.relief-l h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  background: linear-gradient(to right, #e6e6e6 0%, #e6e6e6 75%, #fff 100%);
  max-width: 450px;
  width: 100%;
  height: 10px;
}

@media screen and (min-width: 768px) {
  .relief-l h3::after {
    width: 80%;
  }
}

.relief-l p {
  font-size: clamp(1.4rem, 3.11vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
  color: #666;
}

.relief-l p span {
  color: #d4145a;
}

.relief-r picture img {
  width: clamp(250px, 82vw, 320px);
  height: clamp(195px, 64.1vw, 250px);
}

@media screen and (min-width: 768px) {
  .relief-r picture img {
    width: clamp(275px, 36.13vw, 370px);
    height: clamp(215px, 28.32vw, 290px);
  }
}

/* support */
.wrapper-support {
  padding: 10px 0 60px;
  margin-bottom: 80px;
}

@media screen and (min-width: 768px) {
  .wrapper-support {
    padding: 20px 0 80px;
    margin-bottom: 150px;
  }
}

.box-support {
  border-radius: 0;
  padding: 10px 0 20px;
}

@media screen and (min-width: 768px) {
  .box-support {
    padding: 30px 0;
  }
}

.box-support:last-of-type {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .box-support:last-of-type {
    margin-top: 40px;
  }
}

.support-heading {
  max-width: 490px;
  width: 90%;
  margin: 0 auto 0 0;
  display: flex;
  align-items: center;
  background-color: #007e72;
  position: relative;
}

@media screen and (min-width: 768px) {
  .support-heading {
    width: 45%;
  }
}

.support-heading h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 500;
  color: #fff;
  padding: 8px 15px;
}

@media screen and (min-width: 768px) {
  .support-heading h3 {
    padding: 12px 30px;
  }
}

.support-heading h3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  background-color: #fff;
  width: 3px;
  height: 50%;
}

@media screen and (min-width: 768px) {
  .support-heading h3::before {
    left: 15px;
    width: 5px;
  }
}

.box-support ul {
  width: 95%;
  margin: 12px auto 0;
}

@media screen and (min-width: 768px) {
  .box-support ul {
    margin: 30px auto 0 50px;
  }
}

.box-support ul li {
  font-size: clamp(1.4rem, 3.25vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #333;
  padding-left: 20px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .box-support ul li {
    padding-left: 30px;
  }
}

.box-support ul li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/icon_star.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
}

@media screen and (min-width: 768px) {
  .box-support ul li::before {
    width: 25px;
    height: 25px;
  }
}

.inner-box-support {
  width: 95%;
  margin: 20px auto;
}

@media screen and (min-width: 768px) {
  .inner-box-support {
    width: 90%;
  }
}

.inner-box-support > p {
  font-size: clamp(1.6rem, 3.56vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #333;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .inner-box-support > p {
    font-size: 2.3rem;
    line-height: 1.67;
    padding-left: 30px;
  }
}

.inner-box-support > p::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/icon_money.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 20px;
}

@media screen and (min-width: 768px) {
  .inner-box-support > p::before {
    top: 50%;
    left: 0;
    width: 20px;
    height: 25px;
  }
}

.inner-box-support > p span {
  font-size: 1.125em;
  font-weight: 800;
  color: #d4145a;
}

@media screen and (min-width: 768px) {
  .inner-box-support > p span {
    font-size: 1.35em;
  }
}

.list-benefit {
  padding: 15px;
  border-bottom: 2px dotted #b3b3b3;
}

.list-dorm {
  padding: clamp(10px, 2.32vw, 15px);
}

.list-benefit h4,
.list-dorm p {
  font-size: clamp(1.5rem, 3.25vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #333;
  padding-left: 0;
}

@media screen and (min-width: 768px) {
  .list-benefit h4,
  .list-dorm p {
    padding-left: 30px;
  }
}

.list-benefit p {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #d4145a;
  padding-left: 15px;
}

@media screen and (min-width: 768px) {
  .list-benefit p {
    padding-left: 50px;
  }
}

.list-benefit p span {
  font-size: 1.4em;
}

.list-benefit p .black {
  font-size: 0.85em;
  font-weight: 600;
  color: #333;
}

.comment-benefit p {
  font-size: clamp(1.2rem, 2.79vw, 1.6rem);
  color: #666;
  text-align: right;
  margin-top: 10px;
}

.inner-box-support > p:nth-of-type(2) {
  margin-top: 50px;
}

.inner-box-support > p:nth-of-type(2)::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/icon_dorm.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 17px;
}

@media screen and (min-width: 768px) {
  .inner-box-support > p:nth-of-type(2)::before {
    top: 50%;
    width: 24px;
    height: 25px;
  }
}

.img-support-area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .img-support-area {
    flex-direction: row;
    gap: 20px;
    margin-top: 30px;
  }
}

.img-support-area picture img {
  max-width: 320px;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .img-support-area {
    flex-direction: row;
    gap: 20px;
    margin-top: 30px;
  }
}

/* ******************************************************* */

/* company office */

/* ******************************************************* */
.wrapper-office {
  padding: 20px 0 60px;
}

@media screen and (min-width: 768px) {
  .wrapper-office {
    padding: 50px 0 200px;
  }
}

.container-office {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: none;
  width: 95%;
}

@media screen and (min-width: 768px) {
  .container-office {
    flex-direction: row;
    max-width: 90vw;
  }
}

@media screen and (min-width: 1500px) {
  .container-office {
    max-width: 85vw;
  }
}

/* container-workday */
.container-workday {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  max-width: none;
  width: 95%;
  margin: 50px auto;
}

@media screen and (min-width: 768px) {
  .container-workday {
    max-width: 90vw;
  }
}

.img-left,
.img-long-left {
  margin: 30px auto 0;
}

.img-right,
.img-long-right {
  margin: 30px auto 0;
}

.img-left_workday,
.img-right_workday {
  margin: 50px auto 0;
}

@media screen and (min-width: 768px) {
  .img-left,
  .img-long-left,
  .img-left_workday {
    margin: 50px 0 0 auto;
  }

  .img-right,
  .img-long-right,
  .img-right_workday {
    margin: 50px auto 0 0;
  }
}

.container-office picture img {
  position: static;
  width: 350px;
  height: 225px;
}

@media screen and (min-width: 768px) {
  .container-office picture img {
    position: absolute;
    top: 0;
    z-index: 1;
    width: clamp(350px, 46.67vw, 700px);
    height: clamp(225px, 30vw, 450px);
  }
}

.container-workday picture img {
  width: 350px;
  height: 225px;
}

@media screen and (min-width: 768px) {
  .container-workday picture img {
    width: clamp(350px, 59.21vw, 900px);
    height: clamp(225px, 38.09vw, 579px);
  }
}

.img-long-right picture img {
  width: 350px;
  height: 127px;
}

.img-long-left picture img {
  width: 350px;
  height: 70px;
}

@media screen and (min-width: 768px) {
  .img-left picture img,
  .img-logn-left picture img {
    left: 0;
  }

  .img-right picture img,
  .img-long-right picture img {
    right: 0;
  }

  .img-long-right picture img {
    width: clamp(555px, 72.3vw, 1100px);
    height: clamp(202px, 26.3vw, 400px);
  }

  .img-long-left picture img {
    width: clamp(555px, 72.3vw, 1100px);
    height: clamp(110px, 14.5vw, 220px);
  }
}

.container-office-long-1,
.container-office-long-2,
.container-office-long-3,
.container-office-dorm {
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container-office-long-1 picture img {
  width: 350px;
  height: 127px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .container-office-long-1 picture img {
    width: clamp(555px, 72.3vw, 1100px);
    height: clamp(202px, 26.3vw, 400px);
  }
}

.container-office-long-2 picture img {
  width: 350px;
  height: 70px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .container-office-long-2 picture img {
    width: clamp(555px, 72.3vw, 1100px);
    height: clamp(110px, 14.5vw, 220px);
    position: relative;
    z-index: 1;
  }
}

.container-office-long-3 picture img {
  width: 350px;
  height: 95px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .container-office-long-3 picture img {
    width: clamp(555px, 72.3vw, 1100px);
    height: clamp(150px, 19.7vw, 300px);
    position: relative;
    z-index: 1;
  }
}

.office-imgflex {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .office-imgflex {
    flex-direction: row;
  }
}

.office-imgflex div {
  position: relative;
}

.office-imgflex div picture img {
  width: clamp(350px, 45.8vw, 550px);
  height: clamp(224px, 29.1vw, 350px);
  position: static;
}

.office-imgflex div p {
  position: absolute;
  bottom: 8px;
  left: 5px;
  font-size: clamp(1.2rem, 2.8vw, 1.6rem);
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 3px 3px 2px rgba(81, 81, 81, 0.75);
}

.text-office,
.text-workday {
  max-width: 350px;
  width: 100%;
  margin: 8px auto 0;
  padding: 20px 14px;
  background-color: #fff;
  text-align: left;
}

.text-workday {
  padding: 20px 14px 30px;
}

@media screen and (min-width: 768px) {
  .text-office {
    max-width: 1200px;
    width: 62.5vw;
    padding: 40px 0;
  }

  .text-workday {
    max-width: 1200px;
    width: 62.5vw;
    padding: 40px 0 110px;
    position: relative;
  }
}

.text-workday-long {
  max-width: 350px;
  width: 100%;
  margin: 8px auto 0;
  background-color: #fff;
  text-align: left;
  padding: 20px 14px 30px;
}

@media screen and (min-width: 768px) {
  .text-workday-long {
    max-width: 1200px;
    width: 62.5vw;
    position: relative;
    padding: 50px;
  }
}

@media screen and (min-width: 768px) {
  .p-right {
    margin: clamp(120px, 16vw, 240px) 0 0 auto;
    padding-left: clamp(200px, 26vw, 400px);
  }

  .p-left {
    margin: clamp(120px, 14vw, 240px) auto 0 0;
    padding-left: clamp(100px, 13vw, 300px);
  }

  .p-long-left {
    margin: 0 auto 0 0;
    padding-top: clamp(67px, 8.67vw, 130px);
    transform: translateY(-50px);
  }

  .p-long-right {
    margin: 0 0 0 auto;
    padding-top: clamp(67px, 8.67vw, 130px);
    padding-left: 50px;
    transform: translateY(-50px);
  }
}

@media screen and (min-width: 1600px) {
  .p-left {
    padding-left: clamp(100px, 20vw, 400px);
  }
}

@media screen and (min-width: 768px) {
  .p-dorm-left {
    margin: 0 auto 0 0;
    padding: 80px 0 40px clamp(100px, 13vw, 300px);
    transform: translateY(-50px);
  }
}

.text-office h2,
.text-workday h2,
.text-workday-long h2 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #007e72;
  margin-bottom: 25px;
}

.text-office p,
.text-workday p {
  max-width: 350px;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #666;
}

@media screen and (min-width: 768px) {
  .text-office p,
  .text-workday p {
    max-width: clamp(200px, 23.4vw, 450px);
  }
}

@media screen and (min-width: 768px) {
  .p-long-left p,
  .p-long-right p,
  .p-dorm-left p {
    max-width: clamp(350px, 46.67vw, 680px);
  }
}

.text-workday-long p {
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #666;
}

.text-only {
  margin: 30px auto 0;
}

.text-only p {
  max-width: 90%;
  margin: 0 auto;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #666;
}

.text-only h2 {
  width: 90%;
  margin: 30px auto 0;
}

/* work workday */
.text-workday img {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 50px;
}

@media screen and (min-width: 768px) {
  .text-workday img {
    width: 69px;
    height: 100px;
  }
}

/* ******************************************************* */

/* recruit list */

/* ******************************************************* */
.lead-recruit {
  max-width: 1000px;
  width: 90%;
  height: 50px;
  margin: 20px auto;
  background-color: #9a879d;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .lead-recruit {
    width: 66%;
    height: 100px;
    margin: 100px auto 50px;
    border-radius: 60px;
  }
}

.lead-recruit h3 {
  font-size: clamp(1.8rem, 3.5vw, 4.2rem);
  font-weight: bold;
  line-height: 1.75;
  color: #fff;
}

/* section-header */
.section-header_recruit {
  width: clamp(255px, 75.4vw, 620px);
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 12%;
}

@media screen and (min-width: 768px) {
  .section-header_recruit {
    width: clamp(550px, 72.4vw, 1100px);
    height: 90px;
    padding-left: 17%;
  }
}

.section-header_recruit h2 {
  font-size: clamp(2.2rem, 3.55vw, 5.4rem);
  font-weight: 800;
  line-height: 1.75;
  color: #007e72;
  position: relative;
  padding-left: clamp(35px, 4.33vw, 65px);
}

.section-header_recruit h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url(../img/icon_bus-recruit.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(30px, 3.67vw, 55px);
  height: clamp(30px, 3.67vw, 55px);
}

/* kyujin-link */
.kyujin-link {
  max-width: 1100px;
  width: 95%;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-template-rows: auto;
  gap: 20px;
  place-items: center;
}

@media screen and (min-width: 390px) {
  .kyujin-link {
    width: 90%;
  }
}

@media screen and (min-width: 768px) {
  .kyujin-link {
    margin: 50px auto;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 55px clamp(30px, 3.58vw, 55px);
  }
}

.kyujin-link a {
  display: block;
  max-width: clamp(295px, 90vw, 350px);
  height: 400px;
  background-color: #fff;
  transition: box-shadow 0.3s;
  will-change: transform, opacity;
}

@media screen and (min-width: 768px) {
  .kyujin-link a {
    max-width: 330px;
    height: 450px;
  }
}

.card-inner {
  width: clamp(295px, 90vw, 350px);
  height: 400px;
  transition: transform 0.3s;
}

@media screen and (min-width: 768px) {
  .card-inner {
    width: 330px;
    height: 450px;
    transition: transform 0.3s;
  }
}

@media (hover: hover) {
  .kyujin-link a:hover {
    box-shadow: 8px 8px 3px rgba(127, 190, 179, 0.8);
  }

  .kyujin-link a:hover .card-inner {
    transform: translateY(-5px);
  }
}

.kyujin-link a picture img {
  width: clamp(295px, 90vw, 350px);
  height: clamp(205px, 62.5vw, 244px);
}

@media screen and (min-width: 768px) {
  .kyujin-link a picture img {
    width: 330px;
    height: 230px;
  }
}

.kyujin-link a h2 {
  font-size: 1.9rem;
  font-weight: bold;
  color: #007e72;
  border-bottom: 2px solid #b3b3b3;
  padding: 8px 20px;
}

@media screen and (min-width: 768px) {
  .kyujin-link a h2 {
    font-size: 2.3rem;
    padding: 12px 0 12px 15px;
  }
}

.kyujin-link a .card-inner div {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #b3b3b3;
  padding: 5px 20px;
}

@media screen and (min-width: 768px) {
  .kyujin-link a .card-inner div {
    padding: 8px 0 8px 15px;
  }
}

.kyujin-link a .card-inner div p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #333;
}

@media screen and (min-width: 768px) {
  .kyujin-link a .card-inner div p {
    font-size: 2rem;
  }
}

.kyujin-link a .card-inner div img {
  width: 15px;
  height: 15px;
}

@media screen and (min-width: 768px) {
  .kyujin-link a .card-inner div img {
    width: 20px;
    height: 20px;
  }
}

.kyujin-link a .card-inner > p {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #333;
  padding: 6px 20px;
}

@media screen and (min-width: 768px) {
  .kyujin-link a .card-inner > p {
    font-size: 1.8rem;
    padding: 12px 0 12px 15px;
  }
}

.kyujin-link a .card-inner > p img {
  width: 15px;
  height: 15px;
  vertical-align: baseline;
}

@media screen and (min-width: 768px) {
  .kyujin-link a .card-inner > p img {
    width: 20px;
    height: 20px;
  }
}

/* ******************************************************* */

/* recruit detail */

/* ******************************************************* */
.container-recruit-top {
  width: 100%;
  padding: 25px 0 40px;
  position: relative;
  background-color: #ddebe3;
  background-image: url(../img/bg-line_l.webp), url(../img/bg-bus-recruit.webp);
  background-repeat: no-repeat, no-repeat;
  background-position:
    top left,
    bottom right 10%;
  background-size:
    200px,
    120px 120px;
  background-blend-mode: screen, normal;
}

@media screen and (min-width: 768px) {
  .container-recruit-top {
    padding: 100px 0;
    background-size:
      400px,
      250px 250px;
  }
}

.detail-head {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .detail-head {
    width: 80%;
  }
}

.detail-head h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #274c77;
}

.detail-head p {
  font-size: clamp(1.4rem, 3.11vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #333;
  margin: 20px 0;
}

/* flex */
.box-recruit-flex {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

@media screen and (min-width: 768px) {
  .box-recruit-flex {
    width: 80%;
    align-items: flex-start;
    flex-direction: row;
    gap: clamp(30px, 3.94vw, 60px);
  }
}

.recruit-top-l img {
  width: clamp(300px, 90vw, 350px);
  height: auto;
  aspect-ratio: 3 / 2;
}

@media screen and (min-width: 768px) {
  .recruit-top-l img {
    width: clamp(300px, 39.47vw, 600px);
  }
}

.upd-display {
  text-align: right !important;
}

@media screen and (min-width: 768px) {
  .upd-display {
    text-align: left !important;
  }
}

.recruit-top-r {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .recruit-top-r {
    width: 100%;
  }
}

.recruit-top-r h2 {
  font-size: clamp(1.7rem, 3.78vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #274c77;
  position: relative;
  padding-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .recruit-top-r h2 {
    padding-bottom: 25px;
  }
}

.recruit-top-r h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: #007e72;
}

.recruit-top-r p {
  font-size: clamp(1.4rem, 3.11vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #666;
  padding-top: 15px;
}

@media screen and (min-width: 768px) {
  .recruit-top-r p {
    padding-top: 25px;
  }
}

/* detail */
.container-recruit-detail {
  max-width: 1100px;
  width: 90%;
  margin: 50px auto;
}

@media screen and (min-width: 768px) {
  .container-recruit-detail {
    margin: 150px auto;
  }
}

.recruit-heading {
  width: 100%;
  display: flex;
  align-items: center;
  background-color: #007e72;
  position: relative;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .recruit-heading {
    margin-top: 100px;
  }
}

.recruit-heading h2 {
  font-size: clamp(1.5rem, 3.49vw, 2rem);
  font-weight: 500;
  color: #fff;
  padding: 8px 15px;
}

@media screen and (min-width: 768px) {
  .recruit-heading h2 {
    padding: 12px 20px;
  }
}

.recruit-heading h2::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
  background-color: #fff;
  width: 3px;
  height: 50%;
}

@media screen and (min-width: 768px) {
  .recruit-heading h2::before {
    left: 10px;
    width: 5px;
  }
}

.detail-row {
  display: flex;
  align-items: stretch;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .detail-row {
    flex-direction: row;
    border-bottom: 1px solid #ccc;
  }
}

.detail-row h3 {
  font-size: clamp(1.4rem, 3.5vw, 1.7rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #333;
  padding: 15px 15px 5px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
  .detail-row h3 {
    padding: 20px 5px 20px 15px;
    width: 165px;
    border-bottom: 1px solid #bb9f06;
  }
}

.detail-row p {
  font-size: clamp(1.4rem, 3.5vw, 1.7rem);
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #666;
  padding: 8px 15px 15px;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .detail-row p {
    padding: 20px 15px 20px 70px;
  }
}

.recruit-detail-none_top {
  width: 90%;
  margin: 60px auto;
}

@media screen and (min-width: 768px) {
  .recruit-detail-none_top {
    width: 80%;
    margin: 100px auto;
  }
}

.recruit-detail-none_top h2 {
  font-size: clamp(1.5rem, 3.49vw, 2rem);
  font-weight: 500;
  color: #274c77;
  padding: 8px 15px;
  margin-bottom: 40px;
}

.recruit-detail-none_top a {
  font-size: clamp(1.4rem, 3.25vw, 1.6rem);
  font-weight: 500;
  color: #333;
}

@media (hover: hover) {
  .recruit-detail-none_top a:hover {
    text-decoration: underline;
  }
}

/* entry-flow */
.wrapper-flow {
  width: 100%;
  padding: 25px 0 150px;
  position: relative;
  background-color: #66b2aa;
  background-image: url(../img/bg-line_r.webp);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 200px;
  background-blend-mode: screen;
}

@media screen and (min-width: 768px) {
  .wrapper-flow {
    padding: 100px 0 250px;
    background-size: 400px;
  }
}

.container-flow-detail {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}

.container-flow-detail h2 {
  font-size: clamp(2rem, 3.7vw, 3.5rem);
  font-weight: bold;
  line-height: 0.8;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.container-flow-detail h2 span {
  font-size: clamp(1.3rem, 0.5em, 1.7rem);
  font-weight: 500;
}

.box-chart {
  width: 100%;
  margin: 10px auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

@media screen and (min-width: 540px) {
  .box-chart {
    padding: 20px;
    align-items: center;
    flex-direction: row;
    gap: clamp(45px, 5.92vw, 90px);
  }
}

.flow-l {
  width: clamp(225px, 29vw, 290px);
  flex-shrink: 0;
}

.flow-l h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.75;
  color: #672a4e;
}

.flow-r p {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: #333;
}

.next-flow {
  width: 100px;
  height: 20px;
  margin: 0 auto;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #ddebe3;
}

@media screen and (min-width: 540px) {
  .next-flow {
    width: 150px;
    height: 30px;
  }
}

.btn-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 20px 0;
  background-color: rgba(51, 51, 51, 0.45);
  z-index: 20;
}

.btn-entry a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(300px, 90vw, 390px);
  height: 60px;
  margin: 0 auto;
  background-color: #672a4e;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #fff;
  transition: background-color 0.3s;
}

@media screen and (min-width: 768px) {
  .btn-entry a {
    width: 500px;
    font-size: 2.4rem;
  }
}

.btn-entry a::after {
  content: '';
  background-image: url(../img/icon_nav-arrow_w.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: clamp(20px, 8.95vw, 60px);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 768px) {
  .btn-entry a::after {
    right: 90px;
    width: 25px;
    height: 25px;
  }
}

@media (hover: hover) {
  .btn-entry a:hover {
    background-color: #7e3c63;
  }
}

/* ******************************************************* */

/* inquiry faq */

/* ******************************************************* */
.box-faq {
  margin-top: 20px;
  padding: 5px 0 20px;
}

@media screen and (min-width: 768px) {
  .box-faq {
    margin-top: 50px;
    padding: 35px 0 50px;
  }
}

.container-faq {
  width: 90%;
  margin: 0 auto;
}

.container-faq h3 {
  font-size: clamp(1.4rem, 3.25vw, 2.1rem);
  font-weight: 500;
  line-height: 1.4;
  color: #333;
  padding: 15px 0 15px 35px;
  border-bottom: 3px dotted #b3b3b3;
  background-image: url(../img/icon_q.webp);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 20px;
}

@media screen and (min-width: 768px) {
  .container-faq h3 {
    font-size: 2.1rem;
    padding: 15px 0 15px 40px;
    background-size: 28px;
  }
}

.container-faq p {
  font-size: clamp(1.5rem, 3.49vw, 2.3rem);
  font-weight: 600;
  line-height: 1.4;
  color: #007e72;
  white-space: pre-wrap;
  padding: 15px 0 0 35px;
  background-image: url(../img/icon_a.webp);
  background-repeat: no-repeat;
  background-position: top 14px left;
  background-size: 25px;
}

@media screen and (min-width: 768px) {
  .container-faq p {
    font-size: 2.3rem;
    padding: 15px 0 0 40px;
    background-position: top 20px left;
    background-size: 30px;
  }
}

.container-faq p a {
  font-size: clamp(1.5rem, 3.49vw, 2.3rem);
  font-weight: 600;
  line-height: 1.4;
  color: #007e72;
  white-space: pre-wrap;
}

@media screen and (min-width: 768px) {
  .container-faq p a {
    font-size: 2.3rem;
  }
}

@media (hover: hover) {
  .container-faq p a:hover {
    text-decoration: underline;
  }
}

.container-contact {
  width: 100%;
  margin: 80px auto 60px;
}

@media screen and (min-width: 768px) {
  .container-contact {
    margin: 150px auto;
  }
}

.btn-inquiry {
  width: 100%;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

@media screen and (min-wdith: 768px) {
  .btn-inquiry {
    margin-bottom: 100px;
  }
}

.btn-inquiry a {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 750px;
  width: 85%;
  height: 80px;
  background-color: #bb9f06;
  font-size: clamp(2rem, 3.15vw, 3.4rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  text-align: center;
  background-image: url(../img/icon_nav-arrow_w.webp);
  background-repeat: no-repeat;
  background-position: center right 13%;
  background-size: 20px;
  transition: background-color 0.3s;
}

@media screen and (min-width: 768px) {
  .btn-inquiry a {
    width: 70%;
    height: 120px;
    background-size: 35px;
  }
}

@media (hover: hover) {
  .btn-inquiry a:hover {
    background-color: #cfb313;
  }
}

#contact {
  text-align: center;
}

#contact p {
  font-size: clamp(1.4rem, 3.26vw, 1.6rem);
}

#contact div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

#contact img {
  width: 22px;
  height: 14px;
}

#contact p a {
  font-size: clamp(1.8rem, 4.18vw, 2.2rem);
  font-weight: 600;
  padding-right: 5px;
}

/* ******************************************************* */

/* inquiry family */

/* ******************************************************* */
.box-family {
  margin-top: 25px;
  padding: 30px 0 20px;
}

@media screen and (min-width: 768px) {
  .box-family {
    margin-top: 50px;
    padding: 50px 0;
  }
}

.family-head {
  width: clamp(250px, 76.9vw, 480px);
  height: auto;
  background-color: #007e72;
  padding: 10px 0 10px 15px;
  clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
}

@media screen and (min-width: 768px) {
  .family-head {
    padding: 20px;
  }
}

.family-head h2 {
  font-size: clamp(2.2rem, 5.11vw, 3.6rem);
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #fff;
  padding-left: 35px;
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 25px;
}

@media screen and (min-width: 768px) {
  .family-head h2 {
    padding-left: 50px;
    background-size: 40px;
  }
}

.system h2 {
  background-image: url(../img/icon_system.webp);
}

.health h2 {
  background-image: url(../img/icon_health.webp);
}

.discount h2 {
  background-image: url(../img/icon_bus-discount.webp);
}

.benefits h2 {
  background-image: url(../img/icon_benefits.webp);
}

.container-family-item {
  width: 95%;
  margin: 0 auto;
  border-bottom: 3px dotted #b3b3b3;
  padding: 15px 10px;
}

@media screen and (min-width: 768px) {
  .container-family-item {
    width: 90%;
    padding: 15px 0;
  }
}

.container-family-item:last-of-type {
  border-bottom: none;
}

.item-head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

@media screen and (min-width: 768px) {
  .item-head {
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
}

.item-head h3 {
  font-size: clamp(1.8rem, 4.5vw, 2.3rem);
  font-weight: bold;
  color: #274c77;
}

.item-head p {
  font-size: clamp(1.5rem, 3.84vw, 2rem);
  font-weight: bold;
  color: #9a879d;
}

.container-family-item > p {
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 500;
  color: #4d4d4d;
}

/* ******************************************************* */

/* work voice */

/* ******************************************************* */
.container-interview {
  max-width: clamp(280px, 89.7vw, 900px);
  width: 90%;
  margin: 20px auto;
  background-color: #fff;
  box-shadow: 6px 6px 8px rgba(147, 147, 147, 0.6);
}

@media screen and (min-width: 1024px) {
  .container-interview {
    max-width: 1100px;
    width: 80%;
    margin: 50px auto;
  }
}

.first-container-interview {
  margin-top: 0;
}

.interview-img-top {
  position: relative;
}

.interview-img-top .box-img {
  width: 100%;
  text-align: center;
}

.interview-img-top picture img {
  max-width: 350px;
  max-height: 180px;
}

@media screen and (min-width: 768px) {
  .interview-img-top picture img {
    max-width: 1100px;
    max-height: 570px;
  }
}

.profile {
  position: static;
  background-color: rgba(39, 76, 119, 0.8);
  max-width: none;
  width: 90%;
  height: auto;
  margin: 10px auto;
  padding: 20px;
}

@media screen and (min-width: 1024px) {
  .profile {
    position: absolute;
    bottom: 30px;
    right: 30px;
    max-width: 300px;
    padding: 20px;
  }
}

.profile h3 {
  font-size: clamp(2rem, 2.55vw, 2.8rem);
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 25px;
}

.profile p {
  font-size: clamp(1.4rem, 1.54vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
}

.profile .join-year {
  font-size: clamp(1.3rem, 1.45vw, 1.6rem);
}

.profile-line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  margin: 15px 0;
}

.profile p:last-of-type {
  font-size: clamp(1.5rem, 1.72vw, 1.9rem);
  font-weight: bold;
}

/* container-text */
.container-interview > h3 {
  width: 90%;
  margin: 0 auto;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #274c77;
  padding-top: 25px;
}

@media screen and (min-width: 1024px) {
  .container-interview > h3 {
    padding-top: 50px;
  }
}

.interview-box {
  width: 90%;
  margin: 0 auto;
  padding: 25px 0 50px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  gap: 20px;
}

@media screen and (min-width: 1024px) {
  .interview-box {
    padding: 25px 0 50px;
    align-items: flex-start;
    flex-direction: row;
    gap: 25px;
  }
}

@media screen and (min-width: 1024px) {
  .row-reverse {
    flex-direction: row-reverse;
  }
}

.interview-text p {
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.04em;
  color: #666;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  .interview-text p {
    margin-bottom: 40px;
  }
}

.interview-text p:last-of-type {
  margin-bottom: 0;
}

.interview-img {
  flex-shrink: 0;
}

.interview-img picture img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1024px) {
  .interview-img picture img {
    width: clamp(280px, 36.23vw, 500px);
    height: clamp(250px, 32.6vw, 450px);
  }
}

/* ON/OFF */
.box-interview {
  margin-bottom: 20px;
  padding: 25px 0;
}

@media screen and (min-width: 768px) {
  .box-interview {
    margin-bottom: 50px;
    padding: 50px 0;
  }
}

.box-interview_onoff {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 1024px) {
  .box-interview_onoff {
    align-items: flex-start;
    flex-direction: row;
    gap: 40px;
  }
}

.onoff-head h3 {
  font-size: clamp(1.8rem, 3.8vw, 3.8rem);
  font-weight: bold;
  color: #274c77;
  margin-bottom: 25px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .onoff-head h3 {
    margin-bottom: 40px;
  }
}

.onoff-head h3::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 0;
  background: linear-gradient(to right, #e6e6e6 0%, #e6e6e6 75%, #fff 100%);
  max-width: 450px;
  width: 90%;
  height: 10px;
}

@media screen and (min-width: 768px) {
  .onoff-head h3::after {
    bottom: -10px;
    width: 100%;
  }
}

.onoff-head h3 span {
  font-size: 0.72em;
  padding-left: 10px;
}

@media screen and (min-width: 768px) {
  .onoff-head h3 span {
    font-size: 0.52em;
    padding-left: 20px;
  }
}

.off-ribbon {
  position: absolute;
  top: clamp(75px, 17.44vw, 85px);
  left: 0;
  background-color: #fbb13c;
  clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
  padding: 5px 70px 10px 30px;
}

@media screen and (min-width: 768px) {
  .off-ribbon {
    top: 140px;
    padding: 5px 80px 10px 60px;
  }
}

.on-ribbon {
  text-align: right;
  margin-bottom: 15px;
}

@media screen and (min-width: 1024px) {
  .on-ribbon {
    margin-bottom: 0;
  }
}

.on-ribbon div {
  position: static;
  display: inline-block;
  background-color: #007e72;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%, 5% 50%);
  padding: 5px 30px 10px 70px;
}

@media screen and (min-width: 1024px) {
  .on-ribbon div {
    position: absolute;
    right: 0;
    bottom: 300px;
    align-self: normal;
    transform: translateX(0);
    padding: 5px 60px 10px 80px;
  }

  .b-adjust div {
    bottom: 350px;
  }
}

.off-ribbon h3,
.on-ribbon h3 {
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #fff;
}

.off-ribbon h3 span,
.on-ribbon h3 span {
  font-size: 1.25em;
}

.off-text {
  margin-top: 80px;
}

@media screen and (min-width: 768px) {
  .off-text {
    margin-top: 120px;
  }
}

.on-text {
  margin-top: 0;
}

@media screen and (min-width: 1024px) {
  .on-text {
    margin-top: 90px;
  }
}

.off-text p,
.on-text p {
  font-size: clamp(1.4rem, 3.26vw, 1.8rem);
  font-weight: 500;
  color: #666;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .off-text p,
  .on-text p {
    margin-bottom: 35px;
  }
}

.off-text p:last-of-type,
.on-text p:last-of-type {
  margin-bottom: 0;
}

.off-r {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: clamp(4px, 1.1vw, 10px);
  flex-shrink: 0;
}

@media screen and (min-width: 1024px) {
  .off-r {
    flex-direction: column;
    gap: 20px;
  }
}

.off-r picture img {
  width: 150px;
  height: 125px;
}

@media screen and (min-width: 768px) {
  .off-r picture img {
    width: 300px;
    height: 250px;
  }
}

.onoff-line {
  width: 90%;
  height: 1px;
  background-color: #274c77;
  margin: 25px auto;
}

.on-l picture img {
  width: clamp(200px, 80vw, 400px);
  height: clamp(155px, 61.6vw, 310px);
}

@media screen and (min-width: 1024px) {
  .on-l picture img {
    width: clamp(245px, 32vw, 400px);
    height: clamp(190px, 24.8vw, 310px);
  }
}

/* ******************************************************* */

/* work woman */

/* ******************************************************* */
.box-woman_l {
  border-radius: 0;
  margin: 25px auto 0;
  padding: 20px 0 25px;
}

@media screen and (min-width: 768px) {
  .box-woman_l {
    margin: 50px auto 0;
    padding: 50px 0;
  }
}

.mt0 {
  margin-top: 0;
}

.inner-container {
  width: 93%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .inner-container {
    align-items: flex-start;
    flex-direction: row;
    gap: 35px;
  }
}

.box-left picture img {
  width: 310px;
  height: 226px;
}

@media screen and (min-width: 768px) {
  .box-left picture img {
    width: clamp(300px, 40vw, 500px);
    height: clamp(224px, 29.2vw, 365px);
  }
}

.box-right h3 {
  font-size: clamp(2rem, 4.65vw, 2.8rem);
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #672a4e;
  padding: 0 10px 20px;
  border-bottom: 2px solid #b3b3b3;
}

@media screen and (min-width: 768px) {
  .box-right h3 {
    font-size: clamp(2rem, 2.33vw, 2.8rem);
    padding: 0 10px 25px;
  }
}

.box-right span {
  display: block;
  font-size: clamp(2rem, 4.65vw, 3.5rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #333;
  padding: 20px 10px 5px;
}

@media screen and (min-width: 768px) {
  .box-right span {
    font-size: clamp(2rem, 2.92vw, 3.5rem);
    padding: 25px 10px 15px;
  }
}

.box-right > p {
  font-size: clamp(1.4rem, 3.26vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #333;
  margin-bottom: 25px;
  padding: 0 10px;
}

@media screen and (min-width: 768px) {
  .box-right > p {
    font-size: clamp(1.4rem, 1.67vw, 2rem);
    margin-bottom: 50px;
  }
}

.box-right a,
.woman-message a {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: clamp(280px, 65vw, 410px);
  height: clamp(50px, 11.6vw, 60px);
  background-color: #d4145a;
  transition: background-color 0.3s;
}

@media screen and (min-width: 768px) {
  .box-right a,
  .woman-message a {
    width: clamp(280px, 32.8vw, 410px);
    height: clamp(50px, 11.6vw, 60px);
  }
}

@media (hover: hover) {
  .box-right a:hover,
  .woman-message a:hover {
    background-color: #e63777;
  }
}

.box-right a p,
.woman-message a p {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
}

@media screen and (min-width: 768px) {
  .box-right a p,
  .woman-message a p {
    font-size: 2.2rem;
  }
}

.box-right a p::after,
.woman-message a p::after {
  content: '';
  background-image: url(../img/icon_nav-arrow_w.webp);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

/* woman-talk */
.box-woman_talk {
  padding: 0;
  position: relative;
}

.box-woman_talk picture img {
  width: 100%;
  height: auto;
  border-radius: 30px 30px 0 0;
}

@media screen and (min-width: 768px) {
  .box-woman_talk picture img {
    border-radius: 60px 60px 0 0;
  }
}

.woman-message {
  width: 90%;
  margin: 0 auto;
  padding: 10px 0 15px;
  position: static;
  transform: translateX(0);
}

@media screen and (min-width: 768px) {
  .woman-message {
    position: absolute;
    top: clamp(180px, 24vw, 300px);
    left: 50%;
    transform: translateX(-50%);
  }
}

.woman-message > p {
  font-size: clamp(1.6rem, 1.84vw, 2.3rem);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow:
    1px 1px 3px rgba(237, 30, 121, 0.75),
    1px -1px 3px rgba(237, 30, 121, 0.75),
    -1px 1px 3px rgba(237, 30, 121, 0.75),
    -1px -1px 3px rgba(237, 30, 121, 0.75);
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .woman-message > p {
    text-shadow:
      4px 4px 7px rgba(237, 30, 121, 0.75),
      4px -4px 7px rgba(237, 30, 121, 0.75),
      -4px 4px 7px rgba(237, 30, 121, 0.75),
      -4px -4px 7px rgba(237, 30, 121, 0.75);
    margin-bottom: clamp(70px, 9.2vw, 110px);
  }
}

/* ******************************************************* */

/* work interviewer */

/* ******************************************************* */
.container-interviewer {
  width: 100%;
  position: relative;
  background-color: #ddebe3;
  background-image: url(../img/bg-line_lw.webp);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 200px;
  background-blend-mode: screen;
}

@media screen and (min-width: 768px) {
  .container-interviewer {
    background-size: 400px;
    padding-bottom: 50px;
  }
}

.interviewer-main {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 768px) {
  .interviewer-main {
    width: 90vw;
    margin: 0 0 0 auto;
  }
}

.interviewer-main img {
  max-width: none;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translateX(0);
  border-radius: 0;
}

@media screen and (min-width: 768px) {
  .interviewer-main img {
    display: block;
    margin-left: auto;
    width: auto;
    height: 100%;
    border-radius: 0 0 0 60px;
  }
}

.fv_contents {
  width: 100%;
  position: absolute;
  bottom: clamp(15px, 3.49vw, 60px);
  left: 0;
}

@media screen and (min-width: 768px) {
  .fv_contents {
    bottom: 100px;
    left: clamp(0px, calc(0.889 * 100vw - 1289px), 500px);
  }
}

.fv_contents .ribbon {
  max-width: clamp(110px, 38vw, 400px);
  height: auto;
  background-color: #d4145a;
  clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
  padding: 10px 20px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .fv_contents .ribbon {
    max-width: 400px;
    padding: 15px 100px 15px 50px;
    margin-bottom: 50px;
  }
}

.fv_contents .ribbon h1 {
  font-size: clamp(1.6rem, 3.72vw, 3.7rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
}

.fv_contents h2 {
  width: 88%;
  margin: 0 auto;
  font-size: clamp(2rem, 4.65vw, 4.4rem);
  font-weight: bold;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow:
    1px 1px 3px rgba(237, 30, 121, 0.75),
    1px -1px 3px rgba(237, 30, 121, 0.75),
    -1px 1px 3px rgba(237, 30, 121, 0.75),
    -1px -1px 3px rgba(237, 30, 121, 0.75);
}

@media screen and (min-width: 768px) {
  .fv_contents h2 {
    font-size: 4.4rem;
    text-shadow:
      4px 4px 7px rgba(237, 30, 121, 0.75),
      4px -4px 7px rgba(237, 30, 121, 0.75),
      -4px 4px 7px rgba(237, 30, 121, 0.75),
      -4px -4px 7px rgba(237, 30, 121, 0.75);
    padding-left: 50px;
  }
}

.box-woman_d {
  border-radius: 0;
  margin: 25px auto 0;
  padding: 20px 0 25px;
}

@media screen and (min-width: 768px) {
  .box-woman_d {
    margin: 50px auto 0;
    padding: 50px 0;
  }
}

.box-interview_d {
  width: 90%;
  margin: 0 auto;
}

.box-interview_d h2 {
  font-size: clamp(1.8rem, 4.18vw, 2.4rem);
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #672a4e;
  margin-bottom: 40px;
}

.box-interview_d p {
  font-size: clamp(1.4rem, 3.25vw, 1.8rem);
  font-weight: 500;
  line-height: 1.67;
  letter-spacing: 0.04em;
  color: #666;
  margin-top: clamp(20px, 4.65vw, 50px);
}

.prev-list {
  max-width: 1100px;
  width: 90%;
  margin: 30px auto;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .prev-list {
    margin: 70px auto;
  }
}

.prev-list a {
  font-size: clamp(1.4rem, 3.25vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #4d4d4d;
  padding-right: 20px;
  background-image: url(../img/icon_arrow-prev.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 18px;
}

@media (hover: hover) {
  .prev-list a:hover {
    text-decoration: underline;
  }
}

/* ******************************************************* */

/* work talk-session */

/* ******************************************************* */
.talk-fv_contents {
  width: 100%;
  position: absolute;
  bottom: clamp(15px, 3.49vw, 60px);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .talk-fv_contents {
    bottom: 100px;
    left: clamp(0px, calc(0.889 * 100vw - 1289px), 500px);
    transform: translateX(clamp(-380px, calc(-0.95 * 100vw + 1444px), 0px));
  }
}

.talk-fv_contents h1 {
  font-size: clamp(2.8rem, 5.13vw, 7.8rem);
  font-weight: 800;
  line-height: 0.6;
  letter-spacing: 0.06em;
  color: #fff;
  text-shadow:
    1px 1px 3px rgba(237, 30, 121, 0.75),
    1px -1px 3px rgba(237, 30, 121, 0.75),
    -1px 1px 3px rgba(237, 30, 121, 0.75),
    -1px -1px 3px rgba(237, 30, 121, 0.75);
  text-align: center;
  position: relative;
}

@media screen and (min-width: 768px) {
  .talk-fv_contents h1 {
    line-height: 1;
    text-shadow:
      4px 4px 7px rgba(237, 30, 121, 0.75),
      4px -4px 7px rgba(237, 30, 121, 0.75),
      -4px 4px 7px rgba(237, 30, 121, 0.75),
      -4px -4px 7px rgba(237, 30, 121, 0.75);
  }
}

.talk-fv_contents img {
  max-width: 960px;
  width: clamp(300px, 90%, 960px);
  height: auto;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .talk-fv_contents img {
    width: clamp(300px, 70%, 960px);
  }
}

.talk-fv_contents h2 {
  font-size: clamp(1.4rem, 1.97vw, 3rem);
  font-weight: bold;
  line-height: 0.6;
  color: #fff;
  text-shadow:
    1px 1px 3px rgba(237, 30, 121, 0.75),
    1px -1px 3px rgba(237, 30, 121, 0.75),
    -1px 1px 3px rgba(237, 30, 121, 0.75),
    -1px -1px 3px rgba(237, 30, 121, 0.75);
  text-align: center;
}

@media screen and (min-width: 768px) {
  .talk-fv_contents h2 {
    line-height: 1;
    text-shadow:
      4px 4px 7px rgba(237, 30, 121, 0.75),
      4px -4px 7px rgba(237, 30, 121, 0.75),
      -4px 4px 7px rgba(237, 30, 121, 0.75),
      -4px -4px 7px rgba(237, 30, 121, 0.75);
  }
}

.box-woman_d > h2 {
  font-size: clamp(2rem, 4.44vw, 4rem);
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #007e72;
  text-align: center;
  margin-bottom: 12px;
}

@media screen and (min-width: 768px) {
  .box-woman_d > h2 {
    font-size: 4rem;
    margin-bottom: 30px;
  }
}

.talksession-img {
  position: relative;
}

.talksession-img h3 {
  position: static;
  width: 95%;
  font-size: clamp(1.6rem, 3.55vw, 2.2rem);
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #fff;
  margin-top: 10px;
  padding: 7px 12px;
  background-color: #d4145a;
  clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
}

@media screen and (min-width: 768px) {
  .talksession-img h3 {
    position: absolute;
    bottom: 35px;
    left: 0;
    width: 70%;
    padding: 15px 50px;
  }
}

.talk-session {
  margin: 20px 0;
}

@media screen and (min-width: 768px) {
  .talk-session {
    margin: 30px 0;
  }
}

.talk-session h4 {
  font-size: clamp(1.5rem, 3.48vw, 2rem);
  font-weight: bold;
  letter-spacing: 0.04em;
  color: #d4145a;
}

.talk-session p {
  font-size: clamp(1.4rem, 3.25vw, 1.8rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #666;
  white-space: pre-wrap;
  margin-top: 0;
}
