/* -----------------------
リセット
----------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.04rem;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

.sp_br {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_br {
    display: block;
  }
}

/* -----------------------
ヘッダー
----------------------- */
body {
  background-color: #006D77;
}

header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.header__logo {
  padding: 20px;
}

.header__nav {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  padding: 20px;
}

.header__nav nav ul {
  margin: 0;
  padding-left: 30px;
  display: -webkit-flex;
  display: flex;
  gap: 0 50px;
  list-style: none;
}

.header__nav nav ul li a {
  height: 60px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #181818;
  font-weight: bold;
  font-size: 1.125rem;
}

.header__nav nav ul li a:hover {
  color: #181818;
}

@media screen and (max-width:768px) {
  header {
    -webkit-justify-content: center;
    justify-content: center;
  }

  .header__nav {
    display: none;
  }
}

@media screen and (max-width:1023px) and (min-width:769px) {
  .header__nav {
    display: none;
  }
}

@media screen and (max-width:1215px) and (min-width:1024px) {
  .header__nav nav ul {
    padding-left: 10px;
    gap: 0 30px;
  }

  .header__nav nav ul li a {
    font-size: 1rem;
  }
}

/* -----------------------
SUZURANについて
----------------------- */
#about {
  padding: 100px 0;
  color: #181818;
}

.about__title {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
}

.about__title h2 {
  display: inline-block;
  font-size: 4rem;
}

.about__text {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 50px;
}

.about__text p {
  display: inline-block;
  font-size: 1.625rem;
  font-weight: bold;
}

@media screen and (max-width:768px) {}

@media screen and (max-width:1023px) and (min-width:769px) {}

@media screen and (max-width:1215px) and (min-width:1024px) {}

/* -----------------------
サービス
----------------------- */
#service {
  padding: 150px 0;
  color: #181818;
  background-color: #83C5BE;
}

.service__title {
  margin: 0 auto;
  padding-bottom: 50px;
  text-align: center;
}

.service__title h2 {
  font-size: 4rem;
  margin-bottom: 100px;
}

ul.service-list {
  width: 80%;
  margin: 0 auto;
  list-style: none;
  counter-reset: number 0;
}

li.service-item {
  display: flex;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-bottom: 100px;
}

li.service-item:nth-child(even) {
  flex-direction: row;
}

h3.service-list__title:before {
  counter-increment: number 1;
  content: counter(number)". ";
}

.service-list__picture {
  margin: 0 50px;
}

h3.service-list__title {
  display: inline-block;
  font-size: 1.625rem;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(transparent 75%, #E29578 50%);
}

p.service-list__text {
  font-size: 1.25rem;
  line-height: 2;
}

@media screen and (max-width:768px) {
  ul.service-list {
    width: 90%;
    padding: 0;
  }

  li.service-item {
    flex-flow: column;
  }

  li.service-item:nth-child(even) {
    flex-flow: column;
  }

  p.service-list__text {
    margin-bottom: 50px;
  }

  .service-list__picture img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width:1023px) and (min-width:769px) {
  ul.service-list {
    width: 80%;
    padding: 0;
  }

  li.service-item {
    flex-flow: column;
  }

  li.service-item:nth-child(even) {
    flex-flow: column;
  }

  p.service-list__text {
    margin-bottom: 50px;
  }

  .service-list__picture img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width:1215px) and (min-width:1024px) {
  ul.service-list {
    width: 90%;
  }
}

/* -----------------------
制作の流れ
----------------------- */
#flow {
  padding: 150px 0;
  color: #181818;
  background-color: #EDF6F9;
}

.flow__title {
  margin: 0 auto;
  padding-bottom: 50px;
  text-align: center;
}

.flow__title h2 {
  font-size: 4rem;
  margin-bottom: 100px;
}

.flow {
  padding-left: 180px;
  position: relative;
  list-style: none;
  width: 60%;
  margin: 0 auto;
}

.flow::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #FFDDD2;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 180px;
}

.flow>li {
  position: relative;
}

.flow>li:not(:last-child) {
  margin-bottom: 10vh;
}

.flow>li .icon {
  font-size: 1.75rem;
  color: #fff;
  background: rgb(0, 109, 119);
  padding: 8px 20px;
  display: block;
  position: absolute;
  top: 0;
  left: -180px;
  z-index: 100;
}

.flow>li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #006D77;
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flow>li dl {
  padding-left: 70px;
  position: relative;
}

.flow>li dl::before,
.flow>li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 30px;
}

.flow>li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #006D77;
  border-radius: 50%;
  left: -4px;
}

.flow>li dl::after {
  width: 50px;
  border-bottom: 1px dashed #E29578;
  position: absolute;
  left: 5px;
}

.flow>li dl dt {
  font-size: 2.25rem;
  font-weight: bold;
  color: rgb(0, 109, 119);
  margin-bottom: 1vh;
}

.flow>li dd {
  font-size: 1.25rem;
  line-height: 2;
}


@media screen and (max-width:768px) {
  .flow {
    padding-left: 0;
    width: 90%;
  }

  .flow::before {
    display: none;
  }

  .flow>li .icon {
    font-size: 1rem;
    padding: 8px 20px;
    top: -40px;
    left: 0;
  }

  .flow>li dl {
    padding-left: 0;
  }

  .flow>li dl::before,
  .flow>li dl::after {
    display: none;
  }

  .flow>li dl::before {
    margin-top: -3px;
    left: -4px;
  }

  .flow>li dl::after {
    left: 5px;
  }

  .flow>li dl dt {
    font-size: 2.25rem;
  }

  .flow>li dd {
    font-size: 1.25rem;
    line-height: 2;
  }
}

@media screen and (max-width:1023px) and (min-width:769px) {
  .flow {
    padding-left: 180px;
    width: 75%;
  }
}

@media screen and (max-width:1215px) and (min-width:1024px) {
  .flow {
    padding-left: 180px;
    width: 70%;
  }
}

/* -----------------------
問い合わせ
----------------------- */
#contact {
  padding: 150px 0;
  color: #181818;
  background-color: #83C5BE;
}

.contact__title {
  margin: 0 auto;
  padding-bottom: 50px;
  text-align: center;
}

.contact__title h2 {
  font-size: 4rem;
  margin-bottom: 100px;
}

.contact-list {
  width: 50%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.25rem;
}

.contact-item {
  margin: 50px 0;
}

.contact-item a {
  display: block;
  width: 100%;
  position: relative;
  padding: 1.5rem 2rem 1.5rem 2rem;
  border-radius: 100vh;
  text-decoration: none;
  color: #181818;
  font-weight: bold;
  font-size: 2rem;
}

.contact-item a.contact-button__mail {
  background-color: #ff6e3a;
}

.contact-item a.contact-button__mail:hover {
  background-color: #fd6026;
}

.contact-item a.contact-button__mail:hover .contact-button__icon {
  animation: hurueru 3s infinite;
  /* rotate: 15deg; */
}

.contact-item a.contact-button__line {
  border: #06c755 solid 5px;
  background-color: #EDF6F9;
}

.contact-item a.contact-button__line:hover {
  background-color: #ffffff;
}

.contact-button__icon {
  margin-bottom: 1.5rem;
}

@keyframes hurueru {
  0% {
    rotate: 0deg;
  }

  25% {
    rotate: 15deg;
  }

  50% {
    rotate: 0deg;
  }

  75% {
    rotate: -15deg;
  }

  100% {
    rotate: 0deg;
  }
}

@media screen and (max-width:768px) {
  .contact-list {
    width: 90%;
  }

  .contact-item a {
    font-size: 1.25rem;
  }
}

@media screen and (max-width:1023px) and (min-width:769px) {
  .contact-list {
    width: 70%;
  }
}

@media screen and (max-width:1215px) and (min-width:1024px) {
  .contact-list {
    width: 60%;
  }
}

/* -----------------------
footer
----------------------- */
footer {
  padding: 2rem;
  font-size: 15px;
}

footer a {
  margin-top: 1rem;
  color: #181818;
}

footer a:hover {
  color: #181818;
}

footer .flex {
  display: flex;
}

footer hr {
  height: 1px;
  border: 0;
  border-bottom: 1px rgba(0, 0, 0, 0.5) solid;
}

.footer_logo {
  display: inline-block;
  margin-bottom: 1rem;
}

@media screen and (max-width:768px) {
  footer {
    padding: 1rem;
  }
}

@media screen and (max-width:1023px) and (min-width:769px) {
  footer {
    padding: 1.5rem;
  }
}

@media screen and (max-width:1215px) and (min-width:1024px) {
  footer {
    padding: 1.75rem;
  }
}
