@charset: "UTF-8";

/* 全体 */

* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Hiragino kaku Gothic Pro","Meiryo","MS PGothic","sans-serif";
    letter-spacing: 1.5px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
    width: 100%;
    overflow-x: hidden;
}

/* 共通 */

h2 {
    width: 500px;
    margin: 0 auto;
}

h2 img {
    margin: 0 auto;
    height: 100px;
}

.big {
    font-size: 24px;
}

.sp_break {
    display: none;
}

/* 背景の傾きとインナーの位置調整↓ */

.inner {
    padding-top: 250px;
}

.left {
    transform: skewY(7deg);
}

.right {
    transform: skewY(-7deg);
}

/* 調整ここまで↑ */

/* 下記でページ内リンクのズレを修正 */

/* TOP ↓ */

.link {
    display: block;
    padding-top: 80px;
    margin-top: -160px;
}

/* TOP ↑ */

.section_link {
    display: block;
    padding-top: 120px;
    margin-top: -70px;
}

/* 修正ここまで */

/* 上に戻るボタン */

#gototop {
    text-decoration: none;
    background: #3763a6;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    position: fixed;
    right: 2%;
    bottom: 5%;
    opacity: 0.9;
    display: none;
}

#gototop img {
    width: auto;
    height: 30px;
    margin: 25px auto;
}

#gototop:hover {
    opacity: 1;
    transition: 0.3s;
}

/* ナビゲーション */

/* 共通部分ここから↓ */

nav {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 99;
    box-sizing: border-box;
}

nav #logo {
    width: 200px;
    height: auto;
    float: left;
    margin-top: px;
    margin-left: 10px;
}

nav #logo img {
    width: 100%;
    height: 70px;
}

nav #logo a {
    display: block;
    max-height: 70px;
}

/* 共通部分ここまで↑ */

/* PCナビここから↓ */

nav #navigation_pc {
    float: right;
}

nav #navigation_pc ul {
    list-style-type: none;
    line-height: 70px;
    font-size: 16px;
}

nav #navigation_pc ul li {
    width: 150px;
    float: left;
}

nav #navigation_pc ul li a {
    display: block;
    text-decoration: none;
    color: #000;
    padding: 0 30px;
}

nav #navigation_pc ul li a:hover {
    color: #fff;
    background: #3763a6;
    transition: 0.5s;
}

nav #navigation_pc ul li a.current {
    color: #fff;
    background: #3763a6;
    transition: 0.5s;
}

/* PCナビここまで↑ */

/* スマホナビここから↓ */

nav #navigation_sp {
    display: none;
}

/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  width: 70px;
  height: 70px;
  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;
  background: #1e447f;
  color: #fff;
}

.menu_icon:after {
    content: "\f0c9";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-size: 130%;
    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;
}

.menu_icon.open:after {
    content: "\f00d";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    color: #fff;
    font-size: 150%;
    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;
}

/*----------------------------
* メニュー本体
*----------------------------*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
}

.menu__item {
  width: 100%;
  height: auto;
  text-align: center;
  color: #000;
  box-sizing: border-box;
}

.menu__item a {
    display: block;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    padding: 10px;
}

.menu__item a:hover {
    color: #fff;
    background: #3763a6;
    transition: 0.5s;
}

/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu{
  transform: translateX(100vw);
  transition: all .3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active{
  transform: translateX(0);
}

/* スマホナビここまで↑ */

/* ヘッダー */

header {
    height: 800px;
    clear: both;
    background-image: url(../img/header_bg_img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    transform: skewY(-7deg);
    margin-top: -100px;
}

header #main_view {
    width: 550px;
    height: auto;
    background: rgba(255,255,255,0.9);
    margin: 60px auto 0;
    box-sizing: border-box;
    padding: 20px;
}

header #main_view p {
    line-height: 32px;
}

header .bg_gray {
    background: #333333;
    color: #fff;
    padding: 2px 10px;
    line-height: 40px;
}

header #contact_nav {
    width: 80%;
    margin: 20px auto;
}

header #contact_nav .far {
    margin-left: 20px;
}

header #contact_nav a {
    text-decoration: none;
    color: #fff;
    background: #e01e1e;
    padding: 15px;
    width: 100%;
    border-radius: 50px;
    display: block;
    box-sizing: border-box;
}

header #contact_nav a:hover {
    animation : contact 0.3s linear;
}

@keyframes contact {
    0% {
        transform: translateY(5px);
    }
    30% {
        transform: translateY(0px);
    }
    60% {
        transform: translateY(5px);
    }
    90% {
        transform: translateY(0px);
    }

}

/* サービス */

section#service {
    background: #fff;
    transform: skewY(7deg);
    margin-top: -250px;
    z-index: -1;
    position: relative;
}

section#service #service_detail {
    padding: 30px 0 120px;
}

section#service .service_box {
    width: 50%;
    height: 500px;
    box-sizing: border-box;
    float: left;
}

section#service .service_1 {
    background: #dfebfd;
}

section#service .service_2 {
    background: #d0e2fe;
}

section#service .service_3 {
    background: #b8d3fc;
}

section#service .service_4 {
    background: #a1c5fc;
}

section#service .service_bg {
    background: #fff;
    width: 80%;
    height: 400px;
    margin: 50px auto;
    border-radius: 10px;
    position: relative;
    box-sizing: border-box;
    padding: 30px;
    max-width: 600px;
}

section#service .service_box h4 {
    transform: rotate(-20deg);
    position: absolute;
    top: 0;
    left: -30px;
}

section#service .service_box .fas {
    font-size: 250%;
    margin: 30px 0 10px;
}

section#service .service_box h3 {
    font-size: 30px;
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 30px;
}

section#service .service_box h3:after {
    content: "";
    box-sizing: border-box;
    position: absolute;
    width: 60%;
    height: 3px;
    background: #fc4902;
    border-radius: 5px;
    bottom: 0;
    left: 50%;
    margin-left: -30%;
}

/* 実績 */

section#works {
    transform: skewY(-7deg);
    background-image: url(../img/works_bg_image.jpg);
    background-repeat: repeat-y;
    background-size: 120%;
    background-position: center top;
    margin-top: -250px;
    padding-top: 50px;
    z-index: -2;
    position: relative;
}

section#works #works_list {
    padding: 30px 0 100px;
}

section#works #works_list ul {
    list-style-type: none;
    width: 35%;
    height: auto;
    vertical-align: top;
    margin: 20px;
    display: inline-block;
    border: 3px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    box-sizing: border-box;
}

section#works #works_list ul li {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    border-bottom: 2px dotted #e5e5e5;
}

section#works #works_list ul li:last-child {
    border-bottom: none;
}

section#works #works_list ul li:first-child {
    background: #333333;
    color: #fff;
    font-size: 30px;
    border-radius: 8px 8px 0 0;
    border-bottom: none;
}

section#works #works_list ul li p {
    text-align: left;
    font-size: 14px;
    padding: 10px;
}

/* 私たちについて */

section#about {
    transform: skewY(7deg);
    background: #b8d3fc;
    margin-top: -250px;
    padding-top: 50px;
    z-index: -3;
    position: relative;
}

section#about .fukidashi {
    position: absolute;
    width: 350px;
    height: auto;
}

section#about .fukidashi img {
    width: 100%;
}

section#about .left_f {
    left: 0;
    top: 80px;
}

section#about .right_f {
    right: 0;
    top: 80px;
}

section#about #profile {
    padding: 30px 0 200px;
}

section#about .profile_box {
    background: #d0e2fe;
    border-radius: 10px;
    width: 500px;
    display: inline-block;
    vertical-align: top;
    margin: 20px;
    box-sizing: border-box;
    padding: 20px;
}

section#about .profile_box p {
    margin-bottom: 20px;
    padding: 0 20px;
}

section#about .profile_box p.message {
    font-size: 21px;
    width: 70%;
    margin: 30px auto;
    text-align: left;
    position: relative;
}

section#about .profile_box p.message:before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    top: -20px;
    left: -40px;
    width: 0px;
    height: 0px;
    border: none;
    border-top: 50px solid #fe7e4c;
    border-right: 50px solid transparent;
}

section#about .profile_box p.message:after {
    content: "";
    position: absolute;
    box-sizing: border-box;
    bottom: -20px;
    right: -40px;
    width: 0px;
    height: 0px;
    border: none;
    border-bottom: 50px solid #fe7e4c;
    border-left: 50px solid transparent;
}

section#about .profile_box .icon_img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 10px auto;
    background: #fff;
    overflow: hidden;
}

section#about .profile_box .icon_img img {
    width: 100%;
    height: auto;
}

section#about .profile_box p.job {
    font-size: 16px;
}

section#about .profile_box p.text_name {
    font-size: 21px;
}

section#about .profile_box .detail_profile {
    width: 90%;
    height: auto;
    margin: 10px auto;
    background: #fff;
    border-radius: 10px;
    text-align: left;
    padding: 20px;
}

/* お問い合わせ */

section#contact {
    transform: skewY(7deg);
    background: #94b6e9;
    margin-top: -5px;
}

section#contact .inner {
    padding-top: 0;
}

section#contact #contact_form {
    width: 50%;
    max-width: 700px;
    margin: 0 auto;
}

section#contact form {
    width: 100%;
    padding: 30px 0 250px;
}

section#contact form p {
    margin-bottom: 10px;
}

section#contact form p#form_text {
    font-size: 16px;
    margin-bottom: 50px;
}

section#contact form input[type="text"],
section#contact form input[type="email"],
section#contact form select {
    width: 100%;
    padding: 20px;
    border-radius: 5px;
    border: none;
    box-sizing: border-box;
    margin-bottom: 20px;
    font-size: 16px;
}

section#contact form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff;
}

section#contact form textarea {
    width: 100%;
    height: 200px;
    border: none;
    border-radius: 5px;
    margin-bottom: 50px;
    font-size: 16px;
    padding: 5px;
    box-sizing: border-box;
}

section#contact form input[type="submit"] {
    width: 100%;
    border: none;
    background: #3763a6;
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 15px;
    border-radius: 50px;
    padding: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

section#contact form input[type="submit"]:hover {
    cursor: pointer;
    background: #1e447f;
    transition: 0.3s;
}

/* フッター上の境界線 */

#blue_box {
    width: 100%;
    height: 250px;
    background-image: url(../img/footer_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-top: -180px;
}

/* フッター */

footer {
    background: #6f97d5;
    color: #fff;
    position: relative;
    padding: 50px 0;
    overflow: hidden;
    margin-top: -3px;
}

footer .footer_web_img {
    width: 300px;
    height: 300px;
    overflow: hidden;
    position: absolute;
}

footer .footer_web_img img {
    width: 100%;
}

footer .left_img {
    left: -150px;
    top: 50px;
    transform: rotate(-20deg);
}

footer .right_img {
    right: -100px;
    top: 50px;
    transform: rotate(15deg);
}

footer #footer_logo {
    width: 250px;
    height: auto;
    margin: 0 auto 50px;
}

footer #footer_logo img {
    width: 100%;
}

footer p small {
    font-size: 14px;
}

/*

以下、レスポンシブ

*/

/* 1150px以下ここから↓ */

@media screen and (max-width: 1150px) {

/* 全体 */

body {
    font-size: 16px;
}

/* 共通 */

h2 {
    width: 400px;
}

h2 img {
    height: 90px;
}

.big {
    font-size: 21px;
}

/* ナビゲーション */

nav #logo {
    width: 180px;
}

nav #navigation_pc ul li {
    width: 130px;
}

/* ヘッダー */

header {
    background-position: center 70px;
}

/* サービス */

    section#service #service_detail {
    padding: 30px 0 70px;
}

section#service .service_box h3 {
    font-size: 21px;
}

/* 実績 */

section#works #works_list ul {
    width: 45%;
    margin: 10px;
}

section#works #works_list ul li:first-child {
    font-size: 21px;
}

/* 私たちについて */

section#about .fukidashi {
    width: 280px;
}

section#about .profile_box {
    width: 45%;
    margin: 10px;
}

/* お問い合わせ */

    /* フッター上の境界線 */

#blue_box {
    height: 160px;
}

/* フッター */

footer .right_img {
    right: -150px;
}

footer #footer_logo {
    width: 200px;
}

footer p small {
    font-size: 12px;
}
}

/* 1150px以下ここまで↑ */

/* 860px以下ここから↓ */

@media screen and (max-width: 860px) {
    nav #navigation_pc {
        display: none;
    }

    nav #navigation_sp {
        display: block;
    }

    /* サービス */

section#service #service_detail {
    padding: 30px 0 50px;

}

section#service .service_box {
    width: 100%;
    height: 500px;
}

section#service .service_bg {
    padding: 20px 10px;
    max-width: 500px;
}

section#service .service_box .fas {
    font-size: 300%;
    margin: 50px 0 20px;
}

section#service .service_box h3 {
    font-size: 21px;
}

    section#about .profile_box .detail_profile {
    width: 100%;
    padding: 20px 10px;
    box-sizing: border-box;
    font-size: 14px;
}
}

/* 860px以下ここまで↑ */

/* スマホ 700px以下ここから↓ */

@media screen and (max-width: 700px) {

h2 {
    width: 300px;
}

h2 img {
    height: 80px;
}

.sp_break {
    display: block;
}

/* 上に戻るボタン */

#gototop {
    width: 70px;
    height: 70px;
}

#gototop img {
    margin: 20px auto;
}

/* ヘッダー */

header #main_view {
    width: 90%;
    padding: 10px;
}

    header #main_view h1 {
        width: 70%;
        margin: 0 auto;
        max-width: 350px;
    }

    header #main_view h1 img {
        width: 100%;
    }

header #main_view p {
    line-height: 26px;
}

header #contact_nav {
    width: 90%;
    max-width: 350px;
}

/* 実績 */

section#works {
    background-size: 200%;
}

section#works #works_list ul {
    width: 90%;
}

section#works #works_list ul li:first-child {
    font-size: 21px;
}

section#works #works_list ul li p {
    font-size: 14px;
}

/* 私たちについて */

section#about .fukidashi {
    width: 35%;
}

section#about .left_f {
    top: 150px;
}

section#about .right_f {
    top: 150px;
}

section#about .profile_box {
    width: 90%;
    margin: 20px auto;
}

section#about .profile_box p.message {
    font-size: 18px;
    width: 80%;
    margin: 30px auto;
    text-align: left;
    position: relative;
}

section#about .profile_box p.message:before {
    left: -10px;
    top: -20px;
    border-top: 40px solid #fe7e4c;
    border-right: 40px solid transparent;
}

section#about .profile_box p.message:after {
    right: -10px;
    bottom: -20px;
    border-bottom: 40px solid #fe7e4c;
    border-left: 40px solid transparent;
}

section#about .profile_box p.job {
    font-size: 14px;
}

section#about .profile_box p.text_name {
    font-size: 18px;
}

/* お問い合わせ */

section#contact #contact_form {
    width: 80%;
}

section#contact form p#form_text {
    font-size: 14px;
}

section#contact form input[type="submit"] {
    font-size: 21px;
    letter-spacing: 10px;
}

    /* フッター上の境界線 */

#blue_box {
    height: 100px;
}

/* フッター */

footer .footer_web_img {
    width: 30%;
    height: auto;
}

footer .left_img {
    left: -70px;
    bottom: 0;
}

footer .right_img {
    right: -70px;
    bottom: 0;
}

footer #footer_logo {
    width: 200px;
}

footer p small {
    font-size: 10px;
}

}

/* スマホ 700px以下ここまで↑ */
