@charset "UTF-8";
body {
  background-color: #ECF0F1;
  color: #707070;
}
body a {
  color: #707070;
}
body p {
  color: #707070;
}

.thanks_page {
  background-color: #fff;
}

#contact .contact-form {
  background-color: #fff;
}
#contact .must {
  color: tomato;
}
#contact .input, #contact .textarea {
  background-color: #ECF0F1;
  color: #707070;
}

body {
  font-family: yu Gothic Pr6N;
}

.about-sub-title {
  font-family: Mina;
}

.section-title {
  font-family: AB ToriB;
}

.section-title-message {
  font-family: AB ToriB;
}
.attentionForm {
  font-size: 16px;
}

.label {
  font-size: 17px;
}

.must {
  font-size: 17px;
}

.input, .textarea {
  font-size: 17px;
}
#thanks .thanks_page {
  border-radius: 50% 50% 10% 10%;
}
#thanks .thanks-img {
  border-radius: 300% 300% 20% 20%;
}

#contact .contact-form {
  border-radius: 30px;
}
#contact .input, #contact textarea {
  border-radius: 20px;
}
.subtitle-p {
  line-height: 2;
}
.submit-btn {
  display: block;
  text-align: center;
  margin: auto;
  width: 300px;
  height: 70px;
  border-radius: 20px;
  border: none;
  color: #fff;
  background-color: #999;
  cursor: pointer;
  font-size: 15px;
}
.submit-btn:hover {
  background-color: #999;
  color: #333;
  opacity: 0.7;
}

.more-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px 30px 30px 5px;
  background: #AED4E9;
  font-family: "Montserrat", sans-serif;
  -webkit-box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border: none;
}
.more-button:after {
  content: " ";
  width: 0%;
  height: 100%;
  background: #ECF0F1;
  position: absolute;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  right: 0;
}
.more-button:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}
.more-button span {
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 18px 25px;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  letter-spacing: 0.3em;
  z-index: 20;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.more-button:hover span {
  color: #707070;
  -webkit-animation: scaleUp 0.3s ease-in-out;
          animation: scaleUp 0.3s ease-in-out;
}
@-webkit-keyframes scaleUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.section-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.service-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.illust {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.box-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.box-dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.release, .required, .request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

html {
  font-size: 100%;
}

body {
  font-size: 16px;
  margin: auto;
}

a {
  text-decoration: none;
}

p {
  line-height: 2;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

.section-title {
  font-size: 60px;
  margin-bottom: 20px;
  margin-top: 80px;
}

.subtitle-p {
  margin-top: 30px;
  margin-bottom: 60px;
}

/* サイドバーの横幅分空ける */

/* コンテンツ幅を設定するための共通クラス */
.wrapper {
  max-width: 900px;
  padding: 40px 20px;
  margin: auto;
}

/* アウトライン表示 */
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
/* dt {
  font-weight: bold;
} */
dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
/* button,
input, */
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

button,
input {
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

/*現在地表示のテキストの設定*/
/*768px以下は現在地表示のテキストを非表示*/
/*==================================================
                スライダーのためのcss
==================================================*/
/*==================================================
スライダーのためのcss
===================================*/
/* PC時にはSP用メニューを隠す */
.main-visual-img {
  min-height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-title-message {
  font-size: 60px;
  margin-bottom: 20px;
  margin-top: 80px;
}

.subtitle-message {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
}
.service-content-title {
  width: 140px;
  position: relative;
  left: 90px;
  top: 80px;
}

.service-p {
  width: 180px;
  position: relative;
  bottom: 110px;
  left: 58px;
}

.workflow-main {
  margin-bottom: 60px;
}
#about .about-content {
  padding-top: 20px;
  margin-bottom: 60px;
}
#about .about-img {
  width: 200px;
  position: relative;
  left: 70px;
  bottom: 30px;
}
#about .about-sub-title {
  font-weight: bold;
  margin-bottom: 30px;
}
#about .about-p {
  margin-bottom: 30px;
}
#about .illust {
  margin-top: 50px;
}
#about .illust-img {
  width: 32px;
}
#about .illust-p {
  margin-left: 10px;
  margin-top: 10px;
}

.end-message {
  display: none;
}

.false-message {
  display: none;
}

form {
  padding-bottom: 50px;
}

.contact-title {
  text-align: center;
  padding-top: 100px;
}

.contact-form {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: auto;
  max-width: 900px;
  padding: 70px 60px;
}

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

.box-dl {
  margin: 60px 0;
  padding-top: 60px;
}

.label {
  width: 30%;
  text-align: center;
}

.must {
  vertical-align: top;
  margin-left: 5px;
}

.box-dd {
  width: 400px;
}

.input {
  width: 400px;
  height: 60px;
  border: none;
  text-align: center;
}

.textarea {
  width: 400px;
  height: 100px;
  padding-top: 30px;
  border: none;
  text-align: center;
  margin-bottom: 100px;
}

.check, .radio {
  display: inline-block;
  margin-bottom: 20px;
  width: 20px;
}

.check-p, .radio-p {
  display: inline-block;
  margin-bottom: 20px;
  margin-left: 20px;
}

.release, .required, .request {
  width: 600px;
}
.footer-box {
  width: 100%;
  height: 100px;
  background-color: #ECF0F1;
}
@media only screen and (max-width: 768px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    display: inline-block;
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #ECF0F1;
    text-align: center;
    /*動き*/
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    width: 100%;
    height: 100%;
    padding: 40px 50px 40px 50px;
    position: fixed;
    top: 0;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }
  .s_nav-ul {
    width: 90%;
    margin: auto;
    margin-bottom: 30px;
  }
  #g-nav .s_nav-p {
    color: #707070;
  }
  #g-nav .s_nav-ul {
    background-color: #fff;
  }
  body {
    font-size: 13px;
  }
  .s_nav-sns-p {
    font-size: 10px;
    letter-spacing: 3px;
  }
  .subtitle {
    font-size: 16px;
  }
  .subtitle-service-p {
    letter-spacing: 3px;
  }
  .about-sub-title {
    font-size: 15px;
  }
  .attentionForm {
    font-size: 15px;
    letter-spacing: 4.5px;
  }
  .label {
    font-size: 13px;
  }
  .must {
    font-size: 17px;
  }
  .input, .textarea {
    font-size: 13px;
  }
  #g-nav .s_nav-ul {
    border-radius: 20%;
  }
  .subtitle-service-p {
    line-height: 1.5;
  }
  .service-p {
    line-height: 1.5;
  }
  .openbtn {
    display: inline-block;
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #707070;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn .active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    -webkit-transform: translateY(6px) rotate(-45deg);
            transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn .active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn .active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    -webkit-transform: translateY(-6px) rotate(45deg);
            transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .submit-btn {
    width: 200px;
    height: 60px;
  }
  .s_nav-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .s_nav-sns-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .section-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .section-title {
    font-size: 40px;
    margin: 20px 0;
    text-align: center;
  }
  .section-title-message {
    font-size: 40px;
    margin: 20px 0;
    text-align: center;
  }
  /* コンテンツ幅を設定するための共通クラス */
  .wrapper {
    max-width: 300px;
    padding: 30px;
    margin: auto;
  }
  .scrollify {
    display: none;
  }
  .header {
    display: none;
  }
  #g-nav.panelactive {
    width: 100%;
  }
  .s_nav-ul {
    width: 94%;
    padding: 30px;
  }
  .s_nav-li {
    display: inline-block;
    font-size: 10px;
    width: 50%;
    margin-bottom: 30px;
  }
  .s_nav-li:nth-of-type(1) {
    margin-top: 10px;
  }
  .s_nav-li:nth-of-type(2) {
    margin-top: 10px;
  }
  .s_nav-img {
    width: 26px;
    position: relative;
    top: 10px;
    left: 7px;
  }
  .s_nav-p {
    letter-spacing: 0.1em;
    position: relative;
    top: 8px;
    left: 7px;
  }
  .s_logo {
    display: block;
    margin-left: 10px;
    width: 200px;
    margin-bottom: 10px;
    position: relative;
    left: 30px;
    top: 10px;
  }
  .s_nav-sns-p {
    margin-bottom: 13px;
  }
  .s_nav-sns-ul {
    width: 250px;
  }
  .s_nav-sns-li {
    margin-left: 40px;
  }
  .s_nav-sns-img {
    width: 26px;
  }
  .main-visual-img {
    min-height: 0;
    height: 300px;
    border-radius: 20% 20% 300% 300%;
  }
  .subtitle-message {
    margin-bottom: 30px;
  }
  .section-inner {
    padding: 0;
  }
  .message-left, .message-right {
    width: 100%;
  }
  .subtitle {
    margin-bottom: 20px;
  }
  .text-p {
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .message-right {
    text-align: center;
    margin-bottom: 30px;
  }
  .message-img {
    margin-left: 0;
    width: 50%;
  }
  .service-ul {
    display: block;
  }
  .service-content-title {
    width: 120px;
    position: relative;
    left: 65px;
    top: 65px;
  }
  .service-p {
    margin-top: 10px;
    position: relative;
    left: 40px;
    top: -100px;
  }
  #gallery .gallery-ul {
    margin-top: 10px;
    display: block;
  }
  #gallery .gallery-li {
    width: 100%;
    margin-bottom: 60px;
  }
  #gallery .gallery-p {
    margin: 20px 0;
    text-align: center;
  }
  #gallery .subtitle-p {
    margin-top: 30px;
    margin-bottom: 60px;
  }
  .workflow-main-img {
    width: 100%;
  }
  #about {
    /* messageの.text-pと共通*/
  }
  #about .about-content {
    display: block;
    padding-top: 20px;
    margin-bottom: 30px;
  }
  #about .about-left {
    margin-bottom: 30px;
  }
  #about .about-img {
    max-width: 100px;
    position: relative;
    left: 90px;
    bottom: 0px;
  }
  #about .about-p {
    margin-bottom: 10px;
    margin-top: 20px;
  }
  #about .illust {
    margin-top: 30px;
  }
  #about .illust-img {
    width: 26px;
  }
  #about .illust-p {
    margin-left: 5px;
    margin-top: 5px;
  }
  .contact-title {
    padding-top: 0px;
  }
  .contact-form {
    max-width: 360px;
    margin: 30px;
    padding: 30px;
    padding: 30px 30px;
  }
  .attentionForm {
    margin-bottom: 20px;
    text-align: left;
  }
  .box-dl {
    display: block;
    margin: 30px 0;
    padding-top: 30px;
  }
  .box-dd {
    display: block;
    width: 250px;
  }
  .label {
    width: 100%;
    text-align: left;
    font-weight: 550;
    margin-bottom: 10px;
  }
  .input {
    width: 200px;
    height: 60px;
  }
  .textarea {
    width: 200px;
    height: 80px;
    padding-top: 30px;
    border: none;
    text-align: center;
    margin-bottom: 100px;
    max-width: 100%;
    min-width: 100%;
    min-height: 100px;
  }
  .release, .required, .request {
    width: 200px;
  }
  .footer-box {
    height: 30px;
  }
}
@media only screen and (min-width: 768px) {
  #header {
    background-color: #fff;
  }
  .nav-li {
    font-size: 14px;
  }
  .nav-sns-p {
    font-size: 12px;
  }
  .service-p {
    font-size: 13px;
  }
  .about-sub-title {
    font-size: 30px;
  }
  .subtitle-service-p {
    line-height: 2;
  }
  .service-p {
    line-height: 2;
  }
  .nav-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .nav-sns-ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .box-dl {
    border-top: 1px solid #ECF0F1;
  }
  .box-dl-last {
    border-bottom: 1px solid #ECF0F1;
  }
  .logo {
    width: 100px;
    line-height: 1px;
    margin-right: 60px;
  }
  .logo a {
    display: block;
  }
  .container {
    margin-left: 300px;
  }
  #thanks {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .thanks_page {
    max-width: 70%;
    padding: 50px 20px;
    margin: 0 auto;
  }
  .thanks-img {
    max-width: 80%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 70px;
    margin-left: 150px;
  }
  .thanks-message {
    font-size: 17px;
    text-align: center;
    margin-bottom: 70px;
  }
  .thanks-name-img {
    width: 200px;
    margin-left: 700px;
  }
  .openbtn, #g-nav, .s_h-inner {
    display: none;
  }
  .header {
    width: 300px;
    height: 100%;
    padding: 50px;
    position: fixed;
    top: 0;
    overflow-y: auto;
  }
  .h-inner {
    text-align: center;
  }
  .logo {
    display: block;
    width: 200px;
  }
  .nav-ul {
    margin-bottom: 20px;
  }
  .nav-li {
    width: 50%;
    padding: 8px 0;
  }
  .nav-img {
    width: 30%;
  }
  .nav-p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  .nav-sns-p {
    margin-bottom: 13px;
  }
  .nav-sns-li {
    margin-left: 10px;
  }
  .nav-sns-img {
    width: 50%;
  }
  .section-inner {
    margin-top: 30px;
    padding: 30px 0 70px 0;
  }
  .message-left {
    width: 50%;
  }
  .text-p {
    margin-bottom: 20px;
  }
  .message-right {
    width: 50%;
  }
  .message-img {
    margin-left: 150px;
  }
  .gallery-ul {
    margin-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .gallery-li {
    width: 47%;
  }
  .gallery-p {
    margin: 30px 0;
    text-align: center;
  }
  #about .about-left, #about .about-right {
    width: 50%;
  }
  ::-webkit-input-placeholder {
    color: #999;
    font-size: 15px;
  }
  ::-moz-placeholder {
    color: #999;
    font-size: 15px;
  }
  :-ms-input-placeholder {
    color: #999;
    font-size: 15px;
  }
  ::-ms-input-placeholder {
    color: #999;
    font-size: 15px;
  }
  ::placeholder {
    color: #999;
    font-size: 15px;
  }
}
/*# sourceMappingURL=style.css.map */