
@charset "utf-8";

html { overflow: auto; }
body { overflow: hidden; }

html {
  overflow-y: scroll;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  line-height: 1.618;
  color: #1e2b38;
  margin: 0;
}

h1,h2,h3,p,ul,ol {
  margin: 0;
}

h1,h2,h3 {
  font-weight: bold;
  line-height: 1.41;
  font-feature-settings: "palt";
}

p:not(:last-child),ul,ol {
  margin-bottom: 1em;
}

@media(max-width: 599px) {
  p br {
    display: none;
  }
}

img {
  max-width: 100%;              /* 1 */
  height: auto;                 /* 1 */
  vertical-align: middle;       /* 2 */
  font-style: italic;           /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover;       /* 4 */
  shape-margin: 0.75rem;        /* 5 */
}

strong {
  font-weight: bold;
}

figure {
  border: 0;
  margin: 0;
}


/* リンク
======================================================================= */

a,
a:hover {
  color: #1a0dab;
  text-decoration: underline;
}

a:hover, 
a:focus {
  text-decoration: none;
}

a:active {
  color: #1a0dab;
  text-decoration: none;
}

a:hover > img {
  opacity: .9;
}

/* =======================================================================
  メディアクエリによる表示／非表示
======================================================================= */

.pc { display: block; }
.sp { display: none; }

@media(max-width: 599px) {
  .pc { display: none; }
  .sp { display: block; }
}

/* =======================================================================
  レイアウト
======================================================================= */

/* 幅 */

.l-width {
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  max-width: 800px;
}


/* 間隔 */

.l-margin {
  margin: 40px auto;
}

.l-padding {
  padding: 40px;
}

.l-padding > .l-margin:first-child {
  margin-top: 0;
}
.l-padding > .l-margin:last-child {
  margin-bottom: 0;
}


@media(max-width: 599px) {
  .l-width {
    padding: 0 20px;
  }

  .l-margin {
    margin: 20px auto;
  }
  .l-padding {
    padding: 20px;
  }
}

/* =======================================================================

  ヘッダー

======================================================================= */



.header {
  padding-top: 100px;
  padding-bottom: 100px;
  background: url("img/header__bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;

  background-position: center top;
}

.header__inner h1 {
  text-align: center;
}


@media(max-width: 599px) {

  .header {
    padding-top: 0;
    padding-bottom: 0;
  }

}



/* ハンバーガーメニュー
-------------------------------------------------- */

/* ボタン */

.header__button {
  position: fixed;
  top: 0;
  right: 0;

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  width: 80px;
  height: 80px;

  border: none;
  background-color: transparent;

  color: #000;
}

.header__button span {
  display: block;
  position: relative;
  top: 0;
  margin: 0 auto;
  width: 30px;
  height: 3px;
  background-color: #666;
  transition: .3s ease;
}
.header__button span::before,
.header__button span::after {
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  transition: all .3s;
  background-color: inherit;
}
.header__button span::before {
  top: -9px;
}
.header__button span::after {
  top: 9px;
}

  body.open .header__button {
    z-index: 2;
  }
  body.open .header__button span,
  body.top.open .header__button span {
    width: 30px;
    background-color: transparent;
  }
  body.open .header__button span::before,
  body.open .header__button span::after {
    top: 0;
    background-color: #fff;
  }
  body.open .header__button span::before {
    transform: rotate(45deg);
  }
  body.open .header__button span::after {
    transform: rotate(-45deg);
  }

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

/* ドロワーメニュー */

.header__nav {
  list-style: none;
  margin: 0;
  padding: 0;

  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(000, 000, 000, .7);

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;


  transition: .3s ease;

  transform: translateX(100%);
}
  body.open .header__nav {
    transform: translateX(0);
  }

.header__nav a {
  color: #fff;
  text-decoration: none;
}

.header__nav-item:nth-child(n+2) {
  margin-top: 2em;
}

@media screen and (min-width: 768px) {
  .header__nav {
    position: static;
    flex-direction: row;

    width: auto;
    height: auto;
    background-color: transparent;

    transform: none;
  }
  .header__nav a {
    color: #666;
  }
  .header__nav-item:nth-child(n+2) {
    margin-top: 0;
    margin-left: 2em;
  }
}

/* =======================================================================

  メイン

======================================================================= */

.main > *:first-child {
  margin-top: 0;
}
.main > *:last-child {
  margin-bottom: 0;
}

@media(max-width: 599px) {
  .main {
    padding-bottom: 20px;
  }
}

/* Safariで文字が太らないようにする */

_::-webkit-full-page-media, _:future, :root body {
  -webkit-font-smoothing: antialiased;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  ::i-block-chrome, body {
    -webkit-font-smoothing: antialiased;
  }
}


/* =======================================================================
  タイポグラフィー
======================================================================= */

.main p:not([class]) {
  font-size: 1.1em;
}

@media(max-width: 599px) {
  .main p:not([class]) {
    font-size: 1em;
  }
}


@media(max-width: 599px) {
  h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/* =======================================================================
  ご挨拶
======================================================================= */

.message {
  padding-top: 80px;
  padding-bottom: 60px;
}

.message__title {
  text-align: center;
  margin-bottom: 70px;
}

@media (max-width: 599px) {
  .message {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .message__title {
    text-align: center;
    margin-bottom: 30px;
  }

  .message h2 img {
    width: 30%;
  }
}

/* =======================================================================
  制作実績
======================================================================= */

.works {
  background-color: #f7f6f3;
  padding: 80px 0;
}

.works h2 {
  text-align: center;
  margin-bottom: 70px;
}

.works__item {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
  margin-bottom: 40px;
}

@media (max-width: 599px) {
  .works {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .works h2 {
    margin-bottom: 33px;
  }

  .works h2 img {
    width: 40%;
  }

  .works__item {
    margin-bottom: 20px;
  }
}

/* =======================================================================
  お客様の声
======================================================================= */

.voc {
  background: url(img/voc__bg.jpg) no-repeat center top;
  background-size: cover;
  padding: 80px 0 40px 0;
}

.voc h2 {
  text-align: center;
  margin-bottom: 70px;
}

.voc__item {
  background-color: #f7f6f3;
  border-radius: 10px;
  margin-bottom: 40px;
}

.voc__inner {
  display: flex;
  padding: 40px;
}

.voc__name {
  display: flex;
  flex-direction: column;
}

.voc__name p {
  font-size: 14px;
}

.voc__img {
  width: 180px;
  margin-bottom: 20px;
}

.voc__txt {
  padding-left: 20px;
}

.voc__txt h3 {
  margin-bottom: 20px;
}

@media (max-width: 599px) {
  .voc {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .voc h2 {
    margin-bottom: 33px;
  }

  .voc h2 img {
    width: 50%;
  }

  .voc__item {
    margin-bottom: 20px;
  }

  .voc__inner {
    display: block;
    padding: 20px;
  }

  .voc__name {
    text-align: center;
  }

  .voc__name p{
    font-size: 12px
  }

  .voc__img {
    width: 100%;
    margin-bottom: 10px;
  }

  .voc__img img {
    width: 100px;
  }

  .voc__txt {
    margin-top: 10px;
    border-top: 1px solid #cdc5ae;
    padding-top: 20px;
    padding-left: 0;
    font-size: 14px;
  }
}

/* =======================================================================
  料金
======================================================================= */

.price {
  background-color: #f0f6f9;
  padding: 80px 0;
}

.price h2 {
  text-align: center;
  margin-bottom: 70px;
}

.center {
  text-align: center;
  margin-bottom: 20px;
}

.price__content {
  display: flex;
  justify-content: space-between;
}

.price__item {
  width: 360px;
  text-align: center;
}

.price__txt {
  background: #0a5cac;
  padding: 40px 0;
  border-radius: 10px 10px 0 0;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .1);

}

.price__price {
  background: #fff;
  padding: 30px 0;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}

.plan {
  background: #fff;
  padding: 40px 40px 20px 40px;
  border-radius: 10px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
  margin: 40px 0;
}

.plan__h3 {
  text-align: center;
  color: #0b60b0;
  border: 2px solid #0b60b0;
  border-radius: 5px;
  padding: 15px;
  letter-spacing: 10px;

  font-size: 26px;
  margin-bottom: 20px;
}

ul.plan__list {
  padding: 10px 0 0 0;
  list-style-type: none;
}

ul.plan__list li {
  position: relative;
  padding-bottom: .4em;
  padding-left: 33px;
  font-weight: bold;
  line-height: 1.5;
  font-size: 20px;
}

ul.plan__list li::before {
  position: absolute;
  top: -0.2em;
  left: 0;
  color: #0b60b0;
  content: '\f058';
  font-family: FontAwesome;
  font-size: 1.3em;
}

ul.plan__list li p {
  text-indent: 33px
}

.plan__p {
  padding-left: 33px;
  margin-bottom: 1.5em;
}

.other__title {
  background: #3fb2ee;
  padding: 20px 0;
  border-radius: 10px 10px 0 0;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, .1);
  text-align: center;
  color: #fff;
  letter-spacing: 10px;
  font-size: 26px;
  font-weight: bold;
}

.other__content {
  background: #fff;
  padding: 20px 40px;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
}

.other__p-1 {
  font-size: 20px;
  font-weight: 600;
}

.other__p-2 {
  font-size: 16px;
  font-weight: 300;
}

.fa {
  color: #3fb2ee;
  margin-right: 10px;
}

@media (max-width: 599px) {
  .price {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .price h2 {
    margin-bottom: 33px;
  }

  .price h2 img {
    width: 20%;
  }


  .price__content {
    display: block;
  }

  .price__item {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .price__txt {
    padding: 20px 10px;
  }

  .price__price {
    padding: 20px 10px;
  }

  .plan {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .1);
    margin: 20px 0;
  }

  .plan__h3 {
    letter-spacing: 10px;
    margin-bottom: 10px;
    padding: 10px;
    font-size: 20px;
  }

  ul.plan__list li {
    padding-bottom: .2em;
    padding-left: 28px;
    font-weight: bold;
    line-height: 1.5;
    font-size: 15px;
  }

  .plan__p {
    padding-left: 28px;
    margin-bottom: 1.5em;
    font-size: 13px;
  }

  .other__title {
    padding: 10px 0;
    letter-spacing: 8px;
    font-size: 20px;
    font-weight: 600;
  }

  .other__content {
    padding: 20px;
  }

  .other__p-1 {
    font-size: 16px;
    font-weight: 600;
  }

  .other__p-2 {
    font-size: 13px;
    font-weight: 300;
  }

  .other__content p:last-child {
    font-size: 13px;
  }
}

/* =======================================================================
  制作の流れ
======================================================================= */

.flow {
  padding-top: 80px;
  padding-bottom: 80px;
}

.flow__title {
  text-align: center;
  margin-bottom: 70px;
}

.flow__content {
  padding: 40px 40px 0 40px;
  border: 2px solid #0b60b0;
  border-radius: 10px;
  margin-bottom: 20px;
}


.flow__ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 6em auto;
  grid-gap: 2em;
  align-items: center;
}

/* 線 */
.flow__line {
  width: 6em;
  height: 100%;
}

.flow__line__inner {
  margin: 0 auto;
  display: block;
  background-color: #f5f1eb;
  width: 5px;
  height: 100%;
  padding-bottom: 8em;
}

/* アイコン */
.flow__icon {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;

  width: 6em;
  height: 6em;
  background-color: #3fb2ee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow__icon img {
  width: 50px;
}



/* テキスト */
.flow__txt {
  padding-bottom: 3em;
}

.flow__number {
  margin-bottom: 15px;
}


.flow__txt p {
  line-height: 1.618;
}

.flow__txt .p {
  font-weight: normal;
}


ul.flow__list {
  padding: 10px 0 0 0;
  list-style-type: none;
}

ul.flow__list li {
  position: relative;
  padding-bottom: .4em;
  padding-left: 33px;
  font-weight: bold;
  line-height: 1.5;
  font-size: 20px;
}

ul.flow__list li::before {
  position: absolute;
  left: 0;
  color: #0b60b0;
  content: '\f111';
  font-family: FontAwesome;
  font-size: 1em;
}

ul.flow__list li p {
  text-indent: 33px
}

.flow__p {
  padding-left: 33px;
  margin-bottom: 1.5em;
}

@media(max-width: 599px) {
  .flow {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .flow__title {
    text-align: center;
    margin-bottom: 30px;
  }

  .flow h2 img {
    width: 50%;
  }

  .flow__content {
    padding: 20px 15px 0 10px;
    border: 2px solid #0b60b0;
    margin-bottom: 10px;
  }

  .flow__ol {
    padding: 0;
  }

  .flow__item {
    grid-template-columns: 1.6em auto;
    grid-gap: 2em;
    align-items: center;
  }

  .flow__line {
    width: 3em;
  }

  .flow__line__inner {
    padding-bottom: 6em;
  }

  .flow__icon {
    width: 3em;
    height: 3em;
  }

  .flow__icon img {
    width: 30px;
  }

  .flow__number {
    margin-bottom: 10px;
  }

  .flow__number figure {
    margin-right: 5px;
  }

  .flow__number img {
    width: 100%;
    margin-right: 0;
  }

  .flow__txt p {
    font-size: 13px;
  }

  .flow__txt-last {
    padding-bottom: 0;
  }

  .flow__txt-last .p {
    font-size: 13px;
  }

  ul.flow__list li {
    padding-bottom: .4em;
    padding-left: 28px;
    font-weight: bold;
    line-height: 1.5;
    font-size: 15px;
  }

  ul.flow__list li::before {
    position: absolute;
    left: 0;
    color: #0b60b0;
    content: '\f111';
    font-family: FontAwesome;
    font-size: 1em;
  }

  .flow__p {
    padding-left: 28px;
    margin-bottom: 1.5em;
    font-size: 13px;
  }

  .flow__txt {
    padding-bottom: 2em;
  }
}

/* =======================================================================
  お問い合わせ
======================================================================= */

.contact {
  background-color: #f7f6f3;
  padding: 80px 0;
  text-align: center;
}

.contact__title {
  margin-bottom: 70px;
}

.contact p {
  margin-bottom: 40px;
}

@media (max-width: 599px) {
  .contact {
    padding: 40px 0;
  }

  .contact__title {
    margin-bottom: 30px;
  }

  .contact h2 img {
    width: 60%;
  }

  .contact p {
    margin-bottom: 20px;
  }
}

/* =======================================================================
  CTA
======================================================================= */

.cta {
  text-align: center;
}

.cta__btn img {
  border-radius: 81.5px;
  box-shadow: 0px 14px 10px -10px rgba(0, 0, 0, 0.3);
}

/* =======================================================================
  自己紹介
======================================================================= */

.profile {
  padding-top: 80px;
  padding-bottom: 80px;
}

.profile__title {
  text-align: center;
  margin-bottom: 70px;
}

.profile__content {
  padding: 40px;
  background: #f0f6f9;
  border-radius: 10px;
}

.profile__img {
  text-align: center;
  margin-bottom: 40px;
}

.profile__txt {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 599px) {
  .profile h2 img {
    width: 40%;
  }

  .profile {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .profile__title {
    margin-bottom: 30px;
  }

  .profile__content {
    padding: 20px;
  }

  .profile__content p {
  font-size: 13px;
  }

  .profile__img {
    margin-bottom: 20px;
  }

  .profile__img img {
  width: 130px;
  }

  .profile__txt {
    margin-top: 20px;
  }
}

/* =======================================================================
  フッター
======================================================================= */

.footer {
  background-color: #0a5cac;
  text-align: center;
}

.footer__inner {
  padding: 20px;
}

.footer__inner p {
  color: #fff;
  font-size: 13px;
}

@media (max-width: 599px) {
  .footer__inner p {
    font-size: 10px;
  }
}

/* =======================================================================
  アクセント
======================================================================= */

.a-marker,
p.a-marker {
  text-decoration: underline;
  text-decoration-thickness: 0.5em;
  text-decoration-color: #f4e110;
  text-underline-offset: -0.3em;
  text-decoration-skip-ink: none;
}

.a-red,
p.a-red {
  color: #cc2200;
}


