@charset "UTF-8";
/*
width: percent(%化したい要素の幅, 比率計算の基準幅);
width: percent(560, 1200);
*/
html {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scroll-padding-top: 60rem;
}
@media screen and (min-width: 768px), print {
  html {
    scroll-padding-top: 80rem;
  }
}
html.preload {
  font-size: 1px !important;
}
html.preload * {
  transition: none !important;
  visibility: hidden;
  max-width: 100%;
}
@media (max-width: 767px) {
  html {
    font-size: calc(var(--vw) / 375);
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  html {
    font-size: calc(var(--vw) / 1440);
  }
}
@media (min-width: 1600.1px) {
  html {
    font-size: 1.2px;
  }
}

html {
  overflow-x: hidden;
}
html.no-smooth {
  scroll-behavior: auto !important;
}

body {
  color: #000;
  font-size: 15rem;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: justify;
  text-justify: inter-ideograph;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  background: #f5f5f5;
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 18rem;
  }
}
body.is-locked {
  position: fixed;
  left: 0;
  width: 100%;
  overflow: hidden;
}

a,
input[type=button],
input[type=submit],
button,
.btn-trigger {
  color: #000;
  text-decoration: underline;
}
@media screen and (min-width: 768px), print {
  a,
  input[type=button],
  input[type=submit],
  button,
  .btn-trigger {
    transition: 0.2s;
  }
  a:hover,
  input[type=button]:hover,
  input[type=submit]:hover,
  button:hover,
  .btn-trigger:hover {
    text-decoration: none;
    opacity: 0.8;
  }
}
a:visited,
input[type=button]:visited,
input[type=submit]:visited,
button:visited,
.btn-trigger:visited {
  color: #000;
}

.sp-only {
  display: block !important;
}
@media screen and (min-width: 768px), print {
  .sp-only {
    display: none !important;
  }
}

.pc-only {
  display: none !important;
}
@media screen and (min-width: 768px), print {
  .pc-only {
    display: block !important;
  }
}

section,
nav,
header,
footer,
article,
p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  color: #000;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul li {
  margin: 0;
  padding: 0;
}

dl,
dt,
dd {
  margin: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input,
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  caret-color: transparent;
}

/*------------------------------------------*/
header {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: 60rem;
}
@media screen and (min-width: 768px), print {
  header {
    height: 80rem;
  }
}
header .inner {
  height: 100%;
  padding: 0 20rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 768px), print {
  header .inner {
    padding: 0 50rem;
  }
}
header .inner .logo {
  z-index: 999;
}
@media screen and (min-width: 768px), print {
  header .inner .logo {
    display: flex;
    align-items: center;
    gap: 30rem;
  }
}
header .inner .logo a img {
  width: 102rem;
}
@media screen and (min-width: 768px), print {
  header .inner .logo a img {
    width: 145rem;
  }
}
header .inner .logo h1,
header .inner .logo p {
  display: none;
}
@media screen and (min-width: 768px), print {
  header .inner .logo h1,
  header .inner .logo p {
    display: block;
    font-weight: 400;
    font-size: 12rem;
    line-height: 1.5;
  }
}
header .inner .menu-container {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px), print {
  header .inner .menu-container {
    position: relative;
    overflow: visible;
  }
}
header .inner .menu-container .menu-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  top: 0;
  right: 0;
  height: 60rem;
  width: 60rem;
  cursor: pointer;
  z-index: 888;
  caret-color: transparent;
  padding-top: 14rem;
  background-color: #084A8D;
}
@media screen and (min-width: 768px), print {
  header .inner .menu-container .menu-button {
    display: none;
  }
}
header .inner .menu-container .menu-button .bar {
  display: block;
  width: 28rem;
  height: 2rem;
  background: #fff;
  transition: 0.4s;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
header .inner .menu-container .menu-button .bar:nth-child(1) {
  top: 16rem;
}
header .inner .menu-container .menu-button .bar:nth-child(2) {
  top: 23rem;
}
header .inner .menu-container .menu-button .bar:nth-child(3) {
  top: 30rem;
}
header .inner .menu-container .menu-button .menu-text {
  position: absolute;
  left: 50%;
  top: 38rem;
  transform: translateX(-50%);
  font-size: 10rem;
  line-height: 1;
  font-weight: 500;
  color: #000;
}
header .inner .menu-container .menu-button .menu-text::before {
  color: #fff;
  content: "MENU";
  letter-spacing: 0;
}
header .inner .menu-container #menu-toggle:checked ~ .menu-button .bar:nth-child(1) {
  top: 23rem;
  transform: translateX(-50%) rotate(45deg);
}
header .inner .menu-container #menu-toggle:checked ~ .menu-button .bar:nth-child(2) {
  opacity: 0;
}
header .inner .menu-container #menu-toggle:checked ~ .menu-button .bar:nth-child(3) {
  top: 23rem;
  transform: translateX(-50%) rotate(-45deg);
}
header .inner .menu-container #menu-toggle:checked ~ .menu-button .menu-text {
  white-space: nowrap;
}
header .inner .menu-container #menu-toggle:checked ~ .menu-button .menu-text::before {
  color: #fff;
  content: "CLOSE";
  letter-spacing: 0;
}
header .inner .menu-container #menu-toggle {
  display: none;
}
header .inner .menu-container #menu-toggle:checked ~ .menu {
  opacity: 1;
  visibility: visible;
}
header .inner .menu-container .menu {
  display: flex;
  opacity: 0;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  z-index: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px), print {
  header .inner .menu-container .menu {
    visibility: visible;
    top: 0;
    height: 80rem;
    opacity: 1;
    position: static;
    overflow: visible;
    overflow-y: visible;
  }
}
header .inner .menu-container .menu ul.link {
  display: flex;
  flex-direction: column;
  gap: 50rem;
  text-align: center;
  height: 100%;
  justify-content: center;
}
@media screen and (min-width: 768px), print {
  header .inner .menu-container .menu ul.link {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0 40rem;
    height: 80rem;
  }
}
header .inner .menu-container .menu ul.link li {
  line-height: 1;
}
@media screen and (min-width: 768px), print {
  header .inner .menu-container .menu ul.link li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }
}
header .inner .menu-container .menu ul.link li a {
  font-size: 25rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}
@media screen and (min-width: 768px), print {
  header .inner .menu-container .menu ul.link li a {
    margin-top: 20rem;
    font-size: 16rem;
    font-weight: 400;
  }
}
header .inner .menu-container .menu ul.link li a.active {
  color: #084A8D;
}
@media screen and (min-width: 768px), print {
  header .inner .menu-container .menu ul.link li a.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    background: #084A8D;
  }
}
header .inner .menu-container .menu ul.link li a.active2 {
  color: #BF206D;
}
@media screen and (min-width: 768px), print {
  header .inner .menu-container .menu ul.link li a.active2::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5rem;
    background: #BF206D;
  }
}

footer {
  background: #333;
  color: #fff;
  font-size: 12rem;
  height: 60rem;
}
@media screen and (min-width: 768px), print {
  footer {
    font-size: 14rem;
    height: 80rem;
  }
}
footer .inner {
  padding: 0 0 0 20rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 768px), print {
  footer .inner {
    padding: 0 0 0 50rem;
  }
}
footer .inner .copy {
  font-size: 12rem;
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 768px), print {
  footer .inner .copy {
    font-size: 14rem;
  }
}
footer .inner .pagetop a {
  background: #444;
  color: #fff;
  height: 60rem;
  width: 60rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media screen and (min-width: 768px), print {
  footer .inner .pagetop a {
    height: 80rem;
    width: 80rem;
  }
}
footer .inner .pagetop a span {
  font-size: 30rem;
}
@media screen and (min-width: 768px), print {
  footer .inner .pagetop a span {
    font-size: 40rem;
  }
}

#pankuzu {
  margin-top: 40rem;
  background: #fff;
}
@media screen and (min-width: 768px), print {
  #pankuzu {
    margin-top: 80rem;
  }
}
@media screen and (min-width: 768px), print {
  #pankuzu .inner {
    max-width: none;
  }
}
#pankuzu .inner ul {
  display: flex;
  align-items: center;
  gap: 10rem;
  flex-wrap: nowrap;
  height: 50rem;
  font-size: 12rem;
  overflow-x: auto;
  white-space: nowrap;
}
@media screen and (min-width: 768px), print {
  #pankuzu .inner ul {
    height: 60rem;
    font-size: 14rem;
  }
}
#pankuzu .inner ul li {
  display: flex;
  align-items: center;
  gap: 10rem;
}
#pankuzu .inner ul li a {
  text-decoration: none;
  opacity: 0.5;
}
#pankuzu .inner ul li:not(:last-child)::after {
  content: "";
  width: 20rem;
  height: 1px;
  background: #000;
}

main {
  margin-top: 60rem;
}
@media screen and (min-width: 768px), print {
  main {
    margin-top: 80rem;
  }
}
main section .inner {
  padding: 0 20rem;
}
@media screen and (min-width: 768px), print {
  main section .inner {
    max-width: 1440rem;
    margin: 0 auto;
    padding: 0 50rem;
  }
}

/*トップページ------------------------------------------*/
body#top #kv {
  background: linear-gradient(#fff, #f5f5f5);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
body#top #kv .inner {
  background: url(../images/top_kv_sp.png) no-repeat center/cover;
  width: 335rem;
  height: 400rem;
  border-radius: 10rem;
  margin: 20rem 20rem 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
@media screen and (min-width: 768px), print {
  body#top #kv .inner {
    background: url(../images/top_kv_pc.png) no-repeat center/cover;
    width: 1340rem;
    max-width: 1340rem;
    height: 800rem;
    border-radius: 20rem;
    margin: 0 50rem;
  }
}
body#top #kv .inner .en {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px), print {
  body#top #kv .inner .en {
    font-size: 80rem;
  }
}
body#top #kv .inner .en span {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
body#top #kv .inner .en span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #fff;
  bottom: 0.34em;
}
body#top #kv .inner .jp {
  margin-top: 10rem;
  font-size: 14rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#top #kv .inner .jp {
    font-size: 20rem;
  }
}
body#top #policy {
  position: relative;
}
@media screen and (min-width: 768px), print {
  body#top #policy::before {
    content: "";
    z-index: -1;
    background: url(../images/top_bg.svg) no-repeat center/contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
body#top #policy .inner {
  padding: 60rem 40rem;
}
@media screen and (min-width: 768px), print {
  body#top #policy .inner {
    padding: 120rem 0;
    width: 840rem;
    margin: 0 auto;
  }
}
body#top #policy .inner h2 {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px), print {
  body#top #policy .inner h2 {
    position: relative;
  }
}
body#top #policy .inner h2 .en {
  line-height: 1;
}
@media screen and (min-width: 768px), print {
  body#top #policy .inner h2 .en {
    position: absolute;
    left: -60rem;
    top: 0;
    transform: rotate(90deg);
    transform-origin: left center;
  }
}
body#top #policy .inner h2 .en > span {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12rem;
  line-height: 1;
  color: #084A8D;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
@media screen and (min-width: 768px), print {
  body#top #policy .inner h2 .en > span {
    font-size: 15rem;
  }
}
body#top #policy .inner h2 .en > span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #084A8D;
  bottom: 0.2em;
}
body#top #policy .inner h2 .jp {
  margin-top: 10rem;
  font-size: 22rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#top #policy .inner h2 .jp {
    font-size: 35rem;
  }
}
body#top #policy .inner h2 .jp .mini {
  font-size: 12rem;
}
@media screen and (min-width: 768px), print {
  body#top #policy .inner h2 .jp .mini {
    font-size: 15rem;
  }
}
body#top #policy .inner p {
  margin-top: 30rem;
  font-size: 17rem;
}
@media screen and (min-width: 768px), print {
  body#top #policy .inner p {
    margin-top: 60rem;
    font-size: 24rem;
  }
}
body#top #policy .inner .btn-area {
  margin-top: 30rem;
  display: flex;
  flex-direction: column;
  gap: 20rem;
}
@media screen and (min-width: 768px), print {
  body#top #policy .inner .btn-area {
    margin-top: 60rem;
    gap: 40rem;
    flex-direction: row;
    justify-content: space-between;
  }
}
body#top #policy .inner .btn-area .btn {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  body#top #policy .inner .btn-area .btn {
    width: 50%;
  }
}
body#top #policy .inner .btn-area .btn a {
  width: 100%;
  height: 80rem;
  border-radius: 40rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  font-size: 15rem;
  padding: 30rem;
  position: relative;
}
@media screen and (min-width: 768px), print {
  body#top #policy .inner .btn-area .btn a {
    height: 100rem;
    border-radius: 50rem;
    font-size: 18rem;
    padding: 30rem;
  }
}
@media screen and (min-width: 768px), print {
  body#top #policy .inner .btn-area .btn a:hover {
    background: #084A8D;
    color: #fff;
  }
}
body#top #policy .inner .btn-area .btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20rem;
  transform: translateY(-50%);
  background: #fff;
  height: 40rem;
  width: 40rem;
  border-radius: 100%;
}
body#top #policy .inner .btn-area .btn a::after {
  font-size: 20rem;
  font-family: "Material Symbols Outlined";
  content: "\e5c8";
  color: #084A8D;
  position: absolute;
  top: 50%;
  right: 30rem;
  transform: translateY(-50%);
}
body#top #features {
  background: #fff;
}
body#top #features .inner {
  padding: 50rem 40rem;
  display: flex;
  flex-direction: column;
  gap: 30rem;
}
@media screen and (min-width: 768px), print {
  body#top #features .inner {
    flex-direction: row;
    justify-content: space-between;
    gap: calc(80 / 1200 * 100%);
    width: 1200rem;
    padding: 100rem 0;
  }
}
body#top #features .inner .img-area {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  body#top #features .inner .img-area {
    width: calc(560 / 1200 * 100%);
  }
}
body#top #features .inner .img-area img {
  border-radius: 5rem;
}
@media screen and (min-width: 768px), print {
  body#top #features .inner .img-area img {
    border-radius: 10rem;
  }
}
body#top #features .inner .txt-area {
  width: 100%;
}
@media screen and (min-width: 768px), print {
  body#top #features .inner .txt-area {
    width: calc(560 / 1200 * 100%);
  }
}
body#top #features .inner .txt-area h3 {
  display: flex;
  flex-direction: column;
}
body#top #features .inner .txt-area h3 .en {
  line-height: 1;
}
body#top #features .inner .txt-area h3 .en > span {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12rem;
  line-height: 1;
  color: #BF206D;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
@media screen and (min-width: 768px), print {
  body#top #features .inner .txt-area h3 .en > span {
    font-size: 15rem;
  }
}
body#top #features .inner .txt-area h3 .en > span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #BF206D;
  bottom: 0.2em;
}
body#top #features .inner .txt-area h3 .jp {
  margin-top: 10rem;
  font-size: 25rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#top #features .inner .txt-area h3 .jp {
    font-size: 30rem;
  }
}
body#top #features .inner .txt-area h3 .jp .mini {
  font-size: 12rem;
}
@media screen and (min-width: 768px), print {
  body#top #features .inner .txt-area h3 .jp .mini {
    font-size: 15rem;
  }
}
body#top #features .inner .txt-area p {
  margin-top: 20rem;
}
body#top #features .inner .txt-area .btn-area {
  margin-top: 30rem;
}
@media screen and (min-width: 768px), print {
  body#top #features .inner .txt-area .btn-area {
    margin-top: 60rem;
  }
}
body#top #features .inner .txt-area .btn-area .btn a {
  width: 100%;
  height: 80rem;
  border-radius: 40rem;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  font-size: 15rem;
  padding: 30rem;
  position: relative;
}
@media screen and (min-width: 768px), print {
  body#top #features .inner .txt-area .btn-area .btn a {
    width: 430rem;
    height: 100rem;
    border-radius: 50rem;
    font-size: 18rem;
    padding: 30rem;
  }
}
@media screen and (min-width: 768px), print {
  body#top #features .inner .txt-area .btn-area .btn a:hover {
    background: #BF206D;
    color: #f5f5f5;
  }
}
body#top #features .inner .txt-area .btn-area .btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20rem;
  transform: translateY(-50%);
  background: #f5f5f5;
  height: 40rem;
  width: 40rem;
  border-radius: 100%;
}
body#top #features .inner .txt-area .btn-area .btn a::after {
  font-size: 20rem;
  font-family: "Material Symbols Outlined";
  content: "\e5c8";
  color: #BF206D;
  position: absolute;
  top: 50%;
  right: 30rem;
  transform: translateY(-50%);
}

/*会社概要------------------------------------------*/
body#company #kv {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
  background: url(../images/company_kv_sp.png) no-repeat center/cover;
  width: 100%;
  height: 200rem;
}
@media screen and (min-width: 768px), print {
  body#company #kv {
    background: url(../images/company_kv_pc.png) no-repeat center/cover;
    height: 400rem;
  }
}
body#company #kv .inner {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  width: 100%;
}
body#company #kv .inner h1 {
  color: #fff;
}
body#company #kv .inner h1 .en {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px), print {
  body#company #kv .inner h1 .en {
    font-size: 80rem;
  }
}
body#company #kv .inner h1 .en span {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
body#company #kv .inner h1 .en span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #fff;
  bottom: 0.33em;
}
@media screen and (min-width: 768px), print {
  body#company #kv .inner h1 .en span::before {
    bottom: 0.35em;
  }
}
body#company #kv .inner h1 .jp {
  font-size: 14rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#company #kv .inner h1 .jp {
    font-size: 20rem;
  }
}
body#company #biography {
  margin-top: 40rem;
}
@media screen and (min-width: 768px), print {
  body#company #biography {
    margin-top: 80rem;
  }
}
body#company #biography .inner .wrapper {
  padding: 40rem 20rem;
  background: #fff;
  border-radius: 10rem;
}
@media screen and (min-width: 768px), print {
  body#company #biography .inner .wrapper {
    padding: 80rem 70rem;
    border-radius: 20rem;
  }
}
body#company #biography .inner .wrapper h2 {
  display: flex;
  flex-direction: column;
}
body#company #biography .inner .wrapper h2 .en {
  line-height: 1;
}
body#company #biography .inner .wrapper h2 .en > span {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: #084A8D;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
@media screen and (min-width: 768px), print {
  body#company #biography .inner .wrapper h2 .en > span {
    font-size: 20rem;
  }
}
body#company #biography .inner .wrapper h2 .en > span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #084A8D;
  bottom: 0.2em;
}
body#company #biography .inner .wrapper h2 .jp {
  margin-top: 5rem;
  font-size: 30rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#company #biography .inner .wrapper h2 .jp {
    font-size: 40rem;
  }
}
body#company #biography .inner .wrapper .frame {
  margin-top: 30rem;
}
@media screen and (min-width: 768px), print {
  body#company #biography .inner .wrapper .frame {
    margin-top: 40rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row-reverse;
    gap: calc(50 / 1200 * 100%);
  }
}
body#company #biography .inner .wrapper .frame .img-area {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  body#company #biography .inner .wrapper .frame .img-area {
    width: calc(350 / 1200 * 100%);
  }
}
body#company #biography .inner .wrapper .frame .img-area img {
  border-radius: 5rem;
}
@media screen and (min-width: 768px), print {
  body#company #biography .inner .wrapper .frame .img-area img {
    border-radius: 10rem;
  }
}
body#company #biography .inner .wrapper .frame .txt-area {
  margin-top: 30rem;
}
@media screen and (min-width: 768px), print {
  body#company #biography .inner .wrapper .frame .txt-area {
    margin-top: 0;
    width: calc(800 / 1200 * 100%);
  }
}
body#company #profile {
  margin-top: 20rem;
}
@media screen and (min-width: 768px), print {
  body#company #profile {
    margin-top: 40rem;
  }
}
body#company #profile .inner .wrapper {
  padding: 40rem 20rem;
  background: #fff;
  border-radius: 10rem;
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper {
    padding: 80rem 70rem;
    border-radius: 20rem;
  }
}
body#company #profile .inner .wrapper h2 {
  display: flex;
  flex-direction: column;
}
body#company #profile .inner .wrapper h2 .en {
  line-height: 1;
}
body#company #profile .inner .wrapper h2 .en > span {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: #084A8D;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper h2 .en > span {
    font-size: 20rem;
  }
}
body#company #profile .inner .wrapper h2 .en > span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #084A8D;
  bottom: 0.2em;
}
body#company #profile .inner .wrapper h2 .jp {
  margin-top: 5rem;
  font-size: 30rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper h2 .jp {
    font-size: 40rem;
  }
}
body#company #profile .inner .wrapper .table {
  margin-top: 30rem;
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper .table {
    margin-top: 40rem;
  }
}
body#company #profile .inner .wrapper .table table {
  width: 100%;
  border-top: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper .table table {
    border-collapse: collapse;
  }
}
body#company #profile .inner .wrapper .table table colgroup {
  display: none;
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper .table table colgroup {
    display: table-column-group;
  }
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper .table table .col-th {
    width: 14%;
  }
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper .table table .col-td {
    width: 36%;
  }
}
body#company #profile .inner .wrapper .table table tbody {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper .table table tbody {
    display: table-row-group;
  }
}
body#company #profile .inner .wrapper .table table tr {
  display: block;
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper .table table tr {
    display: table-row;
  }
}
body#company #profile .inner .wrapper .table table th,
body#company #profile .inner .wrapper .table table td {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 20rem 20rem;
  border-right: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  text-align: left;
  vertical-align: middle;
  word-break: break-word;
  line-height: 1.8;
  background: #fff;
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper .table table th,
  body#company #profile .inner .wrapper .table table td {
    display: table-cell;
    width: auto;
    padding: 20rem 20rem;
  }
}
body#company #profile .inner .wrapper .table table th {
  background: #f5f5f5;
  font-size: 13rem;
  font-weight: 400;
  padding: 10rem 20rem;
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper .table table th {
    font-size: 18rem;
    padding: 20rem 20rem;
  }
}
body#company #profile .inner .wrapper .table table td {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper .table table td {
    display: table-cell;
  }
}
@media screen and (min-width: 768px), print {
  body#company #profile .inner .wrapper .table table td[colspan] {
    width: auto;
  }
}

/*事業案内------------------------------------------*/
body#works #kv {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
  background: url(../images/works_kv_sp.png) no-repeat center/cover;
  width: 100%;
  height: 200rem;
}
@media screen and (min-width: 768px), print {
  body#works #kv {
    background: url(../images/works_kv_pc.png) no-repeat center/cover;
    height: 400rem;
  }
}
body#works #kv .inner {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  width: 100%;
}
body#works #kv .inner h1 {
  color: #fff;
}
body#works #kv .inner h1 .en {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px), print {
  body#works #kv .inner h1 .en {
    font-size: 80rem;
  }
}
body#works #kv .inner h1 .en span {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
body#works #kv .inner h1 .en span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #fff;
  bottom: 0.33em;
}
@media screen and (min-width: 768px), print {
  body#works #kv .inner h1 .en span::before {
    bottom: 0.35em;
  }
}
body#works #kv .inner h1 .jp {
  font-size: 14rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#works #kv .inner h1 .jp {
    font-size: 20rem;
  }
}
body#works #consulting {
  margin-top: 40rem;
}
@media screen and (min-width: 768px), print {
  body#works #consulting {
    margin-top: 80rem;
  }
}
body#works #consulting .inner .wrapper {
  padding: 40rem 20rem;
  background: #fff;
  border-radius: 10rem;
}
@media screen and (min-width: 768px), print {
  body#works #consulting .inner .wrapper {
    padding: 80rem 70rem;
    border-radius: 20rem;
  }
}
body#works #consulting .inner .wrapper h2 {
  display: flex;
  flex-direction: column;
}
body#works #consulting .inner .wrapper h2 .en {
  line-height: 1;
}
body#works #consulting .inner .wrapper h2 .en > span {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: #084A8D;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
@media screen and (min-width: 768px), print {
  body#works #consulting .inner .wrapper h2 .en > span {
    font-size: 20rem;
  }
}
body#works #consulting .inner .wrapper h2 .en > span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #084A8D;
  bottom: 0.2em;
}
body#works #consulting .inner .wrapper h2 .jp {
  margin-top: 5rem;
  font-size: 30rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#works #consulting .inner .wrapper h2 .jp {
    font-size: 40rem;
  }
}
body#works #consulting .inner .wrapper .blocks {
  margin-top: 30rem;
  display: flex;
  flex-direction: column;
  gap: 30rem;
}
@media screen and (min-width: 768px), print {
  body#works #consulting .inner .wrapper .blocks {
    margin-top: 40rem;
    gap: 40rem;
  }
}
body#works #consulting .inner .wrapper .blocks .block h3 {
  font-size: 20rem;
  line-height: 1.5;
  padding-left: 1.25em;
  text-indent: -1.25em;
}
@media screen and (min-width: 768px), print {
  body#works #consulting .inner .wrapper .blocks .block h3 {
    font-size: 30rem;
  }
}
body#works #consulting .inner .wrapper .blocks .block ul {
  font-size: 18rem;
  margin-top: 20rem;
  list-style: disc;
  padding-left: 1.5em;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (min-width: 768px), print {
  body#works #consulting .inner .wrapper .blocks .block ul {
    font-size: 25rem;
  }
}
body#works #consulting .inner .wrapper .blocks .block p {
  font-size: 15rem;
  margin-top: 10rem;
  padding-left: 1.5em;
}
@media screen and (min-width: 768px), print {
  body#works #consulting .inner .wrapper .blocks .block p {
    font-size: 18rem;
  }
}
body#works #consulting .inner .wrapper .blocks .block .case {
  margin-top: 20rem;
  border: 1px solid #ccc;
  padding: 20rem;
}
@media screen and (min-width: 768px), print {
  body#works #consulting .inner .wrapper .blocks .block .case {
    margin-top: 30rem;
    padding: 30rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: calc(30 / 1140 * 100%);
  }
}
body#works #consulting .inner .wrapper .blocks .block .case h4 {
  font-size: 15rem;
  line-height: 1;
  color: #fff;
  height: 40rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(#666, #333);
}
@media screen and (min-width: 768px), print {
  body#works #consulting .inner .wrapper .blocks .block .case h4 {
    font-size: 20rem;
    height: 140rem;
    width: calc(150 / 1140 * 100%);
  }
}
body#works #consulting .inner .wrapper .blocks .block .case ul {
  font-size: 15rem;
  gap: 5rem;
}
@media screen and (min-width: 768px), print {
  body#works #consulting .inner .wrapper .blocks .block .case ul {
    margin-top: 0;
    font-size: 18rem;
    width: calc(960 / 1140 * 100%);
  }
}
body#works #training {
  margin-top: 20rem;
}
@media screen and (min-width: 768px), print {
  body#works #training {
    margin-top: 40rem;
  }
}
body#works #training .inner .wrapper {
  padding: 40rem 20rem;
  background: #fff;
  border-radius: 10rem;
}
@media screen and (min-width: 768px), print {
  body#works #training .inner .wrapper {
    padding: 80rem 70rem;
    border-radius: 20rem;
  }
}
body#works #training .inner .wrapper h2 {
  display: flex;
  flex-direction: column;
}
body#works #training .inner .wrapper h2 .en {
  line-height: 1;
}
body#works #training .inner .wrapper h2 .en > span {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: #084A8D;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
@media screen and (min-width: 768px), print {
  body#works #training .inner .wrapper h2 .en > span {
    font-size: 20rem;
  }
}
body#works #training .inner .wrapper h2 .en > span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #084A8D;
  bottom: 0.2em;
}
body#works #training .inner .wrapper h2 .jp {
  margin-top: 5rem;
  font-size: 30rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#works #training .inner .wrapper h2 .jp {
    font-size: 40rem;
  }
}
body#works #training .inner .wrapper .lead {
  margin-top: 30rem;
}
@media screen and (min-width: 768px), print {
  body#works #training .inner .wrapper .lead {
    margin-top: 40rem;
  }
}
body#works #training .inner .wrapper .blocks {
  margin-top: 30rem;
  display: flex;
  flex-direction: column;
  gap: 30rem;
}
@media screen and (min-width: 768px), print {
  body#works #training .inner .wrapper .blocks {
    margin-top: 40rem;
    gap: 40rem;
  }
}
body#works #training .inner .wrapper .blocks .block h3 {
  font-size: 20rem;
  line-height: 1.5;
  padding-left: 1.25em;
  text-indent: -1.25em;
}
@media screen and (min-width: 768px), print {
  body#works #training .inner .wrapper .blocks .block h3 {
    font-size: 30rem;
  }
}
body#works #training .inner .wrapper .blocks .block p {
  margin-top: 20rem;
}

/*いけ花教室------------------------------------------*/
body#ikebana #kv {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
  background: url(../images/ikebana_kv_sp.png) no-repeat center/cover;
  width: 100%;
  height: 200rem;
}
@media screen and (min-width: 768px), print {
  body#ikebana #kv {
    background: url(../images/ikebana_kv_pc.png) no-repeat center/cover;
    height: 400rem;
  }
}
body#ikebana #kv .inner {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  width: 100%;
}
body#ikebana #kv .inner h1 {
  color: #fff;
}
body#ikebana #kv .inner h1 .en {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px), print {
  body#ikebana #kv .inner h1 .en {
    font-size: 80rem;
  }
}
body#ikebana #kv .inner h1 .en span {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
body#ikebana #kv .inner h1 .en span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #fff;
  bottom: 0.33em;
}
@media screen and (min-width: 768px), print {
  body#ikebana #kv .inner h1 .en span::before {
    bottom: 0.35em;
  }
}
body#ikebana #kv .inner h1 .jp {
  font-size: 14rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#ikebana #kv .inner h1 .jp {
    font-size: 20rem;
  }
}
body#ikebana #ikebana-detail {
  margin-top: 40rem;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail {
    margin-top: 80rem;
  }
}
body#ikebana #ikebana-detail .inner .wrapper {
  padding: 40rem 20rem;
  background: #fff;
  border-radius: 10rem;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper {
    padding: 80rem 70rem;
    border-radius: 20rem;
  }
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: calc(50 / 1200 * 100%);
  }
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame .txt-area {
    width: calc(800 / 1200 * 100%);
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame .txt-area h2 {
  display: flex;
  flex-direction: column;
}
body#ikebana #ikebana-detail .inner .wrapper .frame .txt-area h2 .en {
  line-height: 1;
}
body#ikebana #ikebana-detail .inner .wrapper .frame .txt-area h2 .en > span {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: #BF206D;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame .txt-area h2 .en > span {
    font-size: 20rem;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame .txt-area h2 .en > span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #BF206D;
  bottom: 0.2em;
}
body#ikebana #ikebana-detail .inner .wrapper .frame .txt-area h2 .jp {
  margin-top: 5rem;
  font-size: 30rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame .txt-area h2 .jp {
    font-size: 40rem;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame .txt-area p {
  margin-top: 30rem;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame .txt-area p {
    margin-top: 40rem;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame .img-area {
  margin-top: 30rem;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame .img-area {
    margin-top: 0;
    width: calc(350 / 1200 * 100%);
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame .img-area img {
  border-radius: 5rem;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame .img-area img {
    border-radius: 10rem;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 {
  margin-top: 40rem;
  gap: 40rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: calc(40 / 1200 * 100%);
  }
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area {
    width: calc(580 / 1200 * 100%);
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area h3 {
  font-size: 20rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area h3 {
    font-size: 25rem;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table {
  margin-top: 20rem;
  width: 100%;
  border-top: 1px solid #bfbfbf;
  border-left: 1px solid #bfbfbf;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table {
    border-collapse: collapse;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table colgroup {
  display: none;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table colgroup {
    display: table-column-group;
  }
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table .col-th {
    width: 28%;
  }
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table .col-td {
    width: 72%;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table tbody {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table tbody {
    display: table-row-group;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table tr {
  display: block;
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table tr {
    display: table-row;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table th,
body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table td {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 20rem 20rem;
  border-right: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
  line-height: 1.8;
  background: #fff;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table th,
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table td {
    display: table-cell;
    width: auto;
    padding: 20rem 20rem;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table th {
  background: #f5f5f5;
  font-size: 13rem;
  font-weight: 400;
  padding: 10rem 20rem;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table th {
    font-size: 16rem;
    padding: 20rem 20rem;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table td {
  display: flex;
  align-items: center;
  font-size: 15rem;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table td {
    display: table-cell;
    font-size: 16rem;
  }
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .table-area table td[colspan] {
    width: auto;
  }
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area {
    width: calc(580 / 1200 * 100%);
    display: flex;
    flex-direction: column;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area h3 {
  font-size: 20rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area h3 {
    font-size: 25rem;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area .lecturer-frame {
  margin-top: 20rem;
  background: #f9e9f1;
  height: 100%;
  width: 100%;
  padding: 20rem;
  display: flex;
  flex-direction: column;
  gap: 20rem;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area .lecturer-frame {
    padding: 40rem;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: calc(30 / 500 * 100%);
    flex: 1;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area .lecturer-frame .img-area {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area .lecturer-frame .img-area {
    width: calc(130 / 500 * 100%);
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area .lecturer-frame .img-area img {
  border-radius: 5rem;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area .lecturer-frame .img-area img {
    border-radius: 10rem;
  }
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area .lecturer-frame .txt-area {
    width: calc(340 / 500 * 100%);
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area .lecturer-frame .txt-area h4 {
  font-size: 18rem;
  line-height: 1.5;
  color: #BF206D;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area .lecturer-frame .txt-area h4 {
    font-size: 20rem;
  }
}
body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area .lecturer-frame .txt-area p {
  margin-top: 20rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  body#ikebana #ikebana-detail .inner .wrapper .frame2 .lecturer-area .lecturer-frame .txt-area p {
    margin-top: 10rem;
    font-size: 16rem;
  }
}
body#ikebana #form {
  margin-top: 40rem;
}
@media screen and (min-width: 768px), print {
  body#ikebana #form {
    margin-top: 80rem;
  }
}
body#ikebana #form .inner .wrapper {
  padding: 40rem 20rem;
  background: #fff;
  border-radius: 10rem;
}
@media screen and (min-width: 768px), print {
  body#ikebana #form .inner .wrapper {
    padding: 80rem 70rem;
    border-radius: 20rem;
  }
}
body#ikebana #form .inner .wrapper h2 {
  display: flex;
  flex-direction: column;
}
body#ikebana #form .inner .wrapper h2 .en {
  line-height: 1;
}
body#ikebana #form .inner .wrapper h2 .en > span {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: #BF206D;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
@media screen and (min-width: 768px), print {
  body#ikebana #form .inner .wrapper h2 .en > span {
    font-size: 20rem;
  }
}
body#ikebana #form .inner .wrapper h2 .en > span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #BF206D;
  bottom: 0.2em;
}
body#ikebana #form .inner .wrapper h2 .jp {
  margin-top: 5rem;
  font-size: 30rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#ikebana #form .inner .wrapper h2 .jp {
    font-size: 40rem;
  }
}

/*お問い合わせ------------------------------------------*/
body#contact #kv {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
  background: url(../images/contact_kv_sp.png) no-repeat center/cover;
  width: 100%;
  height: 200rem;
}
@media screen and (min-width: 768px), print {
  body#contact #kv {
    background: url(../images/contact_kv_pc.png) no-repeat center/cover;
    height: 400rem;
  }
}
body#contact #kv .inner {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  width: 100%;
}
body#contact #kv .inner h1 {
  color: #fff;
}
body#contact #kv .inner h1 .en {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 50rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px), print {
  body#contact #kv .inner h1 .en {
    font-size: 80rem;
  }
}
body#contact #kv .inner h1 .en span {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
body#contact #kv .inner h1 .en span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #fff;
  bottom: 0.33em;
}
@media screen and (min-width: 768px), print {
  body#contact #kv .inner h1 .en span::before {
    bottom: 0.35em;
  }
}
body#contact #kv .inner h1 .jp {
  font-size: 14rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#contact #kv .inner h1 .jp {
    font-size: 20rem;
  }
}
body#contact #form {
  margin-top: 40rem;
}
@media screen and (min-width: 768px), print {
  body#contact #form {
    margin-top: 80rem;
  }
}
body#contact #form .inner .wrapper {
  padding: 40rem 20rem;
  background: #fff;
  border-radius: 10rem;
}
@media screen and (min-width: 768px), print {
  body#contact #form .inner .wrapper {
    padding: 80rem 70rem;
    border-radius: 20rem;
  }
}
body#contact #form .inner .wrapper h2 {
  display: flex;
  flex-direction: column;
}
body#contact #form .inner .wrapper h2 .en {
  line-height: 1;
}
body#contact #form .inner .wrapper h2 .en > span {
  font-family: "Castoro Titling", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14rem;
  line-height: 1;
  color: #084A8D;
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}
@media screen and (min-width: 768px), print {
  body#contact #form .inner .wrapper h2 .en > span {
    font-size: 20rem;
  }
}
body#contact #form .inner .wrapper h2 .en > span::before {
  content: "";
  position: absolute;
  left: 0;
  width: calc(100% + 1em);
  height: 1px;
  background: #084A8D;
  bottom: 0.2em;
}
body#contact #form .inner .wrapper h2 .jp {
  margin-top: 5rem;
  font-size: 30rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  body#contact #form .inner .wrapper h2 .jp {
    font-size: 40rem;
  }
}

/*------------------------------------------*/
#form-area {
  margin-top: 30rem;
}
@media screen and (min-width: 768px), print {
  #form-area {
    margin-top: 40rem;
  }
}
#form-area .blocks {
  border: 1px solid #ccc;
  line-height: 1.5;
}
#form-area .blocks .block {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  padding: 20rem;
}
@media screen and (min-width: 768px), print {
  #form-area .blocks .block {
    gap: 40rem;
    flex-direction: row;
    align-content: flex-start;
  }
}
#form-area .blocks .block:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
#form-area .blocks .block .item-area {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  font-weight: 500;
}
@media screen and (min-width: 768px), print {
  #form-area .blocks .block .item-area {
    padding-top: 15rem;
    width: calc(350 / 1200 * 100%);
  }
}
#form-area .blocks .block .item-area span.required {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #DF1D42;
  color: #fff;
  font-size: 10rem;
  line-height: 1;
  padding: 4rem 5rem;
}
@media screen and (min-width: 768px), print {
  #form-area .blocks .block .item-area span.required {
    font-size: 13rem;
  }
}
@media screen and (min-width: 768px), print {
  #form-area .blocks .block .input-area {
    width: calc(850 / 1200 * 100%);
  }
}
#form-area .blocks .block .input-area.adjust1 {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
@media screen and (min-width: 768px), print {
  #form-area .blocks .block .input-area.adjust1 {
    flex-direction: row;
    gap: calc(20 / 810 * 100%);
  }
  #form-area .blocks .block .input-area.adjust1 .wpcf7-form-control-wrap {
    width: calc(395 / 810 * 100%);
  }
}
#form-area .blocks .block .input-area input[type=text],
#form-area .blocks .block .input-area input[type=email],
#form-area .blocks .block .input-area input[type=tel],
#form-area .blocks .block .input-area textarea {
  width: 100%;
  background: #eee;
  min-height: 60rem;
  padding: 15rem;
  font-size: 15rem;
  line-height: 1.5;
  border-radius: 5rem;
  box-shadow: inset 2rem 2rem 2rem rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px), print {
  #form-area .blocks .block .input-area input[type=text],
  #form-area .blocks .block .input-area input[type=email],
  #form-area .blocks .block .input-area input[type=tel],
  #form-area .blocks .block .input-area textarea {
    font-size: 18rem;
  }
}
#form-area .blocks .block .input-area.adjust2 .wpcf7-radio {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 10rem;
}
@media screen and (min-width: 768px), print {
  #form-area .blocks .block .input-area.adjust2 .wpcf7-radio {
    flex-direction: row;
    height: 60rem;
    display: flex;
    align-items: center;
    gap: 40rem;
  }
}
#form-area .blocks .block .input-area.adjust2 .wpcf7-list-item {
  margin: 0;
}
#form-area .blocks .block .input-area.adjust2 label {
  display: inline-flex;
  align-items: center;
  gap: 10rem;
  cursor: pointer;
}
#form-area .blocks .block .input-area.adjust2 input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  margin: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: #eee;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: inset 2rem 2rem 2rem rgba(0, 0, 0, 0.2);
}
#form-area .blocks .block .input-area.adjust2 input[type=radio]:checked {
  border-color: #084A8D;
  background: #084A8D;
}
#form-area .blocks .block .input-area.adjust2 input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8rem;
  height: 8rem;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
#form-area .blocks .block .input-area.adjust2 .wpcf7-list-item-label {
  line-height: 1.4;
}
#form-area .blocks .block .input-area a.search {
  color: #084A8D;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  text-decoration: none;
}
#form-area .blocks .block .input-area a.search .text {
  text-decoration: underline;
}
#form-area .blocks .block .input-area a.search .material-symbols-outlined {
  font-size: 15rem;
  text-decoration: none;
}
#form-area input[type=submit] {
  margin-top: 30rem;
  background: #084A8D;
  color: #fff;
  text-decoration: none;
  height: 80rem;
  width: 100%;
  border-radius: 40rem;
  font-size: 20rem;
  font-weight: 500;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px), print {
  #form-area input[type=submit] {
    margin: 60rem auto 0;
    width: 430rem;
    height: 100rem;
    font-size: 25rem;
    border-radius: 50rem;
  }
  #form-area input[type=submit]:hover {
    background: #333;
    opacity: 1;
  }
}

body#ikebana #form-area input[type=radio]:checked {
  border-color: #BF206D;
  background: #BF206D;
}
body#ikebana #form-area input[type=submit] {
  background: #BF206D;
}
@media screen and (min-width: 768px), print {
  body#ikebana #form-area input[type=submit]:hover {
    background: #333;
    opacity: 1;
  }
}

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