/*
Theme Name: My Custom Theme
Theme URI: http://example.com/
Author: connect
Author URI: http://example.com/
Description: 自作テーマです
Version: 1.0
*/
@charset "UTF-8";

body {
    font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .2rem;
    color: #333;
    box-sizing: border-box; 
}
*, *::before, *::after {
    box-sizing: border-box;
}
/*--------共通パーツ--------*/
.section-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 2rem;
}
.section-title .title-ja {
    display: block;
    margin-bottom: 4px;
}
.section-title .title-en {
    display: block;
    font-size: .9rem;
}
.wrapper {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
a {
    text-decoration: none;
    transition: .3s;
}
a:hover {
    opacity: .7;
}
.btn {
    display: inline-block;
}
.btn .read-more {
    position: relative;
    color: #fff;
    background-color: #223a70;
    padding: 1rem 4rem;
}
.btn .read-more::after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.5rem;
    margin: auto;
    box-sizing: border-box;
    border: 6px solid transparent;
    border-left: 10px solid #fff;
    transition: .3s;
}
.btn .read-more:hover {
    color: #223a70;
    background-color: #fff;
    opacity: 1.0;
}
.btn .read-more:hover::after {
    border-left: 10px solid #223a70;
    right: 1rem;
}
/*-------------ヘッダー------------------*/
header {
    color: #fff;
    background: #3DAECA;
    background: linear-gradient(0deg, rgba(61, 174, 202, 1) 0%, rgba(0, 128, 181, 1) 100%);
    padding: 1rem 0;
}
header .wrapper {
    display: flex;
    justify-content: space-between;
    text-align: left;
}
header .header-logo {
    width: 250px;
}
header .header-logo img {
    width: 100%;
}
.header-nav {
    display: flex;
    align-items: center;
}
.header-list {
    display: flex;
    justify-content: space-between;
}
.header-list .header-item {
    margin-left: 2rem;
}
.header-list .header-item:first-child {
    margin-left: 0;
}
.header-list .header-item .header-link {
    display: inline-block;
    position: relative;
    color: #fff;
}
.header-list .header-item .header-link:hover {
    color: #223a70;
    opacity: 1;
}
/*
.header-list .header-item .header-link::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #223a70;
    opacity: 0;
    transition: .3s;
}
.header-list .header-item .header-link:hover::after {
    bottom: -4px;
    opacity: 1;
}
        */
.header-link .header-link-ja {
    font-size: 1.05rem;
    display: block;
}
.header-link .header-link-en {
    display: block;
    font-size: .8rem;
    font-weight: 200;
    letter-spacing: .1rem;
}
.header-nav #nav_toggle_text {
    display: none;
}
/*-------------サブメニューの設定------------------*/
.header-item {
    position: relative;
}
.header-sub-list {
    position: absolute;
    display: none;
    background-color: rgba(34,58,112,1);
    box-shadow: 1px 1px 2px #000;
    border-radius: 4px;
    min-width: max-content;
    top: 100%;
    z-index: 40;
    transition: .3s
}
.header-item .header-sub-link:hover {
    background-color: rgba(57, 72, 109, 0.1);
    transform: scale(1.0);
}
.header-item:hover .header-sub-list {
    display: block;
}
.header-item .header-sub-list .header-sub-link {
    display: block;
    color: inherit;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 0.8rem 1rem;
    font-weight: 500;
    text-align: left;
}
/*-------------メインビジュアル------------------*/
.main-visual .main-img {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    width: 100%;
    height: calc(100vh - 76px);
}
.main-visual .main-wrapper {
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto;
    top: 4%;
    right: 0;
    left: 0;
}
.news {
    color: #fff;
    background-color: rgba(34,58,112,.5);
    width: 32%;
    height: 100%;
}
.news .section-title {
    margin-bottom: 1rem;
}
.news .news-inner {
    padding: 1rem;
}
.news .news-link {
    display: block;
    color: #fff;
    padding-bottom: 4px;
    border-bottom: solid 1px #fff;
    margin-bottom: 1rem;
}
.news .news-date {
    display: block;
    margin-bottom: 4px;
}
.news .news-title {
    display: block;
}
.catch-copy {
    text-align: right;
    color: #223a70;
    font-size: 4vw;
    -webkit-text-stroke: 4px #fff;
    paint-order: stroke;
}
.news-sp {
    display: none;
}
/*-------------メッセージ------------------*/
.message {
    position: relative;
}
.message::before {
    position: absolute;
    content: "";
    background-image: url("img/section-separator.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: left bottom;
    width: 100%;
    height: 80px;
    top: calc(-6% - 5px);
    left: 0%;
    z-index: 40;
    pointer-events: none;
}
.message::after {
    position: absolute;
    content: "";
    background-image: url("img/section-separator.webp");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: left bottom;
    width: 100%;
    height: 80px;
    top: calc(-6% - 5px);
    left: 0%;
    z-index: 40;
    transform: scale(-1);
    pointer-events: none;
}

.message .message-back {
    position: relative;
    background-image: url("img/message-background.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0 8rem;
    z-index: 20;
}
.message .message-back::before {
    position: absolute;
    content: '';
    margin: auto;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    top: 0;
    left: 0;
    z-index: -1;
}
.message .section-title {
    color: #223a70;
    margin-bottom: 4rem;
}
.message .title-en {
    display: inline-block;
    position: relative;
    font-size: 1rem;
}
.message .title-en::before,
.message .title-en::after {
    position: absolute;
    content: "";
    background-color: #223a70;
    width: 2rem;
    height: 1px;
    top: 50%;
}
.message .title-en::before {
    left: -40px;
}
.message .title-en::after {
    right: -38px;
}
.message .title-ja {
    font-weight: bold;
}
.message .message-text {
    color: #223a70;
}
/*-------------波形区切りの設定------------------*/
.wave-top-container {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-top: -52px;
    z-index: 50
}
.wave-top {
    display: block;
    width: 100%;
    height: auto;
    transform: translateY(28px);
}
.wave-bottom-container {
    position: relative;
    width: 100%;
    line-height: 0;
    margin-bottom: -52px;
    z-index: 50
}
.wave-bottom {
    display: block;
    width: 100%;
    height: auto;
    transform: translateY(-28px);
}
/*-------------事業紹介------------------*/
.works {
    position: relative;
    color: #fff;
    justify-content: flex-end;
    background: #3DAECA;
    background: linear-gradient(90deg,rgba(61, 174, 202, 1) 0%, rgba(0, 128, 181, 1) 100%);
    padding: 2rem 0 4rem;
}
.works::before {
    position: absolute;
    content: "";
    width: 28%;
    height: 100%;
    background-image: url("img/back-logo.webp");
    background-repeat: no-repeat;
    background-size: contain;
    top: 8%;
    left: 20%;
}
.works .works-container {
    display: flex;
}
.works .section-title {
    padding-left: 10%;
}
.works .works-text-area {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 50%;
    padding: 0 4rem 0 10%;
}
.works .works-text2 {
    margin-bottom: 4rem;
}
.works .works-list {
    padding-left: 1.38rem;
    list-style: circle;
}
.works .img-inner {
    display: flex;
    flex-wrap: wrap;
    width: 50%;
}
.works .img-inner .works-img {
    width: 50%;
    height: 300px;
}
.works .img-inner .works-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;;
}
/*-------------採用情報------------------*/
.recruit {
    background-image: url("img/recruit-background.webp");
    background-repeat: no-repeat;
    background-size: cover;
}
.recruit .wrapper {
    display: flex;
    padding: 4rem 0 8rem;
}
.recruit .recruit-text-area {
    position: relative;
    background: #3DAECA;
    background: linear-gradient(90deg,rgba(61, 174, 202, 1) 0%, rgba(0, 128, 181, 1) 100%);
    width: 50%;
    color: #fff;
    text-align: left;
    padding: 3rem 3rem 4rem 5rem;
    margin-left: -3%;
    margin-top: 4%;
}
.recruit .recruit-text-area::before {
    position: absolute;
    content: "";
    width: 36%;
    height: 100%;
    background-image: url("img/back-logo.webp");
    background-repeat: no-repeat;
    background-size: contain;
    top: 4%;
    right: 4%;
}
.recruit .recruit-text-area .recruit-text {
    margin-bottom: 4rem;
}
.recruit .group-photo {
    width: 50%;
    z-index: 30;
}
.recruit .group-photo img {
    width: 100%;
    object-fit: cover;
}
/*-------------フッター------------------*/
#footer {
    background: #3DAECA;
    background: linear-gradient(90deg,rgba(61, 174, 202, 1) 0%, rgba(0, 128, 181, 1) 100%);
    color :#fff;
}
#footer .footer-nav {
    text-align: left;
    padding-top: 1rem;
    margin-bottom: 2rem;
}
#footer .footer-list {
    display: flex;
    justify-content: flex-start;
}
#footer .footer-list .footer-link {
    color: #fff;
    text-decoration: underline;
    margin-left: 2rem;
}
#footer .footer-list:first-child {
    margin-left: 0;
}
#footer .information {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}
#footer .information address {
    text-align: left;
}
#footer .footer-logo {
    width: 400px;
}
#footer .footer-logo img {
    width: 100%;
}
#footer .copyright {
    color: #223a70;
    background-color: #fff;
    text-align: center;
    padding: 1rem 0;
}
#footer .copy {
    font-size: .8rem;
}
/*-------------個別ページ設定------------------*/
.article-container {
    display: block;
    background-color: #fff;
    background-image: url("img/recruit-background.webp");
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 1px 1px 3px;
    }
.article-container .article-wrapper {
    width: 100%;
    max-width: 1200px;
    height: auto;
    padding: 2rem 1rem;
    margin: 0 auto;
}
.article-container .page-title {
    color: #223a70;
    font-size: 2rem;
    font-weight: 900;
}
/*-------------個別ページエディター------------------*/
.page-content {
    margin: 1rem auto 3rem;
    width: 100%;
    max-width: 1200px;
    min-height: 500px;
    padding: 1rem;
}
.page-content h3 {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}
.page-content h3:first-letter {
    color: #3DAECA;
    font-size: 2rem;
}
.page-content h4 {
    font-size: 1.4rem;
    font-weight: 900;
    padding: 0.25em 0.5em;
    border-left: solid 5px #223a70;
    margin-bottom: 1.5rem;
}
.page-content h5 {
    color: #223a70;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}
.page-content h6 {
    display: table;
    font-size: 1.1rem;
    border-bottom: dotted 3px #3DAECA;
    margin-bottom: 1.5rem;
}
.page-content a {
    color: #3DAECA;
    text-decoration: underline;
    transition: .3s;
}
.page-content a:hover {
    opacity: .7;
}
.page-content ul {
    margin-bottom: 1rem;
}
.page-content ul li {
    position: relative;
    margin-bottom: 10px;
    margin-left: 1.5rem;
}
.page-content ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -1rem;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 8px solid #223a70;
}
.page-content ol {
    counter-reset: li_count;
    margin-bottom: 1.5rem;
}
.page-content ol li {
    margin-bottom: 10px;
}
.page-content ol li:before {
    counter-increment: li_count;
    content: counter(li_count)".";
    margin-right: 5px;
    color: #223a70;
}
.page-content p {
    margin-bottom: 1rem;
}
.page-content strong {
    font-size: 1.2rem;
    font-weight: bold;
}
.page-content address {
    font-size: 1rem;
}
.page-content table {
    width: 100%;
    margin-bottom: 10px;
    border-collapse: collapse;
    }
.page-content th,
.page-content td {
    border: solid 1px #ddd;
    }
.page-content th {
    width: 30%;
    padding: 8px;
    background-color: #f2f2f2;
    text-align: left;
}
.page-content td {
    background-color: #fff;
    width: 70%;
    padding: 10px;
}
.page-content .table-flex {
    border-collapse: initial;
    border: none;
}
.page-content .table-flex tr {
    display: flex;
    justify-content: space-between;
    border: none;
}
.page-content .table-flex th,
.page-content .table-flex td {
    border: none;
}
.page-content .table-flex-reverse {
    border-collapse: initial;
    border: none;
}
.page-content .table-flex-reverse tr {
    display: flex;
    justify-content: space-between;
    border: none;
}
.page-content .table-flex-reverse th,
.page-content .table-flex-reverse td {
    border: none;
}
.page-content .noborder {
    border: none;
}
.page-content .redline {
    border: double 1px #e65d5d;
}
.page-content img {
    max-width: 100%;
    height: auto;
}
/*-------------投稿一覧------------------*/
.page-content .example-list {
    display: flex;
    flex-wrap: wrap;
}
.page-content .example-inner {
    width: calc((100% / 3) - 2rem);
    margin-left: 2rem;
    margin-bottom: 4rem;
}
.page-content .example-inner:nth-child(3n+1) {
    margin-right: 0;
}
.page-content .example-inner .example-title {
    margin-bottom: 1rem;
}
.page-content .example-inner .example-time {
    margin-bottom: 1rem;
}
.page-content .example-inner img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}
/*-------------ページネーションの設定------------------*/
.pagination {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
    font-family: Arial, sans-serif;
}
.pagination a,
.pagination span {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 4px;
    text-decoration: none;
    color: #223a70;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}
.pagination span.current,
.pagination a.current {
    background-color: #3DAECA;
    color: #fff;
    border-color: #3DAECA;
}
.pagination a:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

/*-------------コンタクトフォーム------------------*/
form{
    background-color: #fff;
    padding:1em;
	border:1px solid #ccc;
	border-radius:4px;
	box-shadow:2px 2px 10px #ccc;
}

form label{
	display:block;
}

.wpcf7-form-control {
	margin-bottom:1em;
}

input[type=submit],
button[type=submit]{
	display:block;
	color: #fff;;
    font-size: 1rem;
	background:#0064be;
	border: 1px solid #0064be;
	transition:.2s;
}

input[type=submit]:hover,
button[type=submit]:hover{
	color: #0064be;
	background:#fff;
}

form input,
form select,
form textarea,
form button{
    width: 50%;
	max-width:100%;
	padding:.2em;
	border:1px solid #ccc;
	border-radius:4px;
}
form button {
    width: 6rem;
}

form :disabled{
	color:#ccc;
	background:#eee;
}

form span{
	display: block;
}
/*-------------レスポンシブ_タブレット------------------*/
@media screen and (max-width: 1000px){
/*-------------共通パーツ_タブレット------------------*/
    .wrapper {
        width: 95%;
        max-width: 100%;
    }
/*-------------メニュー_タブレット------------------*/
    #close_toggle {
        display: block;
        padding: 1em;
        text-align: right
    }
    #gnav_overlay {
        position: fixed;
        display: none;
        width: 100vw;
        height: 100vh;
        background: rgba(0,0,0,.7);
        transition: .5s;
        z-index: 80;
        top: 0;
        right: 0
    }
    .header-nav {
        overflow: hidden;
    }
/*-------------ハンバーガーメニューアイコン------------------*/
    .header-nav #nav_toggle{
        position: fixed;
        display: flex;
        align-items: center;
        height: 40px;
        top: 1rem;
        right: 2rem;
        z-index: 1000;
        cursor: pointer;
    }
    .header-nav #nav_toggle #nav_toggle_icon {
        display: block;
        width: 40px;
        height: 3px;
        background: #223a70;;
        transition: .2s;
        z-index: 90;
    }
    .header-nav #nav_toggle_text {
        position: absolute;
        display: block;
        font-size: 0.7rem;
        color: #223a70;
        right: -12%;
        bottom: -36%;
        z-index: 90;
    }
    .header-nav #nav_toggle::before {
        position: absolute;
        content: "";
        background-color: rgba(255,255,255,.4);
        width: 150%;
        height: 150%;
        top: -4px;
        right: -9.6px;
    }
    .header-nav #nav_toggle #nav_toggle_icon:before,
    .header-nav #nav_toggle #nav_toggle_icon:after {
        position: absolute;
        display: block;
        content: "";
        width: 40px;
        height: 3px;
        background: #223a70;;
        transition: .3s;
        top: 50%;
        left: 0
    }
    .header-nav #nav_toggle #nav_toggle_icon:before {
        margin-top: -14px
    }
    .header-nav #nav_toggle #nav_toggle_icon:after {
        margin-top: 11px
    }
    .header-nav #nav_toggle.close {
        background: rgba(0,0,0,0)
    }
    .header-nav #nav_toggle.close #nav_toggle_icon:before {
        background-color: #fff;
        margin-top: -1px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg)
    }
    .header-nav #nav_toggle.close #nav_toggle_icon:after {
        background-color: #fff;
        margin-top: -1px;
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg)
    }
    .header-nav #nav_toggle.close #nav_toggle_icon {
        background-color: transparent;
    }
    .header-nav #nav_toggle.close #nav_toggle_text {
        color: #fff;
    }
    .header-nav #nav_toggle.close::before {
        background-color: rgba(255,255,255,0);
    }
/*-------------ハンバーガーメニューリスト------------------*/
    .header-list {
        display: block;
        position: fixed;
        background-color: #223a70;
        padding-top: 6rem;
        top: 0;
        right: -100%;
        z-index: 100;
        width: 50vw;
        height: 100vh;
        transition: .3s;
    }
/*-------------メニュースタイルの調整------------------*/
    .header-list .header-item {
        margin-left: 0;
    }
    .header-list .header-item .header-link::after {
        display: none; /*レスポンシブだと下線が出てくるのを打ち消す */
    }
    .header-list .header-item .header-link:hover {
        opacity: 1;
    }
    .header-list .header-item .header-link {
        display: block;
        padding: 1rem;
    }
    .header-item:hover .header-link {
        background-color: #3DAECA;
    }
/*-------------メニューオープン------------------*/
    .open .header-list {
        right: 0;
        padding-top: 6rem;
    }
    .header-item {
        border-bottom: solid 1px #fff;
        margin-left: 0;
    }
    .header-item:first-child {
        border-top: solid 1px #fff;
    }
    .header-item .header-nav-link {
        color: #000;
    }
    .header-item .header-nav-link:hover {
        color: #fff;
    }
/*-------------サブメニューの打ち消し_タブレット------------------*/
    .header-item:hover .header-sub-list {
        display: none;
    }
/*-------------メインビジュアル_タブレット------------------*/
    .main-visual .main-img {
        height: 72vh;
    }
    .main-visual .main-wrapper {
        display: block;
        top: 2%;
        left: 12%;
    }
    .news-pc {
        display: none;
    }
    .news-sp {
        display: block;
        background-color: rgba(34,58,112,1);
        width: 100%;
    }
    .news .news-inner {
        padding: 1rem 1rem 4rem;
    }
    .news .news-link {
        display: table;
        border-bottom: none;
        text-decoration: underline;
    }
    .catch-copy {
        font-size: 6.6vw;
    }
/*-------------メッセージ_タブレット------------------*/
    .message::before {
        top: calc(-6% - 5px);
    }
    .message::after {
        top: calc(-6% - 5px);
    }
    .message .message-back {
        padding: 2rem 0 4rem;
    }
    .message .section-title {
        margin-bottom: 1rem;
    }

/*-------------事業紹介_タブレット------------------*/
    .works .section-title {
        padding-left: 1.28rem;
    }
    .works .works-container {
        flex-direction: column-reverse;
    }
    .works .works-text-area,
    .works .img-inner {
        width: 100%;
    }
    .works .img-inner .works-img {
        width: 25%;
        height: 25vw;
    }
    .works .img-inner {
        margin-bottom: 1rem;
    }
    .works::before {
        top: 72%;
        left: 68%;
    }
    .works .works-text-area {
        padding: 1rem 2rem;
        width: 100%;
        box-sizing: border-box;
    }
    .works .works-text {
        margin-bottom: 1rem;
    }
    .works .works-list {
        padding-left: 1.28rem;
        margin-bottom: 1rem;
    }
    /*-------------波形区切りの設定------------------*/
    .wave-top-container {
        margin-top: -40px;
    }
    .wave-top {
        height: 78px;
        transform: translateY(16px);
    }
    .wave-bottom-container {
        position: relative;
        width: 100%;
        line-height: 0;
        margin-bottom: -52px;
        z-index: 50;
    }
    .wave-bottom {
        display: block;
        width: 100%;
        height: auto;
        transform: translateY(-29px);
        margin-bottom: -1px;
    }
/*-------------採用情報_タブレット------------------*/
    .recruit .wrapper {
        flex-direction: column;
        width: 100%;
        padding: 4rem 0;
    }
    .recruit .group-photo {
        width: 100%;
        margin-bottom: 1rem;
    }
    .recruit .group-photo img {
        height: 50vh;
        object-position: 0 64%;
    }
    .recruit .section-title {
        color: #223a70;
    }
    .recruit .recruit-text-area {
        background: none;
        width: 100%;
        color: #223a70;
        text-align: center;
        padding: 0;
        margin-left: 0;
        margin-top: 0;
    }
    .recruit .recruit-text-area::before {
        background-image: none;
    }
/*-------------フッター_タブレット------------------*/
    #footer .footer-list .footer-item {
        margin-bottom: 1rem;
    }
    #footer .information {
        flex-direction: column-reverse;
        align-items: flex-end;
    }
    #footer .information address {
        display: inline-block;
        text-align: right;
    }
    #footer .footer-logo {
        text-align: right;
        width: 300px;
    }
    #footer .copy {
        font-size: 1.6vw;
    }
/*-------------個別ページ設定_タブレット------------------*/
    .page-content {
        padding-top: 1rem;
    }
    .page-content .table-flex tr {
        flex-direction: column;
        justify-content: space-between;
    }
    .page-content .table-flex-reverse tr {
        flex-direction: column-reverse;
        justify-content: space-between;
    }
    .page-content p {
        margin-bottom: .5rem;
    }
/*-------------表の組み換え設定_タブレット------------------*/
    .page-content table {
        width: 100%;
        margin-bottom: 10px;
        border-collapse: collapse;
        }
    .page-content tr {
        width: 100%;
    }
    .page-content th,td {
        display: block;
        border: solid 1px #ddd;
        }
    .page-content th {
        width: 100%;
        padding: 6px;
        background-color: #f2f2f2;
        text-align: left;
    }
    .page-content td {
        background-color: #fff;
        width: 100%;
        padding: 6px;
    }
/*-------------投稿一覧------------------*/
    .page-content .example-list {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .page-content .example-inner {
        width: 100%;
        margin-bottom: 2rem;
    }
    .page-content .example-inner .example-title {
        margin-bottom: 8px;
    }
    .page-content .example-inner .example-time {
        margin-bottom: 8px;
    }
    .page-content .example-inner img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }
/*-------------コンタクトフォーム_タブレット------------------*/
    form input,
    form select,
    form textarea,
    form button{
    width: 100%;
}
}

@media screen and (max-width: 768px) {
    .btn {
        margin: 0 auto;
    }
    .header-list {
        width: 75vw;
    }
    .message::before {
        top: calc(-6% - -10px);
    }
    .message::after {
        top: calc(-6% - -10px);
    }
    .works {
        padding: 1rem 0 2rem;
    }
    .works .works-text br {
        display: none;
    }
    .works .img-inner .works-img {
        width: 50%;
        height: 50vw;
    }
    .wave-bottom {
        transform: translateY(-12px);
    }
    .recruit .recruit-text-area .recruit-text {
        padding: 0 1rem;
    }
    #footer .footer-list {
        flex-direction: column;
    }
    #footer .footer-logo {
        width: 240px;
    }
    #footer .information address .tel,
    #footer .information address .fax {
        display: inline-block;
    }
    #footer .copy {
        font-size: 1.8vw;
    }
}
/*-------------アニメーション------------------*/
.animation {
    opacity: 0
}

.fadeup {
    transform-origin: center top;
    -webkit-animation: fadeup 1s both;
    animation: fadeup 1s both
}

.slidein_left {
    transform-origin: right center;
    -webkit-animation: slidein_left 1s both;
    animation: slidein_left 1s both
}

.slidein_right {
    transform-origin: left center;
    -webkit-animation: slidein_right 1s both;
    animation: slidein_right 1s both
}

.d3 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.d5 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.d10 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.d15 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s
}

.d20 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.d25 {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s
}

.d30 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.d35 {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s
}

.d40 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.d45 {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s
}

.d50 {
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.d55 {
    -webkit-animation-delay: 5.5s;
    animation-delay: 5.5s
}

.d60 {
    -webkit-animation-delay: 6s;
    animation-delay: 6s
}

@-webkit-keyframes fadeup {
    0% {
        transform: translate(0, 2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes fadeup {
    0% {
        transform: translate(0, 2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@-webkit-keyframes slidein_left {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes slidein_left {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@-webkit-keyframes slidein_right {
    0% {
        transform: translate(2em, 0, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0, 0);
        opacity: 1
    }
}

@keyframes slidein_right {
    0% {
        transform: translate(2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes circle {
    0% {
        transform-origin: 50% 50%;
        transform: scaleY(1) rotate(0deg)
    }

    50% {
        transform: scaleY(1) rotate(180deg);
        transform-origin: 50% 50%
    }

    100% {
        transform: scaleY(1) rotate(360deg);
        transform-origin: 50% 50%
    }
}

@keyframes circle {
    0% {
        transform-origin: 50% 50%;
        transform: scaleY(1) rotate(0deg)
    }

    50% {
        transform: scaleY(1) rotate(180deg);
        transform-origin: 50% 50%
    }

    100% {
        transform: scaleY(1) rotate(360deg);
        transform-origin: 50% 50%
    }
}