@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&family=Zen+Antique&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Zen+Old+Mincho&display=swap");
/* media query */
/* common */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  height: 100%;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a:active,
a:hover {
  outline: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

/* common */
html {
  height: 100%;
  font-size: 100%;
  background: #ffffff;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
}

body {
  min-height: 100vh;
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Zen Maru Gothic", "Noto Sans", "Noto Sans CJK JP", "Montserrat", "Helvetica Neue", YuGothic, "Yu Gothic Medium", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #553E2D;
  background: #ffffff;
  font-weight: 400;
}

.site__container {
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 1px 15px 27px -9px rgba(0, 0, 0, 0.3);
  width: 100%;
}
.header__box {
  width: 1366px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .header__box {
    width: 100%;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .header__box {
    width: 100%;
    justify-content: space-between;
  }
}
.header__h1 {
  margin: 0 0 0 3.125rem;
  width: 50px;
}
.header__h1 img {
  width: 50px;
}
@media screen and (max-width: 768px) {
  .header__h1 {
    margin: 0 0 0 1.5rem;
  }
}
.header__wrapper {
  margin-left: 12.5rem;
}

.global__hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 20px;
  top: 10px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  text-align: center;
  background-color: #E8551B;
  border-radius: 50%;
}

.global__hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  right: 10px;
  background: #fff;
  transition: 0.3s ease-in-out;
}

.global__hamburger span:nth-child(1) {
  width: 10px;
  top: 15px;
}

.global__hamburger span:nth-child(2) {
  width: 20px;
  top: 22px;
}

.global__hamburger span:nth-child(3) {
  width: 30px;
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.global__hamburger.active {
  background-color: #fff;
}

.global__hamburger.active span:nth-child(1) {
  top: 22px;
  right: 10px;
  background: #E8551B;
}

.global__hamburger.active span:nth-child(2),
.global__hamburger.active span:nth-child(3) {
  top: 22px;
  right: 10px;
  background: #E8551B;
}

.global__menu-sp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 50%;
  color: #000;
  background: rgba(192, 74, 24, 0.9);
  text-align: center;
  width: 50%;
  height: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
}

.global__menu-sp ul {
  margin: 0 auto;
  padding: 4rem 0 0;
  width: 100%;
}

.global__menu-sp ul li {
  list-style-type: none;
  padding: 1rem 0 0;
  width: 90%;
  margin: 0 auto;
  transition: 0.4s all;
}

.global__menu-sp ul li:last-child {
  padding-bottom: 0;
}

.global__menu-sp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
}

.global__menu-sp.active {
  opacity: 100;
  display: block;
  transform: translateX(0%);
}

.global__menu-list {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.global__menu-item {
  margin: 0 4rem 0 0;
}
.global__menu-link {
  font-size: 1rem;
  display: block;
  color: #553E2D;
  text-decoration: none;
}
.global__menu-link-contact {
  background-color: #012F7B;
  text-decoration: none;
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: 5rem;
  box-shadow: 0 3px 0 0 #001f42;
  transition: 300ms;
  overflow: hidden;
  display: block;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .global__menu-link-contact {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .global__menu-link-contact {
    width: 90%;
    margin: 0 auto;
  }
}
.global__menu-link-contact:before {
  content: "";
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #a6c7f6;
  animation: shiney 3s ease-in-out infinite;
}
.global__menu-link-contact:hover {
  box-shadow: none;
  -webkit-transform: translateY(3px);
}

@keyframes shiney {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  70% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.global__menu-item--main a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4rem;
}

.global__menu-item--main a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #F06C07;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .global__menu-item--main a::after {
    background: #fff;
    height: 1px;
  }
}
@media screen and (max-width: 768px) {
  .global__menu-item--main a::after {
    background: #fff;
    height: 1px;
  }
}

.global__menu-item--main a:hover::after {
  transform: scale(1, 1);
}

.footer {
  position: relative;
  padding: 20px 0;
  z-index: 4;
}
.footer__copyright {
  padding: 0 0.5rem;
  color: #C9C9C9;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding: 0 0.5rem;
    font-size: 0.75rem;
  }
}

.main {
  background-color: #fff;
  width: 100%;
  margin: 0 auto;
}

.mv {
  background-color: #E8551B;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv img {
  width: 1920px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mv img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .mv img {
    width: 100%;
  }
}

h2 {
  display: flex;
  align-items: center;
  justify-content: center;
}
h2 img.h2__quality {
  width: 250px;
  padding: 0 0 3rem 0;
}
@media screen and (max-width: 768px) {
  h2 img.h2__quality {
    width: 220px;
    padding: 0.5rem 0 3rem 0;
  }
}
h2 img.h2__sample {
  width: 118px;
  padding: 0 0 3rem 0;
}
@media screen and (max-width: 768px) {
  h2 img.h2__sample {
    width: 100px;
    padding: 0.5rem 0 3rem 0;
  }
}
h2 img.h2__plan {
  width: 165px;
  padding: 0 0 3rem 0;
}
@media screen and (max-width: 768px) {
  h2 img.h2__plan {
    width: 160px;
    padding: 0.5rem 0 3rem 0;
  }
}
h2 img.h2__flow {
  width: 185px;
  padding: 0 0 3rem 0;
}
@media screen and (max-width: 768px) {
  h2 img.h2__flow {
    width: 165px;
    padding: 0.5rem 0 3rem 0;
  }
}
h2 img.h2__question {
  width: 250px;
  padding: 0 0 3rem 0;
}
@media screen and (max-width: 768px) {
  h2 img.h2__question {
    width: 220px;
    padding: 0.5rem 0 3rem 0;
  }
}

.quality {
  background-color: #F5F5F5;
}
.quality__box {
  margin: 0 auto;
  width: 1366px;
  padding: 3.125rem 3.125rem 4rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .quality__box {
    width: 100%;
    padding: 3.125rem 3.125rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .quality__box {
    width: 100%;
    padding: 3rem 1rem 2rem;
  }
}
.quality__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 4rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .quality__flex {
    align-items: baseline;
    margin: 0 2rem;
  }
}
@media screen and (max-width: 768px) {
  .quality__flex {
    display: block;
    margin: 0;
  }
}
.quality__item {
  width: 271px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .quality__item {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .quality__item {
    display: block;
    width: 90%;
    margin: 0rem auto 2rem;
    padding: 0 0 1rem 0;
  }
}
.quality__item--img {
  background-color: #fff;
  border-radius: 50%;
  border: 1px #707070 solid;
}
@media screen and (max-width: 768px) {
  .quality__item--img {
    width: 60%;
    margin: 0 auto;
  }
}
.quality__item--img img {
  border-radius: 50%;
}
.quality__item--title {
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  line-height: 1.4;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .quality__item--title {
    font-size: 1.5rem;
    height: 120px;
  }
}
@media screen and (max-width: 768px) {
  .quality__item--title {
    font-size: 1.25rem;
    height: auto;
    padding: 1.5rem 0;
  }
}
.quality__item--txt {
  background-color: #fff;
  border: 1px #707070 solid;
  padding: 1rem 2rem 2rem 2rem;
  border-radius: 2rem;
  flex-grow: 1;
}
.quality__item--txt a {
  text-decoration: underline;
  color: #ee903f;
}
@media screen and (max-width: 768px) {
  .quality__item--txt {
    font-size: 1rem;
    padding: 1rem 2rem 1rem 2rem;
  }
}

.sample {
  background-color: #fff;
}
.sample__box {
  margin: 0 auto;
  width: 1280px;
  padding: 3.125rem 8rem 4rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sample__box {
    width: 100%;
    padding: 3.125rem 2rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .sample__box {
    width: 100%;
    padding: 3rem 1rem 2rem;
  }
}
.sample__lead {
  font-weight: 500;
  font-size: 1.125rem;
}
.sample__lead a {
  text-decoration: underline;
  color: #ee903f;
}
@media screen and (max-width: 768px) {
  .sample__lead {
    font-size: 1rem;
  }
}
.sample__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sample__item {
  width: calc(50% - 2rem);
  margin: 2rem 0 0;
  box-sizing: border-box;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sample__item {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 768px) {
  .sample__item {
    width: 100%;
    margin: 1em auto;
  }
}
.sample__item:hover {
  opacity: 0.7;
}

.plan {
  background-color: #F5F5F5;
}
.plan__box {
  margin: 0 auto;
  width: 1280px;
  padding: 3.125rem 8rem 4rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .plan__box {
    width: 100%;
    padding: 3.125rem 2rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__box {
    width: 100%;
    padding: 3rem 1rem 3rem;
  }
}
.plan__costbox {
  display: flex;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .plan__costbox {
    font-size: 0.825rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__costbox {
    font-size: 0.825rem;
    height: 120px;
  }
}
.plan__itembox {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .plan__itembox {
    height: 100%;
    flex-direction: column;
  }
}
.plan__cost {
  background-color: #F7DA9B;
  width: 24.5%;
  margin: 0 0.5rem 0 0;
  height: 3.75rem;
  padding: 1rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plan__cost {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.plan__itembox {
  background-color: #EFEFEF;
  display: flex;
  justify-content: space-between;
  width: 75%;
  padding: 1rem;
  text-align: center;
}
.plan__listbox {
  margin: 5rem 0 0;
}
@media screen and (max-width: 768px) {
  .plan__listbox {
    margin: 5rem 0 0;
  }
}
.plan__list--itembox {
  display: flex;
  align-items: flex-end;
  width: 100%;
  justify-content: space-between;
}
.plan__list--itembox__item--top {
  width: calc(25% - 0.5rem);
  text-align: center;
  margin: 0.275rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .plan__list--itembox__item--top {
    width: calc(25% - 0.25rem);
  }
}
.plan__list--itembox__item--light {
  background-color: #F0CB07;
  padding: 1.25rem 0;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  -webkit-text-stroke: 0.5px #9B9595;
  text-stroke: 0.5px #9B9595;
}
@media screen and (max-width: 768px) {
  .plan__list--itembox__item--light {
    font-size: 1rem;
  }
}
.plan__list--itembox p.no1 {
  position: absolute;
  top: -0.75rem;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .plan__list--itembox p.no1 {
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    margin: auto;
  }
}
.plan__list--itembox__item--standard {
  background-color: #F04307;
  padding: 3rem 0 1.5rem;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 500;
  -webkit-text-stroke: 0.5px #9B9595;
  text-stroke: 0.5px #9B9595;
}
@media screen and (max-width: 768px) {
  .plan__list--itembox__item--standard {
    padding: 2rem 0 1.5rem;
    font-size: 1rem;
  }
}
.plan__list--itembox__item--premium {
  background-color: #F06C07;
  padding: 1.125rem 0;
  font-size: 1.125rem;
  color: #fff;
  font-weight: 500;
  -webkit-text-stroke: 0.5px #9B9595;
  text-stroke: 0.5px #9B9595;
}
@media screen and (max-width: 768px) {
  .plan__list--itembox__item--premium {
    font-size: 1rem;
  }
}
.plan__list--itembox__item {
  width: calc(25% - 0.5rem);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.75rem;
  margin: 0.275rem 0;
}
@media screen and (max-width: 768px) {
  .plan__list--itembox__item {
    width: calc(25% - 0.25rem);
    margin: 0.125rem 0;
  }
}
.plan__list--itembox__item2 {
  width: calc(25% - 0.5rem);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 12rem;
  margin: 0.275rem 0;
}
@media screen and (max-width: 768px) {
  .plan__list--itembox__item2 {
    width: calc(25% - 0.25rem);
  }
}
.plan__list--itembox__item-o {
  background-color: #F7DA9B;
  width: calc(25% - 0.5rem);
  text-align: center;
  padding: 1rem 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .plan__list--itembox__item-o {
    font-size: 0.825rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__list--itembox__item-o {
    font-size: 0.825rem;
    padding: 0.25rem;
    width: calc(25% - 0.25rem);
  }
}
.plan__list--itembox__item-g {
  background-color: #EFEFEF;
  width: calc(25% - 0.5rem);
  text-align: center;
  padding: 1rem 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .plan__list--itembox__item-g {
    font-size: 0.825rem;
  }
}
@media screen and (max-width: 768px) {
  .plan__list--itembox__item-g {
    font-size: 0.825rem;
    padding: 0.25rem;
    width: calc(25% - 0.25rem);
  }
}

.flow {
  background-color: #fff;
}
.flow__box {
  margin: 0 auto;
  width: 1280px;
  padding: 3.125rem 8rem 4rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .flow__box {
    width: 100%;
    padding: 3.125rem 2rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .flow__box {
    width: 100%;
    padding: 3rem 1rem 3rem;
  }
}
.flow__lead {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .flow__lead {
    font-size: 1rem;
  }
}
.flow__item {
  border: 1px solid #707070;
  border-radius: 50px;
  display: flex;
  align-items: center;
  margin: 3rem 0 0;
  padding: 1rem 5rem 1rem 3rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow__item {
    border-radius: 30px;
    padding: 1.5rem 2rem 1.5rem 1rem;
  }
}
.flow__item--img {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .flow__item--img {
    width: 30%;
  }
}
.flow__item--img img {
  width: 200px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .flow__item--img img {
    width: 100%;
    height: 100%;
  }
}
.flow__item--txtbox {
  width: 700px;
}
@media screen and (max-width: 768px) {
  .flow__item--txtbox {
    width: 70%;
  }
}
.flow__item--leadtxt {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .flow__item--leadtxt {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }
}
.flow__item--txt {
  font-size: 1.125rem;
}
.flow__item--txt a {
  text-decoration: underline;
  color: #ee903f;
}
@media screen and (max-width: 768px) {
  .flow__item--txt {
    font-size: 1rem;
  }
}
.flow__number {
  position: absolute;
  top: -1.5rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  background-color: #E8E4E4;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question {
  background-color: #F5F5F5;
}
.question__box {
  margin: 0 auto;
  width: 1280px;
  padding: 3.125rem 8rem 4rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .question__box {
    width: 100%;
    padding: 3.125rem 2rem 4rem;
  }
}
@media screen and (max-width: 768px) {
  .question__box {
    width: 100%;
    padding: 3rem 1rem 2rem;
  }
}
.question__inner {
  width: 1020px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .question__inner {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .question__inner {
    width: 100%;
  }
}
.question__qa_box {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.question__qa_q {
  border: 1px solid #F99A00;
  background-color: #fff;
  padding: 20px 25px;
  position: relative;
  cursor: pointer;
}
.question__flex {
  display: flex;
  align-items: center;
}
.question__q_illust {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .question__q_illust {
    width: 50px;
  }
}
.question__a_illust {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .question__a_illust {
    width: 50px;
  }
}
.question__toggle_icon {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -15px;
}
.question__toggle_icon:before {
  position: absolute;
  top: 50%;
  width: 24px;
  right: 0;
  height: 3px;
  content: "";
  background-color: #F99A00;
  transition: 0.2s;
  transform: rotate(-90deg);
}
.question__toggle_icon:after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 3px;
  content: "";
  background-color: #F99A00;
  transition: 0.3s;
}
.question__qa_q.open .question__toggle_icon:before {
  transform: rotate(0deg);
}
.question__qa_a {
  display: none;
  padding: 25px 30px;
  border-left: 1px solid #F99A00;
  border-right: 1px solid #F99A00;
  border-bottom: 1px solid #F99A00;
  box-sizing: border-box;
  background: #fff;
}
.question__q_txt {
  display: block;
  font-size: 1.125rem;
  text-align: center;
  width: 700px;
  margin: 0 0 0 60px;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .question__q_txt {
    width: 80%;
    margin: 0 0 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .question__q_txt {
    font-size: 1rem;
    width: 65%;
    margin: 0 0 0 10px;
  }
}
.question__a_txt {
  display: block;
  font-size: 1.125rem;
  text-align: center;
  width: 700px;
  margin: 0 0 0 60px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .question__a_txt {
    width: 80%;
    margin: 0 0 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .question__a_txt {
    font-size: 1rem;
    width: 70%;
    margin: 0 0 0 20px;
  }
}

.quality__item:nth-child(1) {
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .quality__item:nth-child(1) {
    transition-delay: 0s;
  }
}

.quality__item:nth-child(2) {
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .quality__item:nth-child(2) {
    transition-delay: 0s;
  }
}

.quality__item:nth-child(3) {
  transition-delay: 1s;
}
@media screen and (max-width: 768px) {
  .quality__item:nth-child(3) {
    transition-delay: 0s;
  }
}

.flow__item {
  transition-delay: 0.5s;
}

/* スクロールすると下からふわっとさせるためのコード */
.inview {
  /* 30px下げる */
  transform: translateY(60px);
  /* 要素を透明にする */
  opacity: 0;
  /* 2秒かけて、変化させる */
  transition: transform 1s, opacity 1s;
}

.inview.show {
  transform: translateY(0);
  opacity: 1;
}

.contact_btn__flex {
  width: 1000px;
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contact_btn__flex {
    margin: 1rem auto 2rem;
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .contact_btn__flex {
    margin: 1rem auto 2rem;
    width: 100%;
    justify-content: center;
  }
}
.contact_btn__item {
  background: #012F7B;
  border-radius: 50px;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  box-shadow: 0 3px 0 0 #001f42;
  transition: 300ms;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .contact_btn__item {
    width: 100%;
    border-radius: 50px;
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}
.contact_btn__item--span {
  display: inline-block;
  background-color: #fff;
  padding: 0.175rem 20px;
  margin-right: 1rem;
  color: #012F7B;
  border-radius: 2rem;
}
.contact_btn__item:before {
  content: "";
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #a6c7f6;
  animation: shiney 3s ease-in-out infinite;
}
.contact_btn__item:hover {
  box-shadow: none;
  -webkit-transform: translateY(3px);
}
.contact_btn__charabox img {
  width: 190px;
  margin-right: 150px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contact_btn__charabox {
    width: 150px;
    margin-right: 1px;
  }
}
@media screen and (max-width: 768px) {
  .contact_btn__charabox {
    width: 80px;
    margin-right: 1px;
  }
}

/*---------------------------------*/
.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.hidden {
  display: none !important;
}

@media screen and (min-width: 1024px) {
  .sp {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media screen and (min-aspect-ratio: 16/9) and (orientation: landscape) and (max-width: 1024px) {
  .pc {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */