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

header

------------------------------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.2rem;
  padding: 0 5rem;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}

.logo a {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-family: "Noto Serif JP", serif;
  font-size: 2.6rem;
  color: #0648a3;
}
.logo a i {
  font-style: italic;
  margin-bottom: 0.3rem;
}
.logo a img {
  width: 4.8rem;
}

@media screen and (max-width: 768px) {
  header {
    justify-content: center;
    height: 6rem;
    padding: 0;
    position: relative;
  }
  .logo a {
    font-size: 2.4rem;
  }
}
/* -------------------------------------------

nav

------------------------------------------- */
.gnav-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.gnav-menu > li {
  font-weight: bold;
  white-space: nowrap;
}

img.ico {
  display: block;
  width: 1.8rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .gnav-menu {
    gap: 0;
  }
  .gnav-menu > li {
    text-align: center;
    width: 50%;
  }
  .gnav-menu > li a {
    display: block;
    padding: 0.6rem 0;
  }
}
/* -------------------------------------------

about

------------------------------------------- */
.about {
  background: #f1f2fd;
  padding: 6rem 0;
}
.about .box {
  padding: 6rem 6rem 4rem 6rem;
}
.about .box h2 + p {
  margin-bottom: 4rem;
  text-align: center;
}
.about .box section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about .box section h3 {
  background: #f1f2fd;
  color: #110470;
  font-weight: 500;
  font-size: 1.6rem;
  position: relative;
  padding: 1rem 1.8rem 1.1rem 2rem;
  line-height: 1;
  border-radius: 10rem;
}
.about .box section h3::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1rem solid #f1f2fd;
  position: absolute;
  left: calc(50% - 1rem);
  bottom: -0.9rem;
}
.about .box section h3 + p {
  margin: 2.5rem 0;
}
.about .box section ul {
  display: flex;
  gap: 2rem;
}
.about .box section ul li {
  flex: 1;
}
.about .box section ul dt {
  margin: 1.5rem 0;
  padding-bottom: 1.5rem;
  border-bottom: dashed 0.12rem #353535;
  color: #110470;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 5.6rem;
  align-items: center;
  font-size: 1.5rem;
}
.about .box section ul dt span {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.2;
}
.about > section {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about > section h3 {
  background: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  position: relative;
  padding: 1rem 0.8rem 1.1rem 1rem;
  line-height: 1;
  border-radius: 10rem;
}
.about > section h3::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1rem solid #fff;
  position: absolute;
  left: calc(50% - 1rem);
  bottom: -0.9rem;
}
.about > section h3 + p {
  margin: 2rem 0;
  text-align: center;
}
.about .about-movie iframe {
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 1.5rem;
}

@media screen and (max-width: 768px) {
  .about {
    background: #f1f2fd;
    padding: 6rem 3rem 4rem 3rem;
  }
  .about .box {
    padding: 4rem 3rem;
  }
  .about .box h2 + p {
    text-align: left;
  }
  .about .box section h3 {
    font-size: 1.8rem;
  }
  .about .box section ul {
    flex-direction: column;
    gap: 3rem;
  }
  .about .box section ul li {
    flex: none;
    width: 100%;
  }
  .about .box section ul dt {
    margin: 1.5rem 0 1.2rem 0;
    padding-bottom: 1.2rem;
    font-size: 2rem;
  }
  .about > section h3 {
    font-size: 1.8rem;
    padding: 1rem 4rem 1.1rem 4.2rem;
    line-height: 1.4;
  }
  .about > section h3 + p {
    text-align: left;
  }
  .about .about-movie iframe {
    width: 100%;
  }
}
/* -------------------------------------------

trouble

------------------------------------------- */
.trouble {
  background: url(../img/trouble-bg-1.jpg) no-repeat center/cover;
  position: relative;
}
.trouble .box {
  padding: 6rem 6rem 4rem 6rem;
  position: relative;
  bottom: -8rem;
  z-index: 100;
}
.trouble .box::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 6rem solid transparent;
  border-right: 6rem solid transparent;
  border-top: 4rem solid #fff;
  position: absolute;
  left: calc(50% - 6rem);
  bottom: -3.9rem;
}
.trouble .box .ttl-wrap {
  display: flex;
  justify-content: center;
}
.trouble .box .ttl-wrap h2 {
  position: relative;
}
.trouble .box .ttl-wrap h2 i {
  font-size: 2.4rem;
}
.trouble .box .ttl-wrap h2::before {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(../img/ico-trouble.png) no-repeat center/contain;
  position: absolute;
  left: -2.5rem;
  top: -2rem;
}
.trouble .box > ul > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}
.trouble .box > ul > li > figure {
  width: 30%;
}
.trouble .box > ul > li > ul {
  width: 68%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.trouble .box > ul > li > ul li {
  display: flex;
  align-items: center;
  background: #f4f4f4;
  border-radius: 10rem;
  padding: 0.7rem 2rem 0.8rem 2rem;
}
.trouble .box > ul > li > ul li img {
  width: 1.7rem;
  margin-top: -0.1rem;
}
.trouble .box > ul > li > ul li span {
  width: calc(100% - 1.7rem);
  padding-left: 0.8rem;
}
.trouble .box > ul > li:nth-child(even) {
  flex-direction: row-reverse;
}
.trouble .box > ul > li:not(:last-child) {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: dashed 0.12rem #353535;
}

@media screen and (max-width: 768px) {
  .trouble {
    padding: 0 3rem;
  }
  .trouble .box {
    padding: 4rem 3rem;
    bottom: -4rem;
  }
  .trouble .box::before {
    border-left: 4rem solid transparent;
    border-right: 4rem solid transparent;
    border-top: 3rem solid #fff;
    left: calc(50% - 4rem);
    bottom: -2.9rem;
  }
  .trouble .box > ul > li {
    flex-direction: column;
    padding: 0;
  }
  .trouble .box > ul > li > figure {
    width: 60%;
    margin-bottom: 1.5rem;
  }
  .trouble .box > ul > li > ul {
    width: 100%;
    flex-direction: column;
  }
  .trouble .box > ul > li > ul li {
    padding: 0.9rem 2rem 1rem 2rem;
  }
  .trouble .box > ul > li > ul li span {
    line-height: 1.4;
  }
  .trouble .box > ul > li:nth-child(even) {
    flex-direction: column;
  }
}
/* -------------------------------------------

solve

------------------------------------------- */
.solve {
  padding: 15rem 0 8rem 0;
}
.solve h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10rem;
}
.solve h2 span {
  display: flex;
  align-items: center;
  justify-content: center;
}
.solve h2 span::before, .solve h2 span::after {
  content: "";
  width: 0.2rem;
  height: 4.5rem;
  background: #fff;
  margin-top: 0.6rem;
}
.solve h2 span::before {
  transform: rotate(-25deg);
  margin-right: 1.5rem;
}
.solve h2 span::after {
  transform: rotate(25deg);
  margin-left: 1.5rem;
}
.solve h2 i {
  font-weight: 500;
  font-size: 1.4rem;
  border: solid 0.12rem #fff;
  border-radius: 10rem;
  margin-top: 2rem;
  padding: 0.8rem 1.5rem 0.9rem 1.8rem;
}
.solve ul {
  display: flex;
  gap: 5rem;
}
.solve ul li {
  flex: 1;
  position: relative;
}
.solve ul li:not(:last-child):before {
  content: "";
  width: 0;
  height: 0;
  border-left: 1rem solid #110470;
  border-top: 1rem solid transparent;
  border-bottom: 1rem solid transparent;
  position: absolute;
  right: -3rem;
  top: 7rem;
}
.solve ul li p {
  margin-top: 1rem;
  padding: 0 1rem;
}
.solve .step {
  position: absolute;
  left: -2rem;
  top: -2rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #110470;
  color: #fff;
  line-height: 1;
}
.solve .step i {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
}
.solve .step span {
  color: #fef016;
  font-size: 2rem;
}
.solve .wrap {
  padding: 0 3rem;
}
.solve .wrap > div {
  background: #f1f2fd;
  border-radius: 1.5rem;
  position: relative;
  margin-top: 10rem;
  padding: 4rem 3rem;
}
.solve .wrap > div figure {
  position: absolute;
  right: 1.5rem;
  bottom: 0;
  width: 28%;
}
.solve .wrap > div h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 768px) {
  .solve {
    padding: 10rem 0 6rem 0;
  }
  .solve h2 {
    line-height: 1.3;
    margin-bottom: 8rem;
  }
  .solve h2 span::before, .solve h2 span::after {
    height: 6.5rem;
  }
  .solve h2 span::before {
    margin-right: 2rem;
  }
  .solve h2 span::after {
    margin-left: 2rem;
  }
  .solve ul {
    flex-direction: column;
    gap: 4rem;
  }
  .solve ul li {
    flex: none;
    width: 100%;
  }
  .solve ul li:not(:last-child):before {
    border-left: 1.5rem solid transparent;
    border-right: 1.5rem solid transparent;
    border-top: 1.5rem solid #110470;
    position: absolute;
    right: auto;
    left: calc(50% - 1.5rem);
    top: auto;
    bottom: -3.5rem;
  }
  .solve ul li p {
    padding: 0;
  }
  .solve .step {
    width: 10rem;
    height: 10rem;
  }
  .solve .step i {
    font-size: 2.2rem;
  }
  .solve .step span {
    font-size: 2.4rem;
  }
  .solve .wrap > div {
    margin-top: 4rem;
    padding: 3rem 2rem 0 2rem;
  }
  .solve .wrap > div figure {
    position: relative;
    right: auto;
    bottom: auto;
    width: 20rem;
    margin: 1rem auto 0 auto;
  }
}
/* -------------------------------------------

cv

------------------------------------------- */
.cv {
  background: url(../img/cv-bg.jpg) no-repeat center/cover;
  padding: 5rem 0;
}
.cv .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem;
  border-radius: 0.5rem;
}
.cv h2 {
  color: #fff;
  background: #110470;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1;
  border-radius: 10rem;
  position: relative;
  padding: 1.5rem 5rem 1.65rem 5rem;
}
.cv h2::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
  border-top: 1rem solid #110470;
  position: absolute;
  left: calc(50% - 1rem);
  bottom: -0.9rem;
}
.cv h2 + p {
  margin: 2.5rem 0;
  text-align: center;
}
.cv ul {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.cv ul::before {
  content: "";
  width: 0.12rem;
  height: 100%;
  background: #9e9db6;
  position: absolute;
  left: 50%;
  top: 0;
}
.cv ul li {
  width: 50%;
}
.cv ul li.tel dl {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  color: #110470;
}
.cv ul li.tel dl dt {
  font-weight: bold;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.cv ul li.tel dl a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #110470;
}
.cv ul li.tel dl a img {
  width: 3.2rem;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}
.cv ul li.tel dl a i {
  font-style: italic;
  font-family: "Noto Serif JP", serif;
  font-size: 3.4rem;
  font-weight: 600;
}
.cv ul li.tel span {
  font-size: 0.9rem;
  display: block;
  text-align: center;
  color: #110470;
  margin-top: 0.3rem;
}
.cv ul li.form {
  padding-left: 1.5rem;
}
.cv ul li.form a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7.2rem;
  color: #fff;
  background: linear-gradient(to top, #f67528, #fdb23a);
  box-shadow: 0 0 1.5rem 0.5rem rgba(215, 211, 253, 0.47);
  border-radius: 50rem;
  border: solid 0.3rem #fff;
  font-weight: bold;
  font-size: 1.7rem;
  padding-bottom: 0.35rem;
  padding-left: 0.5rem;
}
.cv ul li.form a i {
  margin-left: 0.6rem;
  margin-top: 0.2rem;
}

@media screen and (max-width: 768px) {
  .cv {
    padding: 4rem 3rem;
  }
  .cv .box {
    padding: 3rem;
  }
  .cv h2 {
    font-size: 1.7rem;
    line-height: 1.3;
    padding: 1.5rem 2.5rem 1.65rem 2.5rem;
    text-align: center;
  }
  .cv h2 + p {
    text-align: left;
  }
  .cv ul {
    flex-direction: column;
  }
  .cv ul::before {
    display: none;
  }
  .cv ul li {
    width: 100%;
  }
  .cv ul li.tel {
    border-bottom: solid 0.12rem #9e9db6;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .cv ul li.tel dl dt {
    font-size: 1.6rem;
  }
  .cv ul li.tel dl a {
    text-decoration: none;
  }
  .cv ul li.tel span {
    font-size: 1.2rem;
    margin-top: 0.6rem;
  }
  .cv ul li.form {
    padding-left: 0;
  }
  .cv ul li.form a {
    font-size: 1.5rem;
  }
}
/* -------------------------------------------

voice

------------------------------------------- */
.voice {
  padding: 8rem 5rem;
  background: #f1f2fd;
}
.voice .wrap {
  position: relative;
  padding-bottom: 4rem;
}
.voice h2 {
  margin-bottom: 2rem;
}

.swiper-slide {
  padding: 3rem 2rem;
}
.swiper-slide dl {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 10px 4px rgba(79, 78, 93, 0.16);
  padding: 2rem;
  border: solid 0.15rem #d7d3fd;
  height: 24rem;
}
.swiper-slide dl dt {
  position: relative;
  padding-left: 2.5rem;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.swiper-slide dl dt::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  box-sizing: border-box;
  border: solid 0.3rem #d7d3fd;
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(50% - 0.75rem);
  margin-top: 0.1rem;
}

.swiper-pagination-bullet {
  width: 1.5rem !important;
  height: 1.5rem !important;
  background: #c6c6ff !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: #9e9db6 !important;
}

@media screen and (max-width: 768px) {
  .voice {
    padding: 6rem 1.5rem;
  }
  .voice .wrap {
    position: relative;
    padding-bottom: 4rem;
  }
  .voice h2 {
    margin-bottom: 1rem;
  }
  .swiper-slide {
    padding: 3rem 2rem;
  }
  .swiper-slide dl {
    height: 30rem;
  }
}
/* -------------------------------------------

treatment

------------------------------------------- */
.treatment {
  padding: 8rem 0 6rem 0;
}
.treatment ul {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.treatment ul li {
  position: relative;
  padding: 4rem;
}
.treatment ul li > img {
  width: 7.4rem;
  position: absolute;
  left: -2rem;
  top: -2rem;
}
.treatment ul li > div {
  display: flex;
  justify-content: space-between;
}
.treatment ul li > div > * {
  width: 48.5%;
}
.treatment ul li > div > figure img {
  border-radius: 0.5rem;
}
.treatment ul li dl {
  margin-top: 1rem;
  display: flex;
  align-items: center;
}
.treatment ul li dl dt {
  width: 6rem;
}
.treatment ul li dl dd {
  width: calc(100% - 6rem);
  padding-left: 1rem;
}
.treatment h3 {
  color: #110470;
  font-size: 2.2rem;
  text-align: center;
  padding-bottom: 2rem;
  line-height: 1;
  border-bottom: solid 0.15rem #110470;
}
.treatment h3 + p {
  text-align: center;
  font-size: 1.5rem;
  color: #110470;
  margin: 2rem 0;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .treatment {
    padding: 6rem 3rem 4rem 3rem;
  }
  .treatment ul {
    gap: 3rem;
  }
  .treatment ul li {
    padding: 3rem;
  }
  .treatment ul li > img {
    width: 5.6rem;
    left: -1.5rem;
    top: -1.5rem;
  }
  .treatment ul li figure {
    margin-bottom: 1rem;
  }
  .treatment ul li > div {
    flex-direction: column;
  }
  .treatment ul li > div > * {
    width: 100%;
  }
  .treatment ul li dl {
    margin-top: 1.5rem;
  }
  .treatment ul li dl dd {
    line-height: 1.5;
  }
  .treatment h3 + p {
    line-height: 1.4;
  }
}
/* -------------------------------------------

faq

------------------------------------------- */
.faq {
  padding: 8rem 0;
}
.faq h2 {
  margin: 0;
}
.faq h2 + p {
  text-align: center;
  margin: 2rem 0 4rem 0;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 8rem 3rem;
  }
  .faq h2 + p {
    margin: 2rem 0 3rem 0;
  }
}
.faq-ttl {
  display: flex;
  align-items: center;
  line-height: 1.4;
  padding: 0.9rem 6rem 1rem 2rem;
  position: relative;
  transition: all 0.3s;
  background: #f1f2fd;
  margin-bottom: 1.5rem;
}

.faq-ttl i {
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 2rem;
  top: calc(50% - 0.75rem);
}

.faq-ttl i::before,
.faq-ttl i::after {
  content: "";
  background: #9e9db6;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.faq-ttl i::before {
  width: 100%;
  height: 0.2rem;
}

.faq-ttl i::after {
  width: 0.2rem;
  height: 100%;
  transition: all 0.3s;
}

.faq-ttl.open i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-ttl:hover {
  cursor: pointer;
}

.faq-ttl > span:nth-child(1) {
  color: var(--brown);
  font-size: 1.6rem;
  padding-top: 0.1rem;
  padding-bottom: 0.3rem;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-ttl > span:nth-child(2) {
  font-size: 1.4rem;
  padding-left: 1rem;
  font-weight: 500;
  width: calc(100% - 3.6rem);
}

.faq-content {
  padding: 0 2rem 3rem 6.6rem;
}

@media screen and (max-width: 768px) {
  .faq-content {
    padding: 0 1.5rem 3rem 1.5rem;
  }
}
/* -------------------------------------------

contact

------------------------------------------- */
.contact {
  padding: 8rem 0 6rem 0;
}
.contact .box {
  padding: 4rem;
}

@media screen and (max-width: 768px) {
  .contact {
    padding: 6rem 3rem 4rem 3rem;
  }
  .contact .box {
    padding: 3rem;
  }
}
.CMS-FORM-GROUP {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .CMS-FORM-GROUP {
    display: block;
  }
}
.CMS-FORM-GROUP:not(:last-of-type) {
  margin-bottom: 4rem;
}

.CMS-FORM-GROUP > label {
  width: 30%;
  display: flex;
  font-weight: 500;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .CMS-FORM-GROUP label {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.CMS-FORM-INPUT,
.CMS-FORM-EMAIL {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  padding: 1.5rem;
  width: 70%;
  background: #f6f6f6;
  border-radius: 0.5rem;
  border: none;
  box-shadow: inset 0 0 0.6rem rgba(0, 0, 0, 0.15);
}

.CMS-FORM-GROUP textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #f6f6f6;
  border-radius: 0.5rem;
  border: none;
  box-shadow: inset 0 0 0.6rem rgba(0, 0, 0, 0.15);
  width: 70%;
  height: 16rem;
  padding: 1.5rem;
}

@media screen and (max-width: 768px) {
  .CMS-FORM-INPUT,
  .CMS-FORM-EMAIL,
  .CMS-FORM-GROUP textarea {
    width: 100%;
  }
}
.submit-wrap {
  width: 28rem;
  margin: 0 auto;
  position: relative;
}
.submit-wrap::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background: url(../img/arrow.png) no-repeat center/contain;
  position: absolute;
  right: 2.5rem;
  top: calc(50% - 0.4rem);
  z-index: 10;
}

.CMS-FORM-GROUP input[type=submit] {
  background: linear-gradient(to bottom, #1f48ba, #0380c9);
  color: #fff;
  display: block;
  font-size: 1.5rem;
  margin: 0 auto;
  padding: 1.8rem 0 1.95rem 0;
  transition: all 0.3s;
  width: 28rem;
  border-radius: 10rem;
  font-weight: bold;
  border: solid 0.35rem #fff;
  box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.1);
}

.CMS-FORM-GROUP input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.5;
}

input[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  border-radius: 0;
}

input[type=submit]::-webkit-search-decoration {
  display: none;
}

@media screen and (max-width: 768px) {
  .CMS-FORM-GROUP input[type=submit] {
    width: 100%;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 768px) {
  .select-wrap {
    width: 100%;
  }
}
.required {
  background: #0648a3;
  color: #fff;
  font-size: 0.9rem;
  font-weight: normal;
  line-height: 1;
  margin-left: 1rem;
  padding: 0.3rem 0.95rem 0.45rem 1rem;
  vertical-align: 0.1rem;
  border-radius: 10rem;
}

@media screen and (max-width: 768px) {
  .CMS-FORM-GROUP input:focus,
  .CMS-FORM-GROUP textarea:focus {
    font-size: 16px;
  }
}
.privacy {
  background: #fff;
  box-shadow: inset 0 0 0.6rem rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  height: 16rem;
  overflow: auto;
  padding: 1.7rem 2rem;
  margin-bottom: 4rem;
  border-radius: 0.5rem;
}

.privacy-note {
  font-size: 1.2rem;
  margin: 5rem 0 2rem 0;
}

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

cv-tel

------------------------------------------- */
.cv-tel {
  padding: 5rem 0;
  background: url(../img/cv-tel-bg.jpg) no-repeat center/cover;
}
.cv-tel .box {
  border-radius: 0.5rem;
  padding: 3rem 0;
}
.cv-tel .box > dl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cv-tel .box > dl > dt {
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: #110470;
}
.cv-tel .box > dl > dd {
  display: flex;
  align-items: center;
}
.cv-tel .box > dl > dd a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #110470;
}
.cv-tel .box > dl > dd a img {
  width: 3.2rem;
  margin-right: 0.5rem;
  margin-top: 0.2rem;
}
.cv-tel .box > dl > dd a i {
  font-style: italic;
  font-family: "Noto Serif JP", serif;
  font-size: 3.4rem;
  font-weight: 600;
}
.cv-tel .box > dl > dd ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-left: 1.5rem;
  color: #110470;
  font-size: 1rem;
}
.cv-tel .box > dl > dd ul dl {
  display: flex;
  align-items: center;
}
.cv-tel .box > dl > dd ul dl dt {
  width: 6rem;
  border: solid 0.12rem #110470;
  text-align: center;
  padding-bottom: 0.1rem;
  padding-left: 0.1rem;
}
.cv-tel .box > dl > dd ul dl dd {
  padding-left: 1rem;
}

@media screen and (max-width: 768px) {
  .cv-tel {
    padding: 3rem;
  }
  .cv-tel .box {
    padding: 2.5rem 0;
  }
  .cv-tel .box > dl > dt {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
  .cv-tel .box > dl > dd {
    flex-direction: column;
  }
  .cv-tel .box > dl > dd a {
    text-decoration: none;
  }
  .cv-tel .box > dl > dd ul {
    font-size: 1.2rem;
  }
}
/* -------------------------------------------

outline

------------------------------------------- */
.outline {
  padding: 8rem 0;
  background: #f1f2fd;
}
.outline .wrap {
  display: flex;
  margin-bottom: 3rem;
  justify-content: space-between;
  align-items: flex-start;
}
.outline .wrap > * {
  width: 48%;
}
.outline .wrap img {
  border-radius: 0.5rem;
}
.outline .wrap > div > div {
  font-weight: normal;
  color: #110470;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  line-height: 1;
  font-size: 2rem;
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  padding-left: 1rem;
  font-weight: 500;
}
.outline .wrap dl {
  border-top: solid 0.12rem #bfbec6;
  display: flex;
  flex-wrap: wrap;
}
.outline .wrap dl dt {
  width: 9rem;
  text-align: center;
  border-bottom: solid 0.12rem #bfbec6;
  padding: 1.2rem 0;
}
.outline .wrap dl dd {
  width: calc(100% - 9rem);
  border-bottom: solid 0.12rem #bfbec6;
  padding: 1.2rem 0;
}

.gmap iframe {
  width: 100%;
  height: 28rem;
}

@media screen and (max-width: 768px) {
  .outline {
    padding: 6rem 3rem;
    background: #f1f2fd;
  }
  .outline .wrap {
    flex-direction: column;
  }
  .outline .wrap > * {
    width: 100%;
  }
  .outline .wrap > figure {
    margin-bottom: 2rem;
  }
  .outline .wrap > div > div {
    font-size: 2.4rem;
    padding-top: 0;
    padding-left: 0;
    text-align: center;
  }
  .outline .wrap dl dt {
    width: 10rem;
  }
  .outline .wrap dl dd {
    width: calc(100% - 10rem);
  }
}
/* -------------------------------------------

instagram

------------------------------------------- */
.insta {
  padding: 8rem 0 6rem 0;
}
.insta .box {
  padding: 4rem;
}

@media screen and (max-width: 768px) {
  .insta {
    padding: 6rem 3rem 4rem 3rem;
  }
  .insta .box {
    padding: 2rem;
  }
}
/* cms */
.CMS-INSTAGRAM-LIST {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.CMS-INSTAGRAM-LIST > * {
  width: calc((100% - 4rem) / 3);
}

.CMS-INSTAGRAM-LIST > *:nth-of-type(n + 7) {
  display: none;
}

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

footer

------------------------------------------- */
footer {
  background: #f4f4f4;
}
footer .wrap {
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer nav {
  margin-top: 2rem;
}
footer small {
  background: #0648a3;
  color: #fff;
  width: 100%;
  display: block;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  padding: 1.5rem 0;
}

@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 6rem;
  }
}
/* -------------------------------------------

fixed

------------------------------------------- */
.fixed-btn {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  width: 6rem;
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  .fixed-btn {
    top: auto;
    right: auto;
    bottom: 0;
    transform: none;
    width: 100%;
    flex-direction: row;
    gap: 0;
    display: flex;
  }
  .fixed-btn li {
    width: 50%;
  }
  .fixed-btn a {
    width: 100%;
    padding: 0;
    height: 6rem;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0648a3;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-style: italic;
    font-size: 2.2rem;
  }
  .fixed-btn li img {
    width: 2.8rem;
    margin-right: 0.6rem;
    margin-top: 0.1rem;
  }
  .fixed-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .fixed-btn span i {
    font-style: normal;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-left: 0.3rem;
    margin-bottom: 0.3rem;
  }
  .fixed-btn li:nth-child(2) span {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.3rem;
    font-style: normal;
    font-weight: bold;
  }
  .fixed-btn li:nth-child(2) a {
    background: #003779;
  }
}
/* -------------------------------------------

thanx

------------------------------------------- */
.thanx {
  padding: 12rem 0;
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
}
.thanx div {
  margin-top: 6rem;
}
.thanx div a {
  color: #0648a3;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .thanx {
    padding: 8rem 3rem;
    text-align: left;
  }
  .thanx div {
    display: flex;
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */