@charset "UTF-8";
* {
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: "Lato", sans-serif;
  font-weight: 600;
  color: #514d4d;
  line-height: 2;
}
img {
  max-width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  color: #514d4d;
  text-decoration: none;
  display: block;
}
h2 {
  position: relative;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 1%;
}
.section-title {
  font-weight: bold;
  margin-bottom: 120px;
  text-align: center;
}
.sub-title {
  text-align: center;
  letter-spacing: 0.2em;
  margin: 0 auto;
}
#content,
#faq,
#access,
#footer {
  background-color: #befadd;
  width: 100%;
}
#flow .section-title,
#contact .section-title {
  display: flex;
  justify-content: space-between;
}
#flow .section-title::before,
#contact .section-title::before {
  content: "";
  display: inline-block;
  width: 25%;
  background-image: url(../image/cloud.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  animation: floating 1.5s infinite alternate-reverse ease-in-out;
  animation-delay: -1.5s;
}
#flow .section-title::after,
#contact .section-title::after {
  content: "";
  display: inline-block;
  width: 25%;
  background-image: url(../image/cloud_02.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  animation: floating 1.5s infinite alternate-reverse ease-in-out;
}

@keyframes floating {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}

#content .section-title,
#faq .section-title,
#access .section-title {
  display: flex;
  justify-content: space-between;
}
#content .section-title:before,
#faq .section-title::before,
#access .section-title::before {
  content: "";
  display: inline-block;
  width: 25%;
  background-image: url(../image/flower.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
#content .section-title::after,
#faq .section-title::after,
#access .section-title::after {
  content: "";
  display: inline-block;
  width: 25%;
  background-image: url(../image/flower_02.png);
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
#header,
.mainvisual,
#message,
#flow,
#contact {
  background-color: #fff7e2;
  width: 100%;
}
.green {
  color: #00b097;
}
.orange {
  color: #ed6b00;
}
.large {
  font-family: "Darumadrop One", sans-serif;
  font-weight: 400;
  font-size: 8rem;
  display: block;
  margin: 0 auto;
}
.small {
  font-size: 2rem;
  font-weight: bold;
  display: block;
  position: absolute;
  top: 85%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
#header,
#footer {
  width: 100%;
  font-size: 0.875rem;
  overflow: hidden;
}
/* header */
#header {
  padding-bottom: 50px;
}
#header .header-top {
  display: flex;
  justify-content: center;
  margin: 40px 0 10px;
  position: relative;
}
#header .site-title {
  line-height: 1;
}
#header .sns-list {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 1%;
}
#header .sns-list li {
  aspect-ratio: 1/1;
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
#header .sns-list li:hover:nth-child(1),
#header .sns-list li:hover:nth-child(2),
#header .sns-list li:hover:nth-child(3) {
  transform: translateY(-5px);
}
#header .sns-list li:nth-child(1) {
  background-color: #ffffff;
}
#header .sns-list li:nth-child(2) {
  background-color: #000000;
}
#header .sns-list li:nth-child(3) {
  background-color: #00b097;
}
#header .sns-list li:nth-child(4) {
  display: none;
}
#header .sns-list li a {
  width: 100%;
  height: 100%;
  text-align: center;
  padding: 10%;
}
#header .sns-list li a img {
  vertical-align: baseline;
}
#header .header-navi {
  display: flex;
  justify-content: space-around;
  background-color: #ffffff;
  padding: 15px 20px;
  border-radius: 30px;
}
#header .header-navi li,
#header .header-navi li a {
  position: relative;
}
#header .header-navi li::before {
  content: "";
  position: absolute;
  background-color: #ed6b00;
  width: 14px;
  height: 14px;
  left: -20px;
  top: 6px;
}
#header .header-navi li a::after {
  content: "";
  position: absolute;
  background-color: #000000;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
#header .header-navi li a:hover::after {
  transform: scale(1, 1);
}
#header .hamburger {
  aspect-ratio: 1/1;
  width: 50px;
  position: relative;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}
#header .hamburger span {
  width: 25px;
  height: 2px;
  background: #ed6b00;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: 0.3s ease-in-out;
}
#header .hamburger span:nth-child(1) {
  top: 18px;
}
#header .hamburger span:nth-child(2) {
  top: 25px;
}
#header .hamburger span:nth-child(3) {
  top: 32px;
}
#header .hamburger.active span:nth-child(1) {
  top: 25px;
  transform: rotate(-45deg);
}
#header .hamburger.active span:nth-child(2),
#header .hamburger.active span:nth-child(3) {
  top: 25px;
  transform: rotate(45deg);
}
.sp-navi {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  text-align: center;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
.sp-navi.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sp-navi a {
  display: block;
}
.sp-navi ul li {
  font-size: 1.25rem;
  margin-bottom: 15%;
}
.sp-navi ul li span {
  display: block;
  color: #00b097;
  font-size: 0.875rem;
  line-height: 0.5;
}
/* mainvisual */
.mainvisual {
  text-align: center;
  position: relative;
  aspect-ratio: 12/7;
  line-height: 1;
  max-height: 800px;
}
.mainvisual .fade {
  width: 100%;
  height: 100%;
}
.mainvisual .fade li {
  position: absolute;
  width: 100%;
  padding: 0 3%;
  top: 0;
  left: 0;
  opacity: 0;
  animation: fade 15s infinite;
}
.mainvisual .fade li:nth-child(1) {
  animation-delay: 0s;
}
.mainvisual .fade li:nth-child(2) {
  animation-delay: 5s;
}
.mainvisual .fade li:nth-child(3) {
  animation-delay: 10s;
}
.mainvisual .fade img {
  aspect-ratio: 12/7;
  width: 100%;
  max-width: 1100px;
  border-radius: 50px;
  vertical-align: middle;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* message */
#message {
  text-align: center;
  position: relative;
  padding-bottom: 60px;
  background-image: url(../image/back_y.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
#message::before {
  content: "";
  display: block;
  aspect-ratio: 11/9;
  width: 33%;
  position: absolute;
  left: 0;
  top: -50px;
  z-index: 2;
  background-image: url(../image/mav_img.png);
  background-size: contain;
  background-repeat: no-repeat;
}

#message .small::before {
  content: "オッキュ　　　デザイン";
  position: absolute;
  font-size: 40%;
  top: -3%;
  left: -10%;
  right: 0;
}
#message .sub-title {
  display: inline-block;
  font-size: 1.6875rem;
  margin-bottom: 60px;
}
#message .sub-title:first-child {
  margin-bottom: 10px;
}
#message .text {
  line-height: 2.5;
  font-size: 1rem;
  margin-bottom: 30px;
}
#message > img {
  position: absolute;
  width: 20%;
  min-width: 220px;
  margin: 0 auto;
  left: 0;
  right: 0;
}
/* content */
#content {
  padding-bottom: 150px;
}
#content .section-title {
  margin-bottom: 160px;
}
#content .three {
  display: flex;
  justify-content: space-between;
  margin-bottom: 90px;
  padding: 0;
}
#content .three li {
  width: 33%;
  background-color: #ffffff;
  padding: 60px 20px 50px;
  border-radius: 90px;
  font-size: 0.875rem;
  line-height: 1.9;
  position: relative;
  display: flex;
  justify-content: center;
}
#content .three .orange {
  position: absolute;
  font-family: "Darumadrop One", sans-serif;
  font-weight: 400;
  font-size: 5rem;
  top: -50%;
  left: 18%;
}
#content .stepup {
  max-width: 600px;
  width: 100%;
  margin: 0 auto 120px;
}
#content .sub-title {
  width: 80%;
  text-align: center;
  margin-bottom: 100px;
}
#content .course {
  text-align: center;
  margin-bottom: 180px;
}
#content .course .text {
  font-size: 1.5rem;
  border-top: #00b097 3px solid;
  border-bottom: #00b097 3px solid;
  display: inline-block;
  padding: 15px 0;
}
#content .bubble-comment {
  display: flex;
  justify-content: center;
  align-items: end;
  margin-bottom: 60px;
}
#content .bubble-comment img {
  width: 210px;
  height: 210px;
  margin-right: 30px;
}
#content .bubble-comment p {
  width: 480px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../image/talk.png);
  background-size: contain;
  background-repeat: no-repeat;
}
#content .bubble-comment p span {
  padding-right: 20px;
}
#content .five-circle {
  height: 280px;
  margin-bottom: 60px;
  position: relative;
}
#content .five-circle li {
  aspect-ratio: 1/1;
  width: 21%;
  background-color: #fff7e2;
  border-radius: 50%;
  padding: 0;
  vertical-align: bottom;
  line-height: 1.6;
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#content .course .five-circle img {
  aspect-ratio: 1/1;
  width: 70%;
  display: block;
  margin: 0 auto;
}
#content .five-circle li:nth-child(1) {
  left: 0;
}
#content .five-circle li:nth-child(2) {
  left: 20%;
}
#content .five-circle li:nth-child(3) {
  left: 0;
  right: 0;
  margin: 0 auto;
}
#content .five-circle li:nth-child(4) {
  right: 20%;
}
#content .five-circle li:nth-child(5) {
  right: 0;
}
#content .work {
  position: relative;
}
#content .work .container {
  background-color: #ffffff;
  border-radius: 110px;
  display: flex;
  flex-direction: column;
  width: fit-content;
  padding: 8% 15% 5% 7%;
  position: relative;
  margin-left: 8%;
}
#content .work .container ul {
  margin-bottom: 30px;
}
#content .work .container li {
  line-height: 3;
  border-bottom: #00b097 1px dotted;
  padding-left: 55px;
  padding-right: 5px;
  position: relative;
  cursor: pointer;
}
#content .work .container li:hover {
  color: #ffffff;
  background-color: #00b097;
  transition: 0.5s ease;
}
#content .work .container li::before {
  position: absolute;
  font-family: "Darumadrop One", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  color: #00b097;
  top: -55%;
  left: 1%;
}
#content .work .container li:hover::before {
  color: #ffffff;
  transition: 0.5s ease;
}
#content .work .container li:nth-child(1)::before {
  content: "01";
}
#content .work .container li:nth-child(2)::before {
  content: "02";
}
#content .work .container li:nth-child(3)::before {
  content: "03";
}
#content .work .container li:nth-child(4)::before {
  content: "04";
}
#content .work .container li:nth-child(5)::before {
  content: "05";
}
#content .work .container li:nth-child(6)::before {
  content: "06";
}
#content .work .container li:nth-child(7)::before {
  content: "07";
}
#content .work .pictures {
  position: absolute;
  width: 100%;
  top: 15%;
  left: 82%;
}
#content .work .pictures img {
  aspect-ratio: 4/3;
  width: 100%;
}
/* flow */
#flow {
  padding-bottom: 150px;
}
#flow dl {
  display: flex;
  width: 80%;
  align-items: center;
  background-color: #ffffff;
  border-radius: 60px;
  padding: 40px 0;
  text-align: center;
  margin: 0 auto 120px;
}
#flow dt {
  width: 40%;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
#flow dd {
  width: 65%;
  margin-left: 0;
  border-left: #ed6b00 5px dotted;
}
#flow dd:nth-of-type(2) {
  margin-left: 35%;
}
#flow .step-box {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin-bottom: 60px;
}
#flow .step-box li {
  aspect-ratio: 1/1;
  width: 32%;
  background-color: #befadd;
  border-radius: 60px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  position: relative;
}
#flow .step-box li img {
  height: 60%;
  position: absolute;
  top: 17%;
  right: -15%;
  z-index: 2;
}
#flow .step-box li::before {
  content: "STEP";
  font-family: "Darumadrop One", sans-serif;
  font-weight: 400;
  color: #ed6b00;
  font-size: 2.5rem;
  position: absolute;
  top: -5%;
  left: 28%;
}
#flow .step-box li::after {
  font-family: "Darumadrop One", sans-serif;
  font-weight: 400;
  color: #ed6b00;
  font-size: 8rem;
  position: absolute;
  top: -42%;
  left: 53%;
}
#flow .step-box li:nth-child(1)::after {
  content: "1";
}
#flow .step-box li:nth-child(2)::after {
  content: "2";
}
#flow .step-box li:nth-child(3)::after {
  content: "3";
}
/* question */
#faq {
  padding-bottom: 100px;
}
#faq li {
  width: 70%;
  min-width: 470px;
  padding: 20px 60px;
  background-color: #ffffff;
  border-radius: 30px;
  margin: 0 auto 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s, transform 0.5s;
}
#faq li.inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
#faq li:last-child {
  margin: 0 auto;
}
#faq li:hover {
  color: #ffffff;
  background-color: #ee9e25;
  cursor: pointer;
}
#faq .question {
  transition: 0.3s;
}
#faq .question span {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 1.875rem;
  margin-right: 5%;
  color: #ed6b00;
}
#faq .modal {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  display: none;
}
#faq .modal .modal-layer {
  width: 100%;
  height: 100%;
  position: relative;
}
#faq .modal .modal-bg {
  width: 100%;
  height: 100%;
  background-color: #525252;
  opacity: 0.8;
}
#faq .modal .modal-content {
  width: 65%;
  height: 45%;
  border-radius: 25px;
  padding: 10%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
}
#faq .modal .modal-content .modal-question {
  font-size: 1.25rem;
  margin-bottom: 60px;
  display: flex;
  align-items: baseline;
}
#faq .modal .modal-content .modal-question::before {
  content: "Q";
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.875rem;
  color: #ed6b00;
  margin-right: 5%;
}
#faq .modal .modal-content .answer {
  display: flex;
  align-items: baseline;
}
#faq .modal .modal-content .answer::before {
  content: "A";
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.875rem;
  color: #00b097;
  margin-right: 5%;
}
/* contact */
#contact {
  text-align: center;
}
#contact p {
  font-size: 1.5rem;
}
#contact .btn {
  background-color: #ffffff;
  color: #ed6b00;
  font-size: 1.5rem;
  display: inline-block;
  padding: 30px 90px;
  border: #ed6b00 5px solid;
  border-radius: 120px;
  transition: 0.3s;
  margin-bottom: 20px;
}
#contact .btn:hover {
  background-color: #ed6b00;
  color: #ffffff;
}
/* access */
#access .map,
#access .walk {
  margin: 0 auto;
}
#access .circle {
  background-color: #ffffff;
  aspect-ratio: 1/1;
  width: 400px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#access .circle dl {
  padding: 30% 8% 25% 10%;
  display: flex;
  flex-direction: column;
}
#access .circle dd {
  padding-bottom: 20px;
}
#access .circle dd:first-of-type {
  border-bottom: #00b097 2px dashed;
}
#access .circle p {
  align-self: center;
  margin: 0 auto;
}
#access .map {
  width: 100%;
  min-width: 940px;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 80px;
}
#access .map .circle {
  position: relative;
  margin-right: 9%;
}
#access .map .map-pc {
  display: block;
}
#access .map .map-sp {
  display: none;
}
#access .map iframe {
  aspect-ratio: 4/3;
  border-radius: 25px;
  position: absolute;
  top: 8%;
  right: 92%;
  z-index: 2;
}
#access .movie {
  width: fit-content;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
/* footer */
#footer .footer-bg {
  overflow: hidden;
  width: 100%;
}
#footer .white {
  background-color: #ffffff;
}
#footer .footer-menu {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 1% 40px;
}
#footer .footer-banner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
/* #footer .footer-menu img {
  margin-left: 5%;
} */
#footer .footer-menu ul {
  display: flex;
  justify-content: center;
}
#footer .footer-menu li {
  padding: 0 2%;
  border-right: #befadd 3px solid;
}
#footer .footer-menu li:last-child {
  border-right: none;
}
#footer .footer-menu li a {
  position: relative;
}
#footer .footer-menu li a::after {
  content: "";
  position: absolute;
  background-color: #000000;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  transition: 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
#footer .footer-menu li a:hover::after {
  transform: scale(1, 1);
}
#footer .copyright {
  background-color: #00b097;
  color: #ffffff;
  text-align: center;
}
#footer .fixed-contact,
#footer .fixed-bird {
  display: none;
  position: fixed;
  z-index: 3;
}
#footer .fixed-arrow {
  aspect-ratio: 1/1;
  width: 50px;
  position: fixed;
  bottom: 1%;
  right: 1%;
  z-index: 3;
}
@media screen and (min-width: 1260px) {
  #footer .fixed-contact {
    display: block;
    width: 80px;
    top: 30%;
    right: -10px;
    cursor: pointer;
    transition: 0.3s;
  }
  #footer .fixed-contact:hover {
    transform: translateX(-10px);
  }
  #footer .fixed-bird {
    display: block;
    aspect-ratio: 72/57;
    width: 10%;
    bottom: 5%;
    left: 1%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s, transform 0.5s;
  }
  #footer .fixed-bird.inview {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
  }
}
@media screen and (max-width: 1140px) {
  #access .movie {
    flex-direction: column;
    flex-wrap: wrap;
  }
  #access .movie iframe {
    max-width: 100%;
    width: 560px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1010px) {
  #message::before {
    display: none;
  }
  #content .three {
    flex-direction: column;
    align-items: center;
  }
  #content .three li {
    width: 60%;
    min-width: 320px;
    margin-bottom: 50px;
  }
  #content .five-circle {
    height: 400px;
  }
  #content .five-circle li {
    width: 20%;
  }
  #content .five-circle li:nth-child(1) {
    left: 21%;
    z-index: 2;
  }
  #content .five-circle li:nth-child(2) {
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 2;
  }
  #content .five-circle li:nth-child(3) {
    left: unset;
    right: 21%;
    margin: unset;
    z-index: 2;
  }
  #content .five-circle li:nth-child(4) {
    top: 44%;
    right: unset;
    left: 31%;
  }
  #content .five-circle li:nth-child(5) {
    top: 44%;
    right: 31%;
  }
  #content .work .container {
    padding: 6% 12%;
    margin-left: 0;
    margin: 48% auto 0;
    border-radius: 60px;
  }
  #content .work .pictures {
    top: -43%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  #content .work .pictures img {
    width: 70%;
  }
  #flow .step-box {
    flex-direction: column;
    align-items: center;
  }
  #flow .step-box li {
    aspect-ratio: unset;
    width: 60%;
    min-width: 480px;
    border-radius: 65px;
    margin-bottom: 60px;
    padding: 8% 4% 6% 7%;
  }
  #flow .step-box li::before {
    top: -15px;
    left: 12%;
  }
  #flow .step-box li::after {
    top: -145px;
    left: 30%;
  }
  #flow .step-box li > .pc {
    display: none;
  }
  #flow .step-box li > .sp {
    display: block;
    aspect-ratio: 36 / 13;
    width: 20%;
    position: absolute;
    top: 98%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  #flow .step-box li img {
    height: auto;
  }
  #footer .footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #footer .footer-menu img {
    display: block;
  }
  #footer .footer-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  #footer .footer-banner > img {
    margin-bottom: 16px;
  }
  #footer .footer-menu ul {
    flex-direction: column;
    padding-right: 0;
    width: 40%;
    margin-left: 55px;
  }
  #footer .footer-menu li {
    padding-right: 0;
    display: inline-block;
    border-right: none;
    position: relative;
    margin-left: 30px;
  }
  #footer .footer-menu li::before {
    content: "";
    position: absolute;
    background-color: #ed6b00;
    width: 14px;
    height: 14px;
    left: -20px;
    top: 6px;
  }
  #footer .footer-menu li a {
    display: inline-block;
  }
}
@media screen and (max-width: 900px) {
  .large {
    font-size: 6rem;
  }
  #header {
    padding-bottom: 0;
  }
  #header .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 40px 2% 10px;
  }
  #header .header-top .site-title {
    min-width: 160px;
    width: 21%;
  }
  #header .sns-list {
    position: static;
  }
  #header .sns-list li:nth-child(4) {
    display: block;
  }
  #header .sns-list li {
    width: 40px;
  }
  #header .hamburger.sp {
    display: block;
  }
  #header .wrapper > nav {
    display: none;
  }
  #content .section-title:before,
  #faq .section-title::before,
  #access .section-title::before {
    display: none;
  }
  #content .section-title::after,
  #faq .section-title::after,
  #access .section-title::after {
    display: none;
  }
  #flow .section-title::after,
  #contact .section-title::after {
    display: none;
  }
  #flow .section-title::before,
  #contact .section-title::before {
    display: none;
  }
  #content .course .five-circle img {
    width: 60%;
  }
  #content .five-circle li {
    font-size: 0.875rem;
  }
  #flow dl {
    flex-direction: column;
  }
  #flow dd {
    border-left: none;
    border-top: #ed6b00 5px dotted;
    width: 72%;
    padding-top: 30px;
  }
  #access .section-title {
    margin-bottom: 350px;
  }
  #access .map {
    justify-content: center;
    min-width: auto;
  }
  #access .map .circle {
    margin-right: 0;
  }
  #access .map iframe {
    top: -63%;
    right: auto;
  }
}
@media screen and (max-width: 650px) {
  #header .hamburger {
    aspect-ratio: 1/1;
    width: 40px;
  }
  #header .hamburger span:nth-child(1) {
    top: 32%;
  }
  #header .hamburger span:nth-child(2) {
    top: 50%;
  }
  #header .hamburger span:nth-child(3) {
    top: 68%;
  }
  #header .hamburger.active span:nth-child(1) {
    top: 48%;
  }
  #header .hamburger.active span:nth-child(2),
  #header .hamburger.active span:nth-child(3) {
    top: 48%;
  }
  #message .text {
    font-size: 0.875rem;
  }
  #message > img {
    width: 32%;
  }
  #content .bubble-comment {
    align-items: center;
    flex-direction: column-reverse;
  }
  #content .bubble-comment p {
    background-image: url(../image/talk_sp.png);
    background-size: 80%;
    background-position: center;
    padding-bottom: 20px;
  }
  #content .bubble-comment img {
    width: 150px;
    height: 150px;
    margin-right: 0;
  }
  #content .bubble-comment p span {
    padding-right: 0;
  }
  #content .five-circle {
    height: 940px;
    max-width: 370px;
    min-width: 335px;
    margin: 0 auto;
  }
  #content .five-circle li {
    width: 63%;
    font-size: 1rem;
  }
  #content .course .text {
    font-size: 1.2rem;
  }
  #content .five-circle li:nth-of-type(1) {
    top: 0;
    left: 0;
  }
  #content .five-circle li:nth-of-type(2) {
    top: 160px;
    left: 130px;
  }
  #content .five-circle li:nth-of-type(3) {
    top: 320px;
    left: 0;
    margin: 0;
  }
  #content .five-circle li:nth-of-type(4) {
    top: 480px;
    left: 130px;
  }
  #content .five-circle li:nth-of-type(5) {
    top: 640px;
    left: 0;
  }
  #flow .step-box li {
    aspect-ratio: 1/1;
    width: 70%;
    min-width: auto;
    margin-bottom: 120px;
  }
  #flow .step-box li:last-child {
    margin-bottom: 50px;
  }
  #flow .step-box li > .sp {
    width: 40%;
  }
  #flow .step-box li::before {
    top: -15px;
    left: 22%;
  }
  #flow .step-box li::after {
    top: -139px;
    left: 50%;
  }
  #faq li {
    padding: 10px 20px;
    width: 90%;
    min-width: auto;
  }
  #faq li p {
    font-size: 0.875rem;
  }
  #faq .modal .modal-content {
    padding: 5%;
  }
  #access .map .map-pc {
    display: none;
  }
  #access .map .map-sp {
    display: block;
  }
  #access .map iframe {
    top: -52%;
  }
  #footer .footer-menu {
    flex-direction: column;
  }
  #footer .footer-menu img {
    display: block;
    margin-left: 0;
  }
  #footer .footer-banner {
    flex-direction: column-reverse;
    margin-bottom: 0;
  }
  #footer .footer-banner > a {
    margin-bottom: 24px;
  }
  #footer .footer-menu ul {
    flex-direction: column;
    padding-right: 0;
    min-width: 260px;
    margin-left: 0;
  }
  #footer .footer-menu li {
    padding-right: 0;
    display: inline-block;
    border-right: none;
    position: relative;
    margin-left: 30px;
  }
  #footer .footer-menu li::before {
    content: "";
    position: absolute;
    background-color: #ed6b00;
    width: 14px;
    height: 14px;
    left: -20px;
    top: 6px;
  }
}
@media screen and (max-width: 430px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .small {
    font-size: 1.25rem;
  }
  .large {
    font-size: 4rem;
  }
  .wrapper {
    padding: 0 10px;
    overflow: hidden;
  }
  .section-title {
    padding-top: 50px;
    margin-bottom: 70px;
  }
  #message .section-title::before,
  #flow .section-title::before,
  #contact .section-title::before {
    display: none;
  }
  #message .section-title::after,
  #flow .section-title::after,
  #contact .section-title::after {
    display: none;
  }
  #content .section-title:before,
  #faq .section-title::before,
  #access .section-title::before {
    display: none;
  }
  #content .section-title::after,
  #faq .section-title::after,
  #access .section-title::after {
    display: none;
  }
  #header {
    padding-bottom: 0;
  }
  #header .sns-list {
    margin-left: 0;
  }
  #header .sns-list li {
    margin-right: 8px;
  }
  #header .sns-list li a {
    padding: 8%;
  }
  #header .site-title {
    margin-left: 1%;
    margin-right: 1%;
  }
  #header .site-title img {
    min-width: 120px;
  }
  .mainvisual {
    aspect-ratio: 7/12;
  }
  .mainvisual .fade img {
    aspect-ratio: 7/12;
  }
  #message {
    padding-bottom: 100px;
    background-image: url(../image/back_y_sp.png);
  }
  #message .sub-title {
    font-size: 1.25rem;
    margin-bottom: 50px;
  }
  #message .sub-title:first-child {
    margin-bottom: 0;
  }
  #message .text {
    font-size: 0.875rem;
    letter-spacing: -0.03em;
    line-height: 2.5;
  }
  #message > img {
    width: 70%;
  }
  #content .section-title {
    padding-top: 100px;
    margin-bottom: 100px;
  }
  #content .sub-title {
    width: 100%;
    max-width: 320px;
    margin-bottom: 60px;
  }
  #content .three {
    flex-direction: column;
  }
  #content .three li {
    width: 100%;
    margin-bottom: 40px;
  }
  #content .five-circle li {
    width: 63%;
  }
  #content .five-circle li:nth-of-type(1) {
    top: 0;
    left: 0;
  }
  #content .five-circle li:nth-of-type(2) {
    top: 160px;
    left: 130px;
  }
  #content .five-circle li:nth-of-type(3) {
    top: 320px;
    left: 0;
    margin: 0;
  }
  #content .five-circle li:nth-of-type(4) {
    top: 480px;
    left: 130px;
  }
  #content .five-circle li:nth-of-type(5) {
    top: 640px;
    left: 0;
  }
  #content .course {
    margin-bottom: 110px;
  }
  #content .course .text {
    line-height: 2.5;
  }
  #content .work .sub-title {
    margin-bottom: 200px;
  }
  #content .work .container {
    display: block;
    padding: 16% 9%;
    border-radius: 60px;
  }
  #content .work .pictures {
    top: -30%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  #content .work .pictures img {
    width: 70%;
  }
  #flow dl {
    width: 96%;
  }
  #flow dd span {
    display: inline-block;
    margin-top: 20px;
  }
  #flow .step-box {
    flex-direction: column;
  }
  #flow .step-box li {
    width: 96%;
    margin: 0 auto 120px;
  }
  #flow .step-box li:last-child {
    margin: 0 auto;
  }
  #flow .step-box li::before {
    top: -15px;
    left: 30%;
  }
  #flow .step-box li::after {
    top: -140px;
    left: 54%;
  }
  #faq .modal .modal-content {
    width: 80%;
    height: 60%;
    padding: 5%;
    justify-content: center;
  }
  #contact {
    padding-bottom: 50px;
  }
  #contact .btn {
    padding: 25px 55px;
  }
  #access .section-title {
    margin-bottom: 220px;
  }
  #access .map {
    flex-direction: column;
    justify-content: center;
    margin-bottom: 60px;
  }
  #access .map iframe {
    aspect-ratio: 4/3;
    width: 90%;
    height: auto;
    top: -55%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  #access .map .circle {
    margin-right: auto;
  }
  #access .circle {
    width: 320px;
    height: 320px;
    margin: 0 auto;
  }
  #access .circle dl {
    line-height: 1.6;
    padding: 10% 13%;
  }
  #footer .fixed-arrow a {
    width: 40px;
    font-size: 1.2rem;
  }
}
