@charset "UTF-8";
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  word-break: break-all;
  line-break: strict;
  hyphens: auto;
  text-align: justify;
  line-height: 1.8rem;
}

html {
  overflow-y: scroll;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  text-decoration: none;
}
a:link, a:visited, a:active {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

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

fieldset, img {
  border: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

br {
  letter-spacing: 0;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, figure, form, fieldset, input, textarea, p, blockquote, th, td, a {
  color: #040000;
  font-family: "Zen Maru Gothic", "Yu Gothic", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

/* ------------------------------------- 
  header
------------------------------------- */
header {
  width: 100%;
}

/* header__menu__sp **************************/
.hamburger {
  display: block;
  position: fixed;
  z-index: 9999;
  right: 10px;
  top: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  /* スマホメニューを開いてる時のボタン */
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 1px;
  left: 15px;
  background: #040000;
  transition: 0.3s all;
}
.hamburger span:nth-child(1) {
  top: 30px;
}
.hamburger span:nth-child(2) {
  top: 35px;
}
.hamburger.active span:nth-child(1) {
  top: 30px;
  left: 15px;
  background: #040000;
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
  top: 30px;
  background: #040000;
  transform: rotate(45deg);
}

/* メニュー背景　**************************/
.globalMenuSp {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #FFFFFF;
  width: 100%;
  height: 100vh;
  text-align: center;
  color: #040000;
  pointer-events: none;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9998;
  /* クリックでjQueryで追加・削除 */
}
.globalMenuSp.active {
  display: block;
  opacity: 100;
  pointer-events: auto;
}

.globalMenuSp .wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  width: 90%;
  margin: 50px auto;
}
.globalMenuSp .wrap .logo {
  max-width: 150px;
  width: 70%;
}
.globalMenuSp .wrap nav {
  width: 100%;
}
.globalMenuSp .wrap nav ul {
  margin: 0 auto;
  max-width: 150px;
  width: 100%;
}
.globalMenuSp .wrap nav li {
  padding: 0;
  line-height: 2.5rem;
}
.globalMenuSp .wrap nav li a {
  display: block;
  width: auto;
  color: #040000;
  text-decoration: none;
  text-align: center;
}
.globalMenuSp .wrap .yamatoya {
  border-top: 2px solid #040000;
  width: 80%;
}
.globalMenuSp .wrap .yamatoya a {
  display: block;
  max-width: 93px;
  margin: 30px auto 0;
}

/* ------------------------------------- 
  font・text
------------------------------------- */
/* font ******/
.poppins {
  font-family: "Poppins", sans-serif;
}

h1, h2, h3 {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

p, dt, dd, th, td, li {
  line-height: 2rem;
  letter-spacing: 0.1rem;
}

h1 {
  font-size: 1.875rem;
}

h2 {
  font-size: 1.875rem;
}

h3 {
  font-size: 1.25rem;
}

p, dl, dt, li, th, td {
  font-size: 1rem;
}

@media screen and (max-width: 960px) {
  p, dt, dd, th, td, li {
    line-height: 1.8rem;
  }
  h1 {
    font-size: 1.5625rem;
  }
  h2 {
    font-size: 1.5625rem;
  }
  h3 {
    font-size: 1.125rem;
  }
  p, dl, dt, li, th, td {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 768px) {
  p, dt, dd, th, td, li {
    line-height: 1.6rem;
  }
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  h3 {
    font-size: 1rem;
  }
  p, dl, dt, li, th, td {
    font-size: 0.875rem;
  }
}
/* text ******/
.txt_bold {
  font-weight: bold;
}

.txt_normal {
  font-weight: normal;
}

.txt-center {
  text-align: center;
}

.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

/* ------------------------------------- 
  a
------------------------------------- */
a {
  color: #040000;
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  text-decoration: none;
  opacity: 0.6;
}

/* ------------------------------------- 
  layout
------------------------------------- */
body {
  background: #E7F5F9;
}

main {
  width: 100%;
}

.mt0 {
  margin-top: 0 !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

/* PC SP ******/
.sp-480, .sp, .sp-960, .sp-1024, .sp-1280, .sp-1440 {
  display: none !important;
}

@media (max-width: 1440px) {
  .sp-1440 {
    display: block !important;
  }
  .pc-1440 {
    display: none !important;
  }
}
@media (max-width: 1280px) {
  .sp-1280 {
    display: block !important;
  }
  .pc-1280 {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  .sp-1024 {
    display: block !important;
  }
  .pc-1024 {
    display: none !important;
  }
}
@media (max-width: 960px) {
  .sp-960 {
    display: block !important;
  }
  .pc-960 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .sp-480 {
    display: block !important;
  }
  .pc-480 {
    display: none !important;
  }
}
/* ------------------------------------- 
  button
------------------------------------- */
.button {
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: #040000;
  border: 2px solid #040000;
  border-radius: 100px;
  width: 240px;
  margin: 0 auto;
  color: #FFFFFF;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 70px;
  z-index: 1;
  box-sizing: border-box;
}
.button::before {
  position: absolute;
  top: 0;
  left: -100%;
  content: "";
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  transition: 0.4s;
  z-index: -1;
}

.button:hover {
  color: #040000;
  text-decoration: none;
}
.button:hover::before {
  left: 0;
}

input[type=submit] {
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .button {
    font-size: 1.125rem;
  }
}
/* ------------------------------------- 
  phone
------------------------------------- */
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.contact__mailform {
  max-width: 750px;
  width: 100%;
  margin: 50px auto 0;
}
.contact__mailform .att {
  text-align: center;
  font-size: 0.875rem;
}
.contact__mailform .att span {
  color: #FF4484;
}
.contact__mailform dl {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  background: #E8F1F5;
  border: 2px solid #040000;
  border-radius: 20px;
  width: 100%;
  margin: 0px auto 20px;
  padding: 20px 30px;
}
.contact__mailform dl:last-child {
  margin-bottom: 0;
}
.contact__mailform dl dt {
  width: 160px;
  font-weight: bold;
}
.contact__mailform dl dt span {
  color: #FF4484;
}
.contact__mailform dl dd {
  width: calc(100% - 200px);
}
.contact__mailform dl.textarea {
  align-items: flex-start;
}
.contact__mailform dl.textarea dd {
  margin-top: 4px;
}
.contact__mailform label {
  margin-right: 20px;
}
.contact__mailform input[type=text], .contact__mailform input[type=tel], .contact__mailform input[type=number], .contact__mailform input[type=date], .contact__mailform input[type=email] {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
  font-size: 1rem;
}
.contact__mailform input[type=radio] {
  appearance: none;
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #040000;
  border-radius: 50%;
  vertical-align: -2px;
  margin-right: 5px;
}
.contact__mailform input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #040000;
  content: "";
}
.contact__mailform textarea {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  padding: 0;
  font-size: 1rem;
}
.contact__mailform .submitbtn {
  margin: 30px auto 0;
  text-align: center;
}
.contact__mailform .submitbtn input[type=submit] {
  appearance: none;
  background: #040000;
  border: 0;
  border-radius: 999px;
  width: 240px;
  height: 70px;
  font-size: 1.25rem;
  text-align: center;
  color: #FFFFFF;
  letter-spacing: 0.1rem;
  transition: all 0.3s;
}
.contact__mailform .submitbtn input[type=submit]:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .contact__mailform {
    margin-top: 30px;
  }
  .contact__mailform dl {
    display: block;
    padding: 20px;
  }
  .contact__mailform dl dt, .contact__mailform dl dd {
    width: 100%;
  }
  .contact__mailform dl dt {
    font-size: 0.875rem;
    margin-bottom: 5px;
  }
  .contact__mailform.textarea dd {
    margin-top: 0px;
  }
  .contact__mailform label {
    margin-right: 0;
  }
  .contact__mailform .submitbtn input[type=submit] {
    height: 60px;
    font-size: 1.125rem;
  }
}

/* mailcomp ***************************/
/* mailcomp-logo */
.mailcomp-logo {
  padding: 30px 0 0;
  margin-bottom: 50px;
}
.mailcomp-logo .logo {
  max-width: 150px;
  margin: 0 auto;
}

/* mailcomp-detail */
.mailcomp-detail .wrap {
  max-width: 1000px;
  padding: 100px 0;
}
.mailcomp-detail .title {
  width: 80%;
  margin: 0 auto;
}
.mailcomp-detail .title h1 {
  font-size: 2.5rem;
}
.mailcomp-detail .title p {
  margin-top: 30px;
  text-align: center;
}
.mailcomp-detail .contents {
  max-width: 700px;
  margin-top: 50px;
}
.mailcomp-detail .contents p {
  text-align: center;
}
.mailcomp-detail .txt-box {
  padding: 50px;
}
.mailcomp-detail .txt-box::before, .mailcomp-detail .txt-box::after {
  position: absolute;
  content: "";
  background: #FFFFFF;
  width: 150px;
  height: 5px;
}
.mailcomp-detail .txt-box::before {
  top: -3px;
  left: 70px;
}
.mailcomp-detail .txt-box::after {
  bottom: -3px;
  right: 70px;
}
.mailcomp-detail .txt-box h2 {
  margin-bottom: 30px;
}
.mailcomp-detail .txt-box ul {
  list-style: disc;
  margin: 30px auto;
}
.mailcomp-detail .txt-box ul li {
  margin-left: 20px;
  font-weight: 700;
}
.mailcomp-detail .txt-box p.txt {
  text-align: justify;
}

/* mailcomp-footer */
.mailcomp-footer {
  background: #E7F5F9 !important;
}

@media screen and (max-width: 960px) {
  /* mailcomp-detail */
  .mailcomp-detail .wrap {
    padding: 70px 0;
  }
  .mailcomp-detail .title h1 {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  /* mailcomp-logo */
  .mailcomp-logo {
    margin-bottom: 30px;
  }
  /* mailcomp-detail */
  .mailcomp-detail .wrap {
    padding: 50px 0;
  }
  .mailcomp-detail .title h1 {
    font-size: 1.5625rem;
  }
  .mailcomp-detail .title p {
    margin-top: 20px;
  }
  .mailcomp-detail .txt-box {
    padding: 30px;
  }
  .mailcomp-detail .txt-box h2 {
    margin-bottom: 20px;
  }
  .mailcomp-detail .txt-box ul {
    margin: 20px auto;
  }
}
#page_top {
  position: fixed;
  width: 80px;
  right: 20px;
  z-index: 9997;
  transition: all 0.3s;
}
#page_top img {
  display: block;
  width: 100%;
}
#page_top:hover {
  bottom: 15px !important;
  cursor: pointer;
  text-decoration: none;
}

.footer {
  background: #FFFFFF;
}
.footer__wrap {
  border-top: 2px solid #040000;
  max-width: 1200px;
  width: 80%;
  margin: 0 auto;
  padding: 70px 0;
}
.footer__wrap a {
  display: block;
  max-width: 205px;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .footer__wrap {
    padding: 50px 0;
  }
  .footer__wrap a {
    max-width: 150px;
  }
}
@media screen and (max-width: 480px) {
  .footer__wrap {
    padding: 30px 0;
  }
  .footer__wrap a {
    max-width: 120px;
  }
  #page_top {
    width: 50px;
  }
}
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.5s;
  animation-timing-function: ease-out;
  opacity: 0;
}
.animated.infinite {
  animation-iteration-count: infinite;
}

/* ------------------------------------- 
  animation
------------------------------------- */
/* fadeIn **************************/
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

/* fadeInLeft **************************/
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

/* fadeInRight **************************/
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

/* fadeInUp **************************/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes rote {
  0%, 100% {
    transform: rotate(3deg);
  }
  50% {
    transform: rotate(-3deg);
  }
}
/* fluffy **************************/
@keyframes fluffy1 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-10px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fluffy2 {
  0% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(0);
  }
  10% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-5px);
  }
  25% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
/* zoomIn **************************/
@keyframes zoomIn {
  from {
    transform: scale(0.8);
  }
  to {
    transform: scale(1);
  }
}
@keyframes zoomInFade {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.zoomInFade {
  animation-name: zoomInFade;
}

/* blurIn **************************/
@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(20px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}
.blurIn {
  animation-name: blurIn;
}

/* noFilter **************************/
@keyframes noFilter {
  100% {
    opacity: 1;
    filter: none;
  }
}
.noFilter {
  animation-name: noFilter;
}

@keyframes noTransform {
  100% {
    opacity: 1;
    transform: none;
  }
}
.noTransform {
  animation-name: noTransform;
}

/* lineanime **************************/
.lineanime {
  fill: none;
  stroke: #ffffff;
  stroke-width: 19;
  stroke-linejoin: round;
  stroke-miterlimit: 10;
  stroke-dasharray: 1800px;
  stroke-dashoffset: 1800px;
  animation: line 2.5s 0.1s forwards;
}
.lineanime.st2 {
  animation-delay: 0.3s;
}
.lineanime.st3 {
  animation-delay: 0.6s;
}
.lineanime.st4 {
  animation-delay: 0.9s;
}
.lineanime.st5 {
  animation-delay: 1.2s;
}
.lineanime.st6 {
  animation-delay: 1.5s;
}
.lineanime.st7 {
  animation-delay: 1.8s;
}

@keyframes line {
  0% {
    stroke-dashoffset: 1800px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/* scaleDown **************************/
@keyframes scaleDown {
  0% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.scaleDown {
  animation-name: scaleDown;
  transform: scale(1.2);
  opacity: 1 !important;
}

/* scaleUP **************************/
@keyframes scaleUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.scaleUp {
  animation-name: scaleUp;
  transform: scale(1);
  opacity: 1 !important;
}

/* passing **************************/
.passing {
  display: block;
}

.passing .passing-bar {
  position: relative;
  display: inline-block;
  transform: translate3d(0, 0, 0);
}

.passing .passing-bar:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}

.passing .passing-txt {
  opacity: 0;
  transform: translate3d(0, 0, 0);
}

.passing.move .passing-txt {
  animation: passing-txt 0s ease 0.5s 1 normal forwards;
}

@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*passingLeft*/
.passingL.passing-bar:before {
  left: 0;
}

.passingL.move .passing-bar:before {
  animation: passing-barL 1s ease 0s 1 normal forwards;
}

@keyframes passing-barL {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
/*passingRight*/
.passingR.passing-bar:before {
  right: 0;
}

.passingR.move .passing-bar:before {
  animation: passing-barR 1s ease 0s 1 normal forwards;
}

@keyframes passing-barR {
  0% {
    right: 0;
    width: 0;
  }
  50% {
    right: 0;
    width: 100%;
  }
  51% {
    right: 0;
    width: 100%;
  }
  100% {
    right: 100%;
    width: 0;
  }
}
/* txt_popout **************************/
.txt_popout {
  overflow: hidden;
}

.txt_popout.move p {
  transform: translateY(2em);
  animation: textanimation 1s forwards;
}

.txt_popout p:nth-child(1) {
  animation-delay: 0.05s;
}

.txt_popout p:nth-child(2) {
  animation-delay: 0.1s;
}

.txt_popout p:nth-child(3) {
  animation-delay: 0.15s;
}

.txt_popout p:nth-child(4) {
  animation-delay: 0.2s;
}

.txt_popout p:nth-child(5) {
  animation-delay: 0.25s;
}

.txt_popout p:nth-child(6) {
  animation-delay: 0.3s;
}

.txt_popout p:nth-child(7) {
  animation-delay: 0.35s;
}

.txt_popout p:nth-child(8) {
  animation-delay: 0.4s;
}

.txt_popout p:nth-child(9) {
  animation-delay: 0.45s;
}

.txt_popout p:nth-child(10) {
  animation-delay: 0.5s;
}

.txt_popout p:nth-child(11) {
  animation-delay: 0.55s;
}

.txt_popout p:nth-child(12) {
  animation-delay: 0.6s;
}

@keyframes textanimation {
  0% {
    transform: translateY(2em);
  }
  100% {
    transform: translateY(0);
  }
}
/* txt_marker **************************/
.txt_marker {
  display: inline;
  position: relative;
}

.txt_marker::before {
  content: "";
  width: 0;
  display: block;
  position: absolute;
  top: -7px;
  left: 0;
  z-index: -2;
}

.txt_marker.move::before {
  animation: markerAnime 1s forwards ease;
}

@keyframes markerAnime {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* img-slide **************************/
.img-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  line-height: 0;
}

.img-slide:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 100%;
  z-index: 1;
  transform-origin: right center;
  transform: scaleX(1);
  transition: width 1s cubic-bezier(0.19, 1, 0.22, 1) 0s, transform 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.5s;
}

.img-slide img {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  top: -50%;
  left: -100%;
  transition: 0.7s;
}

.img-slide--move img {
  opacity: 1;
  left: 0;
}

.img-slide--move.img-slide:before {
  transform: scaleX(0);
  width: 100%;
}

/* slideIn **************************/
/*slideInL*/
.slideInL {
  position: relative;
  overflow: hidden;
}

.slideInL::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideInL--move::after {
  animation: slideInL 1.5s ease-in-out forwards;
}

@keyframes slideInL {
  0% {
    left: 0;
  }
  70% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
/*slideInR*/
.slideInR {
  position: relative;
  overflow: hidden;
}

.slideInR::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}

.slideInR--move::after {
  animation: slideInR 1.5s ease-in-out forwards;
}

@keyframes slideInR {
  0% {
    right: 0;
  }
  70% {
    right: 100%;
  }
  100% {
    right: 100%;
  }
}
/*slideInT*/
.slideInT {
  position: relative;
  overflow: hidden;
}

.slideInT::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.slideInT--move::after {
  animation: slideInT 1.5s ease-in-out forwards;
}

@keyframes slideInT {
  0% {
    top: 0;
  }
  70% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}
/*slideInB*/
.slideInB {
  position: relative;
  overflow: hidden;
}

.slideInB::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.slideInB--move::after {
  animation: slideInB 1.5s ease-in-out forwards;
}

@keyframes slideInB {
  0% {
    bottom: 0%;
  }
  70% {
    bottom: 100%;
  }
  100% {
    bottom: 100%;
  }
}
/* slideOut **************************/
/*slideOutL*/
.slideOutL {
  position: relative;
  overflow: hidden;
}

.slideOutL::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  z-index: 1;
}

.slideOutL--move::after {
  animation: slideOutL 1.5s ease-in-out forwards;
}

@keyframes slideOutL {
  0% {
    right: 100%;
  }
  70% {
    right: 0;
  }
  100% {
    right: 0;
  }
}
/*slideOutR*/
.slideOutR {
  position: relative;
  overflow: hidden;
}

.slideOutR::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 1;
}

.slideOutR--move::after {
  animation: slideOutR 1.5s ease-in-out forwards;
}

@keyframes slideOutR {
  0% {
    left: 100%;
  }
  70% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
/*slideOutT*/
.slideOutT {
  position: relative;
  overflow: hidden;
}

.slideOutT::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 100%;
  left: 0;
  z-index: 1;
}

.slideOutT--move::after {
  animation: slideOutT 1.5s ease-in-out forwards;
}

@keyframes slideOutT {
  0% {
    bottom: 100%;
  }
  70% {
    bottom: 0;
  }
  100% {
    bottom: 0;
  }
}
/*slideOutB*/
.slideOutB {
  position: relative;
  overflow: hidden;
}

.slideOutB::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  z-index: 1;
}

.slideOutB--move::after {
  animation: slideOutB 1.5s ease-in-out forwards;
}

@keyframes slideOutB {
  0% {
    top: 100%;
  }
  70% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
/* liner **************************/
/*linerLeft*/
.linerLeft:before {
  content: "";
  position: absolute;
  left: 0;
}

.linerLeft:before {
  animation: linerLeft 1s ease-in-out forwards;
}

@keyframes linerLeft {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerRight*/
.linerRight:before {
  content: "";
  position: absolute;
  left: 100%;
  transform: translateX(-100%);
  animation: linerRight 1s ease-in-out forwards;
}

@keyframes linerRight {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*linerTop*/
.linerTop:before {
  content: "";
  position: absolute;
  top: 0;
  animation: linerTop 1s ease-in-out forwards;
}

@keyframes linerTop {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/*linerBottom*/
.linerBottom:before {
  content: "";
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
  animation: linerBottom 1s ease-in-out forwards;
}

@keyframes linerBottom {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
/* loop-text **************************/
.loop-text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}
.loop-text__wrap {
  display: flex;
  animation: loop-text 20s linear infinite;
}
.loop-text span {
  display: inline-block;
  white-space: nowrap;
}

@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ------------------------------------- 
  delay
------------------------------------- */
.delay1 {
  animation-delay: 0.1s !important;
}

.delay2 {
  animation-delay: 0.2s !important;
}

.delay3 {
  animation-delay: 0.3s !important;
}

.delay4 {
  animation-delay: 0.4s !important;
}

.delay5 {
  animation-delay: 0.5s !important;
}

.delay6 {
  animation-delay: 0.6s !important;
}

.delay7 {
  animation-delay: 0.7s !important;
}

.delay8 {
  animation-delay: 0.8s !important;
}

.delay9 {
  animation-delay: 0.9s !important;
}

.delay10 {
  animation-delay: 1s !important;
}

.delay11 {
  animation-delay: 1.1s !important;
}

a {
  transition-duration: 0.3s;
}

/* ------------------------------------- 
  page-common
------------------------------------- */
section {
  position: relative;
  margin-bottom: 150px;
}
section .subtitle {
  max-width: 1720px;
  width: 90%;
  margin: 0 auto;
}
section .subtitle p {
  font-size: 10.625rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 119px;
  margin-left: 11.62%;
}
section .wrap {
  background: #FFFFFF;
  border-radius: 200px;
  max-width: 1720px;
  width: 90%;
  margin: 0 auto;
  padding: 200px 0;
}
section .border-box {
  position: relative;
  border: 2px solid #040000;
  border-radius: 50px;
  box-sizing: border-box;
}
section .border-box__wrap {
  position: relative;
  z-index: 1;
}
section .contents {
  max-width: 1200px;
  width: 70%;
  margin: 0 auto;
}
section h2 {
  margin-bottom: 150px;
}
@media screen and (max-width: 1024px) {
  section .subtitle p {
    font-size: 7.5rem;
    line-height: 84px;
    margin-left: 11%;
  }
  section .wrap {
    border-radius: 100px;
  }
}
@media screen and (max-width: 960px) {
  section {
    margin-bottom: 100px;
  }
  section .wrap {
    padding: 150px 0;
  }
  section h2 {
    margin-bottom: 100px;
  }
}
@media screen and (max-width: 768px) {
  section {
    margin-bottom: 75px;
  }
  section .subtitle p {
    font-size: 5.625rem;
    line-height: 63px;
    margin: 0 auto;
    text-align: center;
  }
  section .wrap {
    border-radius: 50px;
    padding: 100px 0;
  }
  section .border-box {
    border-radius: 25px;
  }
  section .contents {
    width: 90%;
  }
  section h2 {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 480px) {
  section {
    margin-bottom: 50px;
  }
  section .subtitle p {
    font-size: 3.75rem;
    line-height: 42px;
  }
  section .wrap {
    padding: 50px 0;
  }
  section h2 {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 375px) {
  section .subtitle p {
    font-size: 3.125rem;
    line-height: 35px;
  }
  section .wrap {
    border-radius: 40px;
  }
  section h2 {
    margin-bottom: 40px;
  }
}

/* ------------------------------------- 
  mv
------------------------------------- */
.mv {
  background: #FFFFFF;
  height: 100vh;
  margin-bottom: 225px;
}
.mv .mv-img {
  position: relative;
  height: 77.7vh;
  clip-path: inset(0 round 0 0 200px 200px);
}
.mv .mv-img__wrap {
  position: relative;
}
.mv .mv-img__wrap::after {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: #FFFFFF;
}
.mv .mv-img img {
  object-fit: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
}
.mv .mv-title {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFFFFF;
  border-radius: 999px 999px 0 0;
  width: 480px;
  height: 240px;
}
.mv .mv-title img {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}
.mv .mv-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 22.3vh;
}
.mv .mv-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 150px;
  margin: 0 auto;
}
.mv .mv-menu ul li {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .mv .mv-img {
    clip-path: inset(0 round 0 0 100px 100px);
  }
}
@media screen and (max-width: 960px) {
  .mv {
    margin-bottom: 150px;
  }
  .mv .mv-title {
    width: 360px;
    height: 180px;
  }
  .mv .mv-title img {
    max-width: 220px;
  }
  .mv .mv-menu ul {
    gap: 100px;
  }
}
@media screen and (max-width: 768px) {
  .mv {
    margin-bottom: 100px;
  }
  .mv .mv-menu ul {
    flex-wrap: wrap;
    gap: 20px 0px;
    max-width: 300px;
  }
  .mv .mv-menu ul li {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .mv {
    margin-bottom: 70px;
  }
  .mv .mv-img {
    height: 65vh;
    clip-path: inset(0 round 0 0 50px 50px);
  }
  .mv .mv-title {
    width: 220px;
    height: 110px;
  }
  .mv .mv-title img {
    max-width: 150px;
  }
  .mv .mv-menu {
    height: 35vh;
  }
}

/* ------------------------------------- 
  opening
------------------------------------- */
/* copy */
.opening .copy {
  margin-bottom: -65px;
}
.opening .copy span {
  font-size: 10.625rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #F89A1E;
  line-height: 130px;
}

/* overview */
.opening .overview {
  padding: 100px;
}
.opening .overview::before, .opening .overview::after {
  position: absolute;
  content: "";
  background: #FFFFFF;
  width: 150px;
  height: 5px;
}
.opening .overview::before {
  top: -3px;
  left: 70px;
}
.opening .overview::after {
  bottom: -3px;
  right: 70px;
}
.opening .overview h2 {
  margin-bottom: 30px;
}
.opening .overview .lead {
  max-width: 500px;
  margin: 0 auto;
  font-size: 1.125rem;
  letter-spacing: 0.1rem;
  line-height: 3rem;
}

/* detail */
.opening .detail {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 6.25%;
  margin-top: 120px;
}
.opening .detail .border-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  max-width: 350px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 50px 49px;
}
.opening .detail .border-box::before, .opening .detail .border-box::after {
  position: absolute;
  content: "";
  background: #FFFFFF;
}
.opening .detail .border-box::before {
  width: 15px;
  height: 105%;
  top: -3px;
}
.opening .detail .border-box::after {
  width: 105%;
  height: 15px;
  left: -3px;
}
.opening .detail .border-box:nth-child(1)::before {
  left: 42.8%;
}
.opening .detail .border-box:nth-child(1)::after {
  top: 20%;
}
.opening .detail .border-box:nth-child(2)::before {
  left: 25.7%;
}
.opening .detail .border-box:nth-child(2)::after {
  top: 57.7%;
}
.opening .detail .border-box:nth-child(3)::before {
  left: 62.8%;
}
.opening .detail .border-box:nth-child(3)::after {
  top: 25.5%;
}
.opening .detail .border-box img {
  display: block;
  max-width: 95px;
  margin: 0 auto;
}
.opening .detail .border-box h3 {
  margin: 30px auto 20px;
}

@media screen and (max-width: 1280px) {
  /* detail */
  .opening .detail {
    gap: 5%;
    margin-top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  /* overview */
  .opening .overview {
    padding: 100px 8%;
  }
  /* detail */
  .opening .detail {
    gap: 20px;
  }
  .opening .detail .border-box {
    padding: 50px 10%;
  }
  .opening .detail .border-box p {
    max-width: 350px;
  }
}
@media screen and (max-width: 960px) {
  /* copy */
  .opening .copy {
    margin-bottom: -50px;
  }
  .opening .copy span {
    font-size: 7.5rem;
    line-height: 100px;
  }
  /* overview */
  .opening .overview .lead {
    line-height: 2.5rem;
  }
  /* detail */
  .opening .detail {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 20px;
  }
  .opening .detail .border-box {
    max-width: 100%;
    padding: 40px;
  }
  .opening .detail .border-box__wrap {
    width: 100%;
    max-width: 300px;
  }
  .opening .detail .border-box__wrap p {
    margin-top: 20px;
  }
  .opening .detail .border-box .title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  .opening .detail .border-box .title img {
    max-width: 50px;
  }
  .opening .detail .border-box .title h3 {
    width: calc(100% - 70px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  /* copy */
  .opening .copy {
    margin-bottom: -35px;
  }
  .opening .copy span {
    font-size: 5.625rem;
    line-height: 70px;
  }
  /* overview */
  .opening .overview {
    padding: 70px 40px;
  }
  .opening .overview::before, .opening .overview::after {
    width: 70px;
  }
  .opening .overview::before {
    left: 30px;
  }
  .opening .overview::after {
    right: 30px;
  }
  .opening .overview .lead {
    font-size: 1rem;
    line-height: 2rem;
  }
}
@media screen and (max-width: 480px) {
  /* copy */
  .opening .copy {
    margin-bottom: -25px;
  }
  .opening .copy span {
    font-size: 3.75rem;
    line-height: 50px;
  }
  /* detail */
  .opening .detail .border-box {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 375px) {
  /* overview */
  .opening .overview {
    padding: 50px 30px;
  }
}
/* ------------------------------------- 
  service
------------------------------------- */
/* service-box */
.service .service-box {
  position: relative;
  margin-top: 200px;
}
.service .service-box__detail {
  position: absolute;
  bottom: -80px;
  z-index: 1;
}
.service .service-box__detail__wrap {
  position: relative;
}
.service .service-box__detail .number {
  position: absolute;
  top: -75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 150px;
  height: 150px;
  text-align: center;
  z-index: 1;
}
.service .service-box__detail .number p {
  font-size: 1.125rem;
  font-weight: 700;
  color: #FFFFFF;
}
.service .service-box__detail .number p span {
  font-size: 3.125rem;
}
.service .service-box__detail .txt {
  background: #FFFFFF;
  max-width: 550px;
  width: 100%;
  padding: 86px 13.6%;
}
.service .service-box__detail .txt .title {
  margin-bottom: 30px;
}
.service .service-box__detail .txt .title h3 {
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 30px;
  font-size: 1.875rem;
}
.service .service-box__detail .txt .title h3::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  border-radius: 3px;
  max-width: 280px;
  width: 70%;
  height: 6px;
}
.service .service-box__detail .txt .title h3 span {
  font-size: 1.25rem;
}
.service .service-box__detail .txt .title p {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.service .service-box__detail .txt .lead h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.service .service-box__slider {
  max-width: 1100px;
  border: 2px solid #040000;
  border-radius: 50px;
}
.service .service-box__slider .slick img {
  border-radius: 48px;
}
.service .service-box__slider .slick-dots li {
  margin: 0;
}

/* service-box 個別指定 */
.service .shuro {
  padding-left: 80px;
}
.service .shuro .service-box__detail {
  left: 0;
}
.service .shuro .service-box__detail .number {
  right: -75px;
  background: #009ED3;
}
.service .shuro .service-box__detail .txt {
  filter: drop-shadow(-20px 20px 0px rgb(0, 158, 221));
}
.service .shuro .service-box__detail .txt .title h3::after {
  background: #009ED3;
}
.service .shuro .service-box__slider .slick-dots {
  text-align: right;
  right: 50px;
}

.service .ziritsu {
  padding-right: 80px;
}
.service .ziritsu .service-box__detail {
  right: 0;
}
.service .ziritsu .service-box__detail .number {
  left: -75px;
  background: #44CBAF;
}
.service .ziritsu .service-box__detail .txt {
  filter: drop-shadow(20px 20px 0px rgb(68, 203, 175));
}
.service .ziritsu .service-box__detail .txt .title h3::after {
  background: #44CBAF;
}
.service .ziritsu .service-box__slider .slick-dots {
  text-align: left;
  left: 50px;
}

/* service-fee */
.service .service-fee {
  margin-top: 270px;
  padding: 50px;
}
.service .service-fee::before, .service .service-fee::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  background: #FFFFFF;
  width: calc(100% - 100px);
  height: 5px;
}
.service .service-fee::before {
  top: -3px;
}
.service .service-fee::after {
  bottom: -3px;
}
.service .service-fee h3 {
  font-size: 2.1875rem;
}
.service .service-fee__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 930px;
  width: 80%;
  margin: 60px auto 0;
}
.service .service-fee__wrap li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  max-width: 400px;
  width: 43%;
}
.service .service-fee__wrap li img {
  max-width: 137px;
}
.service .service-fee__wrap li h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

@media screen and (max-width: 1536px) {
  .service .service-box {
    margin-top: 240px;
  }
  .service .service-box__detail {
    bottom: -120px;
  }
  .service .service-box__detail .number {
    top: -65px;
  }
  .service .service-box__detail .txt {
    max-width: 450px;
    padding: 55px 12% 50px;
  }
  .service .service-box__detail .txt .title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1366px) {
  .service .service-box__detail .txt {
    padding: 55px 10% 50px;
  }
  .service .service-box__detail .txt .title {
    margin-bottom: 10px;
  }
  .service .service-box__detail .txt .title h3 {
    margin-bottom: 10px;
    padding-bottom: 25px;
  }
  .service .service-box__detail .txt .lead h4 {
    font-size: 1rem;
  }
  .service .service-box__detail .txt .lead p {
    letter-spacing: 0;
    line-height: 1.7rem;
  }
}
@media screen and (max-width: 1024px) {
  .service .service-box {
    margin-top: 200px;
  }
  .service .service-box__detail {
    position: relative;
    bottom: -40px;
  }
  .service .service-box__detail .txt {
    max-width: 100%;
    width: calc(100% - 20px);
    margin-left: 20px;
  }
  /* service-box 個別指定 */
  .service .shuro, .service .ziritsu {
    padding: 0;
  }
  .service .shuro .service-box__slider .slick-dots, .service .ziritsu .service-box__slider .slick-dots {
    text-align: center;
    left: 50px;
    transform: translateX(-50px);
  }
  .service .ziritsu .service-box__detail {
    right: auto;
    left: 0;
  }
  .service .ziritsu .service-box__detail .number {
    left: auto;
    right: -75px;
  }
  .service .ziritsu .service-box__detail .txt {
    filter: drop-shadow(-20px 20px 0px rgb(68, 203, 175));
  }
  /* service-fee */
  .service .service-fee {
    margin-top: 200px;
  }
}
@media screen and (max-width: 960px) {
  .service .service-box {
    margin-top: 150px;
  }
  .service .service-box__detail {
    bottom: -25px;
  }
  .service .service-box__detail .number {
    top: -55px;
    width: 110px;
    height: 110px;
  }
  .service .service-box__detail .number p {
    font-size: 1rem;
  }
  .service .service-box__detail .number p span {
    font-size: 2.5rem;
  }
  .service .service-box__detail .txt {
    padding: 50px 10%;
  }
  .service .service-box__detail .txt .title h3 {
    margin-bottom: 7px;
    padding-bottom: 15px;
    font-size: 1.5625rem;
  }
  .service .service-box__detail .txt .title h3 span {
    font-size: 1rem;
  }
  .service .service-box__detail .txt .title p {
    font-size: 1.125rem;
  }
  .service .service-box__detail .txt .lead h4 {
    font-size: 0.9375rem;
  }
  /* service-box 個別指定 */
  .service .shuro .service-box__detail .number, .service .ziritsu .service-box__detail .number {
    right: -55px;
  }
  /* service-fee */
  .service .service-fee {
    margin-top: 150px;
  }
  .service .service-fee h3 {
    font-size: 1.875rem;
  }
  .service .service-fee__wrap {
    width: 90%;
    margin: 50px auto 0;
  }
  .service .service-fee__wrap li {
    gap: 20px;
    width: 45%;
  }
  .service .service-fee__wrap li img {
    max-width: 100px;
  }
  .service .service-fee__wrap li h4 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  .service .service-box {
    margin-top: 100px;
  }
  .service .service-box__detail {
    bottom: -15px;
  }
  .service .service-box__detail .number {
    top: -35px;
    right: 0;
    width: 70px;
    height: 70px;
  }
  .service .service-box__detail .number p {
    font-size: 0.8125rem;
    line-height: 1.2rem;
  }
  .service .service-box__detail .number p span {
    font-size: 1.875rem;
  }
  .service .service-box__detail .txt {
    margin: 0 10px;
    padding: 40px;
  }
  .service .service-box__detail .txt .title h3 {
    margin-bottom: 10px;
    padding-bottom: 15px;
    font-size: 1.4375rem;
  }
  .service .service-box__detail .txt .title h3::after {
    border-radius: 2px;
    width: 90%;
    height: 4px;
  }
  .service .service-box__detail .txt .title h3 span {
    font-size: 0.875rem;
    line-height: 1.3rem;
  }
  .service .service-box__detail .txt .title p {
    font-size: 1rem;
  }
  .service .service-box__detail .txt .lead h4 {
    font-size: 0.875rem;
  }
  .service .service-box__slider {
    border-radius: 25px;
  }
  .service .service-box__slider .slick img {
    border-radius: 23px;
  }
  /* service-box 個別指定 */
  .service .shuro .service-box__detail .number {
    right: 0px;
  }
  .service .shuro .service-box__detail .txt {
    filter: drop-shadow(-10px 10px 0px rgb(0, 158, 221));
  }
  .service .ziritsu .service-box__detail .number {
    right: 0px;
  }
  .service .ziritsu .service-box__detail .txt {
    filter: drop-shadow(-10px 10px 0px rgb(68, 203, 175));
  }
  /* service-fee */
  .service .service-fee {
    margin-top: 100px;
    padding: 30px 40px;
  }
  .service .service-fee::before, .service .service-fee::after {
    width: calc(100% - 50px);
  }
  .service .service-fee h3 {
    font-size: 1.5625rem;
  }
  .service .service-fee__wrap {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
  .service .service-fee__wrap li {
    gap: 10px;
    width: 100%;
    margin: 0 auto;
  }
  .service .service-fee__wrap li img {
    max-width: 80px;
  }
  .service .service-fee__wrap li h4 {
    font-size: 1rem;
  }
}
@media screen and (max-width: 375px) {
  .service .service-box__detail .txt {
    padding: 40px 30px 30px;
  }
  /* service-fee */
  .service .service-fee {
    padding: 40px 20px;
  }
}
/* ------------------------------------- 
  howto
------------------------------------- */
.howto .howto-step {
  display: grid;
  justify-content: space-between;
  align-items: flex-start;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 70px;
  padding-top: 35px;
}
.howto .howto-step .border-box {
  position: relative;
  max-width: 350px;
  width: 100%;
  height: 100%;
}
.howto .howto-step .border-box::before {
  position: absolute;
  left: 50%;
  content: "";
  background: #FFFFFF;
  width: 105%;
  height: 15px;
}
.howto .howto-step .border-box:nth-child(1)::before, .howto .howto-step .border-box:nth-child(5)::before {
  top: 100px;
  transform: translateX(-50%);
}
.howto .howto-step .border-box:nth-child(2)::before, .howto .howto-step .border-box:nth-child(4)::before {
  top: 50%;
  transform: translate(-50%, -50%);
}
.howto .howto-step .border-box:nth-child(3)::before, .howto .howto-step .border-box:nth-child(6)::before {
  bottom: 60px;
  transform: translateX(-50%);
}
.howto .howto-step .border-box .number {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #9C8CC5;
  border: 2px solid #040000;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  font-family: "Poppins", sans-serif;
  font-size: 2.1875rem;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 1.7rem;
}
.howto .howto-step .border-box__wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  padding: 60px 50px 50px;
}
.howto .howto-step .border-box__wrap img {
  max-width: 90px;
  width: 36%;
}
.howto .howto-step .border-box__wrap p {
  letter-spacing: 0;
}
@media screen and (max-width: 1280px) {
  .howto .howto-step {
    gap: 50px 40px;
  }
  .howto .howto-step .border-box__wrap {
    padding: 50px 40px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .howto .howto-step {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .howto .howto-step {
    padding-top: 30px;
  }
  .howto .howto-step .border-box .number {
    top: -30px;
    width: 60px;
    height: 60px;
    font-size: 1.875rem;
  }
  .howto .howto-step .border-box__wrap {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .howto .howto-step {
    gap: 35px 10px;
    padding-top: 25px;
  }
  .howto .howto-step .border-box .number {
    top: -25px;
    width: 50px;
    height: 50px;
    font-size: 1.5625rem;
  }
  .howto .howto-step .border-box__wrap {
    gap: 10px;
    padding: 40px 30px 30px;
  }
}
@media screen and (max-width: 480px) {
  .howto .howto-step {
    gap: 30px 10px;
    padding-top: 20px;
  }
  .howto .howto-step .border-box .number {
    top: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  .howto .howto-step .border-box__wrap {
    padding: 30px 20px 20px;
  }
  .howto .howto-step .border-box__wrap img {
    width: 50%;
  }
}

/* ------------------------------------- 
  company
------------------------------------- */
.company__img {
  display: block;
  max-width: 550px;
  width: 70%;
  margin: 0 auto;
}
.company h3 {
  margin-top: 65px;
  font-size: 1.4375rem;
}
.company__txt {
  margin-top: 50px;
}
.company__txt p {
  line-height: 1.5rem;
  text-align: center;
}
.company__txt .add {
  font-weight: 700;
}
.company__txt .add span {
  font-size: 1.125rem;
}
.company__txt .gmap {
  font-size: 0.875rem;
  line-height: 1.2rem;
}
.company__txt .gmap a {
  text-decoration: underline;
  color: #F89A1E;
}
.company__txt .tel {
  margin-top: 20px;
}
.company__detail {
  max-width: 420px;
  width: 90%;
  margin: 50px auto 0;
}
.company__detail th {
  padding: 0px 50px 25px 0px;
  vertical-align: text-top;
  font-weight: 700;
}
.company__detail td {
  padding-bottom: 25px;
  line-height: 1.5rem;
}
.company__detail tr:last-child th, .company__detail tr:last-child td {
  padding-bottom: 0;
}
@media screen and (max-width: 960px) {
  .company h3 {
    font-size: 1.25rem;
  }
  .company__txt .add span {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .company h3 {
    margin-top: 40px;
  }
  .company__txt {
    margin-top: 30px;
  }
  .company__txt .tel {
    margin-top: 10px;
  }
  .company__detail {
    max-width: 350px;
    margin-top: 30px;
  }
  .company__detail th {
    padding-right: 20px;
    padding-bottom: 15px;
  }
  .company__detail td {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .company h3 {
    font-size: 1.125rem;
  }
  .company__txt .add span {
    font-size: 0.875rem;
  }
  .company__detail {
    max-width: 230px;
  }
  .company__detail th, .company__detail td {
    display: block;
    margin: 0 auto;
  }
  .company__detail th {
    padding: 0;
  }
  .company__detail td {
    padding: 0 0 15px 20px;
  }
}

/* ------------------------------------- 
  contact
------------------------------------- */
.contact {
  margin-bottom: 0;
}
.contact .wrap {
  border-radius: 200px 200px 0 0;
  max-width: 100%;
  width: 100%;
}
.contact .contents {
  width: 80%;
}
.contact__lead p {
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact__lead p:last-child {
  margin-bottom: 0;
}
.contact__lead a {
  color: #F89A1E;
}

@media screen and (max-width: 1024px) {
  .contact .wrap {
    border-radius: 100px 100px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .contact .wrap {
    border-radius: 50px 50px 0 0;
  }
}
@media screen and (max-width: 480px) {
  .contact__lead p {
    text-align: justify;
    letter-spacing: 0;
  }
}/*# sourceMappingURL=common_style.css.map */