@charset "utf-8";
/*
Theme Name: communitydesign
Author: erikori
Author URI:
Description:
*/
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/****************************************
HTMLエレメント
****************************************/
body {
    color: #1f1f1f;
    font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
    /*	font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif; */
    /*	font-family: 'Gothic MB101 DemiBold'; */
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.16em;
    margin: 0;
    overflow-x: hidden;
    text-align: justify;
    text-justify: inter-ideograph;
    width: 100%;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    body {
        font-size: 12px;
    }
}

/****************************************
共通 ヘッダー
****************************************/
.sticky {
    background: rgba(255, 255, 255, 0);
    display: block;
    /*	position: -webkit-sticky; */
    /*	position: sticky; */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1920px;
    width: 100%;
    z-index: 9999;
}

.header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    margin: 0 auto;
    padding: 16px 0;
    width: 100%;
}

.header-black {
    background: #FFF;
}

.header_logo {
    margin-left: 20px;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.header_logo:hover {
    filter: alpha(opacity=60);
    /* ie lt 8 */
    -ms-filter: "alpha(opacity=60)";
    /* ie 8 */
    -moz-opacity: 0.6;
    /* FF lt 1.5, Netscape */
    -khtml-opacity: 0.6;
    /* Safari 1.x */
    opacity: 0.7;
    zoom: 1;
}

.header_hamburger {
    width: 32px;
    margin-left: 12px;
    margin-right: 18px;
}

.header_hamburger_bar1,
.header_hamburger_bar2,
.header_hamburger_bar3 {
    background-color: #FFF;
    border-radius: 10px;
    display: block;
    height: 2px;
    margin: 7px 0 7px auto;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    width: 25px;
}

.header_hamburger_bar3 {
    width: 15px;
}

.header-black .header_hamburger_bar1,
.header-black .header_hamburger_bar2,
.header-black .header_hamburger_bar3 {
    background-color: #1f1f1f;
}

.header_hamburger_bar1.open {
    -webkit-transform: translateX(0) rotate(45deg);
    transform: translateX(0) rotate(45deg);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
}

.header_hamburger_bar2.open {
    opacity: 0;
}

.header_hamburger_bar3.open {
    -webkit-transform: translateX(0) rotate(-45deg);
    transform: translateX(0) rotate(-45deg);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    width: 25px;
}

.header_navi {
    display: none;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

@-webkit-keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes show {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes hide {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes hide {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.header_navi.open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    height: calc(var(--vh, 1vh) * 100 - 67px);
    margin-top: 16px;
    margin-bottom: -16px;
    width: 100%;
    -webkit-animation: show 0.3s ease-in-out 0s;
    animation: show 0.3s ease-in-out 0s;
}

.header_navi li {
    background: #FFF;
    border-top: 1px solid #1f1f1f;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 12px;
    font-weight: 900;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: 0.12em;
    text-align: center;
    -webkit-transform: scale(1.1, 1);
    transform: scale(1.1, 1);
}

.header_navi li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.header_navi li a span {
    display: block;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.11em;
    margin-top: 8px;
}

/* スクロール禁止用 */
.scroll-prevent {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    .sticky {
        padding: 0;
    }

    .header {
        margin: 0 auto;
        padding: 23px 0 23px 20px;
    }

    .header_logo {
        margin-left: 0;
    }

    .header_logo img {
        width: 200px;
        height: auto;
    }

    .header_navi {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header_navi li {
        background: none;
        border-top: 0;
        letter-spacing: 0;
        margin: 0 9px;
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .header_navi li a {
        color: #FFF;
        display: inline;
        padding: 0 0 4px 0;
        position: relative;
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .header_navi li a::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -12px;
        display: inline-block;
        width: 0px;
        height: 3px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0);
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }

    .header_navi li a:hover::after {
        background-color: #FFF;
        bottom: -12px !important;
        width: 40px;
    }

    .header-black .header_navi li a:hover::after {
        background-color: #1f1f1f;
    }

    .header-black .header_navi li a {
        color: #1f1f1f;
    }
}

/* グロナビ マージン調整 1152px 以上*/
@media screen and (min-width:1152px) {
    .header {
        padding: 23px 48px;
    }

    .header_logo img {
        width: 200px;
    }

    .header_navi li {
        letter-spacing: 0.12em;
        margin: 0 28px;
    }
}

@media screen and (min-width:1400px) {
    .header_dummy {
        width: 258px;
    }

    .header_navi li {
        margin: 0 32px;
    }
}

/****************************************
ファーストビュー
****************************************/
.firstView {
    background: url("img/main-photo-2s-c.jpg") center center / cover no-repeat;
    color: #FFF;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: calc(var(--vh, 1vh) * 100);
    height: 145vw;
    overflow: hidden;
    max-height: 1090px;
    text-align: center;
}

.firstView_title {
    display: inline-block;
    font-size: 36px;
    font-weight: 100;
    line-height: 36px;
    -webkit-transform: scale(1.1, 1);
    transform: scale(1.1, 1);
    letter-spacing: 0.12em;
}

.firstView_text {
    font-size: 16px;
    letter-spacing: 0.3em;
    line-height: 25px;
    margin: 20px auto 0;
    width: calc(100vw - 50px);
    text-align: center;
}

.vertical-line {
    background: #FFF;
    height: 40px;
    margin: 20px auto;
    width: 1px;
}

.firstView_button_wrap a.btn {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin: 10px 7px 0;
    width: 150px;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    .firstView {
        background: url("img/main-photo-2s-c.jpg") top center / cover no-repeat;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        height: 800px;
        margin-top: 0;
        width: 100%;
    }

    .firstView_title {
        display: inline-block;
        font-size: 74px;
        margin-top: 225px;
    }

    .firstView_text {
        font-size: 13px;
        line-height: 30px;
        margin: 45px auto 0;
        text-align: center;
        width: calc(100vw - 100px);
    }

    .vertical-line {
        margin: 30px auto;
    }

    .firstView_button_wrap a.btn {
        font-size: 13px;
        height: 60px;
        line-height: 60px;
        width: 240px;
    }
}

/****************************************
button
****************************************/
a.btn, button.btn {
    background: #1f1f1f;
    border: 1px solid #1f1f1f;
    border-radius: 4px;
    color: #FFF;
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 48px;
    position: relative;
    text-align: center;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: 200px;
    z-index: 2;
}

a.btn_none-white {
    background: none;
    border: 1px solid #FFF;
    color: #FFF;
}

a.btn_white-black {
    background: #FFF;
    border: 1px solid #FFF;
    color: #1f1f1f;
}

a.btn_line-black {
    border: 1px solid #1f1f1f;
}

a.btn_round {
    border-radius: 100px;
}

a.btn:hover, button.btn:hover {
    background: #FFF;
    color: #1f1f1f;
}

a.btn_hover_white-black:hover {
    background: #FFF;
    color: #1f1f1f;
}

a.btn_hover_black-white:hover {
    background: #1f1f1f;
    color: #FFF;
}

a.btn_hover_none-white:hover {
    background: none;
    color: #FFF;
}

a.btn::before,
a.btn::after,
button.btn::before,
button.btn::after {
    background: #FFF;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    width: 0;
    height: 100%;
    z-index: -1;
}

a.btn_hover_black-white::before,
a.btn_hover_black-white::after {
    background: #1f1f1f;
}

a.btn_hover_none-white::before,
a.btn_hover_none-white::after {
    background: #FFF;
    width: 50%;
}

a.btn-white-black::before,
a.btn-white-black::after {
    background: #1f1f1f;
}

a.btn::before, button.btn::before {
    border-radius: 2px 0 0 2px;
    right: 50%;
}

a.btn_round::before {
    border-radius: 100px 0 0 100px;
}

a.btn::after, button.btn::after {
    border-radius: 0 2px 2px 0;
    left: 50%;
}

a.btn_round::after {
    border-radius: 0 100px 100px 0;
    left: 50%;
}

a.btn_hover_none-white:hover::before {
    right: 100%;
}

a.btn_hover_none-white:hover::after {
    left: 100%;
}

a.btn:hover::before,
a.btn:hover::after,
button.btn:hover::before,
button.btn:hover::after {
    width: 50%;
}

a.btn_hover_none-white:hover::before,
a.btn_hover_none-white:hover::after {
    width: 0%;
}

button.btn {
    display: block;
    font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
    letter-spacing: 0.2em;
    margin: 0 auto;
}

form button.btn {
    width: calc(100vw - 100px);
}

.btn img {
    margin-right: 18px;
    vertical-align: middle;
}

.btn .btnIcon {
    display: inline-block;
    -webkit-animation: show 0.3s ease-in-out 0s;
    animation: show 0.3s ease-in-out 0s;
}

.btn .btnIcon_hover {
    display: none;
    -webkit-animation: hide 0.3s ease-in-out 0s;
    animation: hide 0.3s ease-in-out 0s;
}

.btn:hover .btnIcon {
    display: none;
    -webkit-animation: hide 0.3s ease-in-out 0s;
    animation: hide 0.3s ease-in-out 0s;
}

.btn:hover .btnIcon_hover {
    display: inline-block;
    -webkit-animation: show 0.3s ease-in-out 0s;
    animation: show 0.3s ease-in-out 0s;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    a.btn {
        font-size: 13px;
        letter-spacing: 0.12em;
        line-height: 68px;
        width: 240px;
    }

    button.btn {
        font-size: 13px;
    }

    form button.btn {
        line-height: 80px;
        width: 500px;
    }

    .btn .btnIcon {
        width: 24px;
        height: 19px;
    }

    .btn .btnIcon_hover {
        width: 24px;
        height: 19px;
    }
}

/****************************************
aboutus
****************************************/
.aboutus {
    padding-top: calc(66px + 25px);
    /* ヘッダー高さ66px＋50px */
    /* margin: calc(-66px - 25px - 5vw) auto 0; */
    /* ヘッダー高さ-66px コンテンツ位置-10vw */
    /*width: 100%;*/
}

.aboutus_title_eng {
    color: #c1c1c1;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 11px;
    margin: 0 auto;
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(1.1, 1);
    transform: scale(1.1, 1);
    width: calc(100vw - 100px);
}

.aboutus_title {
    font-size: 16px;
    letter-spacing: 0.3em;
    line-height: 30px;
    margin: 6px auto 0;
    width: calc(100vw - 100px);
}

.aboutus_text {
    font-size: 10px;
    letter-spacing: 0.2em;
    line-height: 25px;
    margin: 6px auto;
    width: calc(100vw - 100px);
}

.aboutus_content_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.aboutus_content {
    border-radius: 12px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    margin: 50px 0;
    padding: 30px;
    width: calc(100vw - 160px);
}

.aboutus_content_title {
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 16px;
    -webkit-transform: scale(1.1, 1);
    transform: scale(1.1, 1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.aboutus_content_text {
    letter-spacing: 0.2em;
    line-height: 25px;
    margin: 20px 0 0;
}

a.aboutus_btn {
    display: block;
    margin: -50px auto 0;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    .aboutus {
        /* ヘッダー高さ 88px + 50px*/
        padding-top: 138px;
        margin: -124px 50px 0;
    }

    .aboutus_title_eng {
        font-size: 13px;
        line-height: 13px;
        width: auto;
    }

    .aboutus_title {
        font-size: 26px;
        line-height: 48px;
        margin: 16px auto 0;
        width: auto;
    }

    .aboutus_text {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.3em;
        line-height: 30px;
        margin: 18px auto 0;
        width: auto;
    }

    .aboutus_content_scroll {
        overflow-x: hidden;
        overflow-y: hidden;
        width: 100%;
    }

    .aboutus_content_wrap {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-top: 70px;
        width: calc(100vw - 100px);
    }

    .aboutus_content {
        margin: 0 20px 0 0;
        padding: 0;
        width: auto;
        width: calc((100vw - 100px)/3 - 20px);
    }

    .aboutus_content_title {
        font-size: 16px;
        line-height: 16px;
        margin-top: 60px;
        margin-top: 38px;
        text-align: center;
        -webkit-transform-origin: center;
        transform-origin: center;
    }

    .aboutus_content_text {
        line-height: 24px;
        margin: 32px 20px 32px;
        margin: 30px 20px 32px;
    }

    a.aboutus_btn {
        margin: 50px auto 0;
    }
}

@media screen and (min-width:1100px) {
    .aboutus {
        margin: -124px auto 0;
        width: 1000px;
    }

    .aboutus_content_wrap {
        width: 1000px;
    }

    .aboutus_content {
        height: 306px;
        margin: 0;
        width: 306px;
    }

    .aboutus_content_text {
        margin: 32px auto 0;
        margin: 30px auto 0;
        width: 222px;
        width: 234px;
    }
}

/****************************************
Aboutusスワイプ　swiper
****************************************/
.swiper-wrapper {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.swiper-slide {
    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;
    height: auto;
    padding-bottom: 25px;
}

.sample02-inner {
    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;
    width: 100%;
}

.swiper-slide .swiper-button-prev,
.swiper-slide .swiper-button-next {
    color: #CCC;
    display: block;
    height: 10px;
    width: 10px;
    background-image: none;
    z-index: 10000;
    -webkit-transform: scale(1, 2);
    transform: scale(1, 2);
}

.swiper-slide .swiper-button-next {
    right: 20px;
}

.swiper-slide .swiper-button-prev {
    left: 20px;
}

/****************************************
OUR SERVICE
****************************************/
.service {
    border-bottom: 1px solid #1f1f1f;
    padding: calc(66px + 25px) 0 12px;
    padding: calc(66px + 25px) 0 12px;
    /* ヘッダー高さ66px＋50px */
    margin: calc(-66px - 50px) auto 0;
    margin: calc(-66px + 50px) auto 0;
    width: 100%;
}

.service_title_eng {
    color: #c1c1c1;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 11px;
    margin: 0 auto;
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(1.1, 1);
    transform: scale(1.1, 1);
    width: calc(100vw - 100px);
}

.service_title {
    font-size: 16px;
    letter-spacing: 0.3em;
    line-height: 30px;
    margin: 6px auto 44px;
    width: calc(100vw - 100px);
}

.service_img {
    width: 100%;
}

.service_img_sp-tablet {
    display: block;
}

.service_img_pc {
    display: none;
}

.service_content {
    margin: 38px auto;
    width: calc(100vw - 100px);
}

.service_content_title {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 20px;
    -webkit-transform: scale(1.2, 1);
    transform: scale(1.2, 1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.service_content_title_sub {
    font-weight: 500;
    letter-spacing: 0.12em;
    margin: 18px 0 20px;
}

.service_content_text {
    letter-spacing: 0.2em;
    line-height: 25px;
    margin-bottom: 40px;
}

.service_01 .btn, .service_02 .btn, .service_03 .btn {
    display: block;
    margin-left: auto;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    .service {
        border-bottom: none;
        /* ヘッダー高さ 88px + 50px*/
        padding: 138px 0 0;
        /* ヘッダー高さ(-88px) + コンテンツ位置(-106px)  */
        margin: calc(-88px + 50px) 0 0;
    }

    .service_title_eng {
        font-size: 13px;
        line-height: 13px;
    }

    .service_title {
        font-size: 26px;
        line-height: 48px;
        margin: 16px auto 70px;
    }

    .service_content_title {
        font-size: 32px;
        line-height: 32px;
        -webkit-transform: scale(1.2, 1);
        transform: scale(1.2, 1);
    }

    .service_content_title_sub {
        font-size: 13px;
    }
}

@media screen and (min-width:1100px) {
    .service_title_eng {
        width: 1000px;
    }

    .service_title {
        width: 1000px;
    }

    .service_img {
        height: 31vw;
        width: 50%;
    }

    .service_img_sp-tablet {
        display: none;
    }

    .service_img_pc {
        display: block;
    }

    .service_01, .service_02, .service_03 {
        background: #f5f5f5;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
    }

    .service_content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0;
        height: 31vw;
        padding: 0 60px;
        width: 50%;
    }

    .service_content a.btn, button.btn {
        line-height: 48px;
        width: 200px;
    }

    .service_content_title {
        font-size: 26px;
        line-height: 26px;
    }

    .service_content_title_sub {
        margin: 16px 0;
    }

    .service_content_text {
        margin-bottom: 20px;
    }

    .service_02 .service_content_title {
        -webkit-transform-origin: right;
        transform-origin: right;
    }

    .service_02 .service_content_title,
    .service_02 .service_content_title_sub,
    .service_02 .service_content_text {
        text-align: right;
    }

    .service_01 .btn, .service_03 .btn {
        margin-left: 0;
    }
}

/* iPad縦(768px以上)*/
@media screen and (min-width:1920px) {
    .service_01, .service_02, .service_03 {
        margin: 0 auto;
        width: 1920px;
    }

    .service_img {
        height: 600px;
        width: 960px;
    }

    .service_content {
        height: 350px;
        padding: 146px 150px 104px 172px;
        width: 960px;
    }

    .service_content a.btn {
        line-height: 68px;
        width: 240px;
    }

    .service_content_title {
        font-size: 32px;
        line-height: 32px;
    }

    .service_content_text {
        font-size: 12px;
        letter-spacing: 0.16em;
        line-height: 30px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-bottom: 40px;
    }

    .service_content_title_sub {
        margin: 16px 0 38px;
    }
}

/****************************************
トップページ　infomation
****************************************/
.infomation {
    padding-top: calc(66px + 25px);
    /* ヘッダー高さ66px＋50px */
    margin: calc(-66px + 25px) auto 0;
    width: calc(100vw - 100px);
}

.infomation_title_eng {
    color: #c1c1c1;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 11px;
    margin: 0 auto;
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(1.1, 1);
    transform: scale(1.1, 1);
    width: calc(100vw - 100px);
}

.infomation_title {
    font-size: 16px;
    letter-spacing: 0.3em;
    line-height: 30px;
    margin: 6px auto 20px;
    width: calc(100vw - 100px);
}

.infomation a .infomation_item {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.infomation a:hover .infomation_item {
    opacity: 0.7;
}

.infomation_items {
    margin-top: -4px;
}

.infomation_item {
    border-bottom: 1px solid #1f1f1f;
    padding: 12px 0;
}

.infomation_item_date {
    background: #1f1f1f;
    color: #FFF;
    display: inline-block;
    font-size: 8px;
    font-weight: 600;
    height: 15px;
    letter-spacing: 0;
    line-height: 15px;
    margin-bottom: 8px;
    text-align: center;
    width: 65px;
}

.infomation_item_title {
    background: url("img/infomation_arrow.png") right / 3px 6px no-repeat;
    font-size: 10px;
    letter-spacing: 0.16em;
    line-height: 14px;
    padding-right: 20px;
}

a.infomation_btn {
    line-height: 50px;
    margin: 30px auto 0;
    width: 150px;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    .infomation {
        padding: 138px 0 0;
        /* ヘッダー高さ(-88px) + コンテンツ位置(100px)  */
        margin: calc(-88px + 50px) auto 0;
        width: 800px;
    }

    .infomation_title_eng {
        font-size: 13px;
        line-height: 13px;
        -webkit-transform-origin: center;
        transform-origin: center;
        text-align: center;
        width: 800px;
    }

    .infomation_title {
        font-size: 26px;
        line-height: 48px;
        margin: 16px auto 50px;
        text-align: center;
        width: 800px;
    }

    .infomation_items {
        margin-top: 24px;
    }

    .infomation_item {
        padding: 20px 28px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        vertical-align: middle;
    }

    .infomation_item_date {
        color: #FFF;
        font-size: 10px;
        height: 30px;
        letter-spacing: 0.14em;
        line-height: 30px;
        margin-bottom: 0px;
        margin-right: 60px;
        width: 94px;
    }

    .infomation_item_title {
        background: none;
        font-size: 12px;
        letter-spacing: 0.22em;
        line-height: 30px;
    }

    .infomation_arrow {
        -ms-flex-item-align: center;
        align-self: center;
        margin-left: auto;
    }

    a.infomation_btn {
        line-height: 70px;
        margin: 50px auto 0;
        width: 240px;
    }
}

/****************************************
トップページ　会社概要
****************************************/
#outline {
    padding-top: 66px;
    margin-top: calc(-66px + 50px);
}

.outline {
    background: url('img/kaisyagaiyo_photo-g.jpg') center center / cover no-repeat;
    color: #FFF;
    height: 133vw;
    margin: 0 auto;
    max-width: 1920px;
}

.outline_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 133vw;
    padding:20px;
    background-color: rgba(0,0,0,0.6);
}

.outline_title_eng {
    color: #FFF;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 11px;
    margin: 0 auto;
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(1.1, 1);
    transform: scale(1.1, 1);
    width: calc(100vw - 100px);
}

.outline_title {
    font-size: 16px;
    letter-spacing: 0.3em;
    line-height: 30px;
    margin: 6px auto 20px;
    width: calc(100vw - 100px);
}

.outline_table {
    margin: 0 auto;
    letter-spacing: 0.1em;
    line-height: 20px;
    width: calc(100vw - 100px);
}

.outline_table th {
    font-weight: 400;
    padding: 10px 0;
    white-space: nowrap;
}

.outline_table td {
    padding: 10px 0;
    text-align: right;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    #outline {
        padding-top: 88px;
        margin-top: calc(-88px + 100px);
    }

    .outline {
        background: url('img/kaisyagaiyo_photo-g.jpg') center center / cover no-repeat;
        color: #FFF;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        height: 800px;
        margin-bottom: 100px;
    }

    .outline_inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        height: auto;
        margin: 0 auto;
        width: calc(100vw - 100px);
    }

    .outline_title_eng {
        font-size: 13px;
        line-height: 13px;
        width: auto;
    }

    .outline_title {
        font-size: 26px;
        line-height: 48px;
        margin: 16px auto 50px;
        width: auto;
    }

    .outline_table {
        margin: -9px 0 0;
        width: auto;
    }

    .outline_table th {
        font-size: 12px;
        letter-spacing: 0.3em;
        line-height: 30px;
        padding: 0;
        text-align: right;
    }

    .outline_table td {
        font-size: 12px;
        letter-spacing: 0.3em;
        line-height: 30px;
        padding: 0 0 0 25px;
        text-align: left;
    }
}

@media screen and (min-width:1100px) {
    .outline_inner {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        width: 1000px;
    }

    .outline_title_wrap {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .outline_table {
        width: 667px;
    }

    .outline_table td {
        padding: 0 0 0 75px;
    }
}

/****************************************
contact
****************************************/
.contact {
    padding-top: calc(66px + 50px);
    /* ヘッダー高さ66px＋50px */
    /* margin: -66px auto 0; */
}

.contact_title_eng {
    color: #c1c1c1;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 11px;
    margin: 0 auto;
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scale(1.1, 1);
    transform: scale(1.1, 1);
    width: calc(100vw - 100px);
}

.contact_title {
    font-size: 16px;
    letter-spacing: 0.3em;
    line-height: 30px;
    margin: 6px auto 20px;
    width: calc(100vw - 100px);
}

.contact_text {
    letter-spacing: 0.2em;
    line-height: 20px;
    margin: 0 auto;
    width: calc(100vw - 100px);
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    .contact {
        padding-top: calc(88px + 50px);
        /* ヘッダー高さ66px＋50px */
        margin: -138px auto 0;
    }

    .contact_title_eng {
        font-size: 13px;
        line-height: 13px;
        -webkit-transform-origin: center;
        transform-origin: center;
        text-align: center;
        width: 800px;
    }

    .contact_title {
        font-size: 26px;
        line-height: 48px;
        margin: 16px auto 20px;
        text-align: center;
        width: 800px;
    }

    .contact_text {
        letter-spacing: 0.16em;
        line-height: 30px;
        margin: 0 auto;
        text-align: center;
    }
}

/****************************************
footer
****************************************/
.wrapper {
    min-height: calc(100vh - 200px);
}

.footer {
    background: #1f1f1f;
    height: 200px;
    margin-top: 110px;
    position: relative;
    text-align: center;
}

.pageTop {
    top: -60px;
    left: calc(50vw - 60px);
    position: absolute;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 120px;
}

.pageTop:hover {
    top: -62px;
}

.footer_logo {
    margin-top: 66px;
    width: 100px;
}

.footer_copyright {
    letter-spacing: 0.2em;
    margin-top: 46px;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    color: #FFF;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    .wrapper {
        min-height: calc(100vh - 280px - 138px - 138px);
    }

    .footer {
        height: 280px;
        margin-top: 138px;
    }

    .footer_logo {
        margin-top: 83px;
        width: 150px;
    }

    .footer_copyright {
        margin-top: 78px;
        -webkit-transform: scale(1, 0.9);
        transform: scale(1, 0.9);
    }
}

/****************************************
固定ページ
****************************************/
.page_wrap {
    margin-top: 66px;
}

.page_title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 20px;
    margin-top: 120px;
    text-align: center;
}

.page_title_eng {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 10px;
    margin-top: 15px;
    text-align: center;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
}

.page_vertical-line {
    background: #1f1f1f;
    height: 30px;
    margin: 15px auto 0;
    width: 1px;
}

.page_content_title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 13px;
    margin-top: 21px;
    -webkit-transform: scale(1.1, 1);
    transform: scale(1.1, 1);
    text-align: center;
}

.page_content_title_jp {
    font-size: 10px;
    font-weight: 500;
    line-height: 10px;
    margin-top: 6px;
    margin-bottom: 25px;
    text-align: center;
}

@media screen and (min-width:768px) {
    .page_wrap {
        margin-top: 90px;
    }

    .page_title {
        font-size: 40px;
        line-height: 40px;
        margin-top: 180px;
        text-align: center;
    }

    .page_title_eng {
        margin-top: 30px;
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    .page_vertical-line {
        height: 60px;
        margin: 30px auto 0;
    }

    .page_content_title {
        font-size: 26px;
        line-height: 26px;
        margin-top: 42px;
    }

    .page_content_title_jp {
        font-size: 12px;
        line-height: 12px;
        margin-bottom: 50px;
    }
}

/****************************************
固定ページ 企業理念
****************************************/
.core-value_content {
    margin-top: 43px;
}

.core-value_content_top {
    margin-top: 30px;
}

.core-value_content_number {
    display: block;
    height: 36px;
    margin: 0 auto;
    width: 49px;
}

.core-value_content_title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3em;
    line-height: 24px;
    margin-top: 17px;
    text-align: center;
}

.core-value_content_text {
    font-size: 10px;
    letter-spacing: 0.16em;
    line-height: 24px;
    margin: 9px auto 0;
    text-align: justify;
    text-justify: inter-ideograph;
    width: calc(100vw - 100px);
}

.principle {
    margin-top: 30px;
}

.horizontal-line {
    border-top: 1px solid #1f1f1f;
    margin: 0 auto;
    width: calc(100vw - 100px);
}

.greeting {
    margin-top: 45px;
}

.greeting .page_content_title {
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    /*text-align: left;*/
    /*-webkit-transform-origin: left;*/
    /*transform-origin: left;*/
    width: calc(100vw - 100px);
}

.greeting .page_content_title_jp {
    margin-left: auto;
    margin-right: auto;
    /*text-align: left;*/
    width: calc(100vw - 100px);
}

.greeting .core-value_content_title {
    margin-left: auto;
    margin-right: auto;
    /*text-align: left;*/
    width: calc(100vw - 100px);
}

.greeting_text {
    font-size: 10px;
    letter-spacing: 0.16em;
    line-height: 24px;
    margin: 19px auto 0;
    text-align: justify;
    text-justify: inter-ideograph;
    width: calc(100vw - 100px);
}

.greeting_signature {
    text-align: right;
}

@media screen and (min-width:768px) {
    .core-value_content {
        margin-top: 90px;
    }

    .core-value_content_top {
        margin-top: 58px;
    }

    .principle {
        margin-top: 48px;
    }

    .principle .core-value_content {
        margin-top: 50px;
    }

    .core-value_content_number {
        height: 72px;
        margin: 0 auto;
        width: 98px;
    }

    .core-value_content_title {
        font-size: 26px;
        line-height: 48px;
        margin-top: 23px;
    }

    .core-value_content_text {
        font-size: 15px;
        line-height: 36px;
        margin: 18px auto 0;
    }

    .principle .core-value_content_text {
        margin: 30px auto 0;
    }

    .greeting {
        margin-top: 90px;
    }

    .greeting .page_content_title {
        margin-top: 74px;
    }

    .greeting .page_content_title_jp {
        margin-bottom: 26px;
    }

    .greeting_text {
        font-size: 15px;
        line-height: 36px;
        margin-top: 38px;
    }

}

@media screen and (min-width:1100px) {
    .core-value_content_text {
        width: 1000px;
    }

    .horizontal-line {
        width: 1000px;
    }

    .greeting .page_content_title {
        width: 1000px;
    }

    .greeting .page_content_title_jp {
        width: 1000px;
    }

    .greeting .core-value_content_title {
        width: 1000px;
    }

    .greeting_text {
        width: 1000px;
    }
}

/****************************************
単一投稿ページ
****************************************/
.single_wrap {
    margin-top: 66px;
}

.singleContents {
    display: block;
    padding: 0 30px;
}

.title_eng_wrapper .title_eng {
    margin-top: 42px;
}

.singleContents_date {
    color: #1f1f1f;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.14em;
    line-height: 10px;
    margin-top: 38px;
}

.singleContents_title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 20px;
    margin-top: 4px;
}

hr.singleContents_hr {
    border-top: 1px solid #dfdfdf;
    margin: 20px 0 24px;
}

.singleContents_content {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 27px;
}

.singleContents_content img {
    height: auto;
    margin-bottom: 12px;
    max-width: 100%;
}

.singleContents_content p {
    margin-bottom: 28px;
}

.singleContents_content strong {
    color: #1f1f1f;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0.1em;
}

.singleContents_button {
    display: block;
    height: 40px;
    line-height: 40px;
    margin: 40px auto 50px;
    width: 270px;
}

.single .footer_contact {
    margin-top: -96px;
}

a.single_btn {
    display: block;
    margin: 0 auto;
}

.single-post .single_wrap a {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.single-post .single_wrap a:hover {
    opacity: 0.7;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    .title_eng_wrapper .title_eng {
        margin-top: 90px;
    }

    .single_wrap {
        margin-top: 138px;
    }

    .singleContents {
        margin: 0 auto;
        width: 800px;
    }

    .singleContents_date {
        margin-top: 24px;
    }

    .singleContents_title {
        font-size: 16px;
        letter-spacing: 0.22em;
        line-height: 28px;
    }

    hr.singleContents_hr {
        margin: 32px auto 50px;
        margin: 32px auto;
        width: 800px;
    }

    .singleContents_content {
        letter-spacing: 0.3em;
        line-height: 28px;
        /*	margin-top: 50px; */
    }

    .singleContents_content img {
        margin-top: 16px;
        margin-bottom: 30px;
    }

    .singleContents_content strong {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: 0.3em;
    }

    hr.singleContents_hr_bottom {
        margin: 62px auto 80px;
    }

    .singleContents_button {
        height: 60px;
        line-height: 60px;
        width: 540px;
    }
}

/****************************************
投稿アーカイブ
****************************************/
.infomation_wrap {
    margin-top: 0;
}

.infomation_btn_wrapper {
    margin-top: 30px;
    text-align: center;
}

.infomation_btn_wrapper button.btn {
    display: inline-block;
    margin: 7px;
    width: 130px;
}

.blog .footer_contact {
    margin-top: -50px;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    .infomation_btn_wrapper {
        margin-top: 60px;
    }

    .infomation_btn_wrapper .button {
        margin: 0 17px;
        width: 260px;
    }
}

/****************************************
送信フォーム
****************************************/
form table {
    font-size: 12px;
    margin: 60px auto 25px;
    vertical-align: middle;
    width: 84%;
    /* IE8以下とAndroid4.3以下用フォールバック */
    width: calc(100vw - 100px);
}

form table th {
    /*width: 100%; */
    color: #1f1f1f;
    display: block;
    font-size: 12px;
    line-height: 30px;
    padding-bottom: 8px;
    text-align: left;
    vertical-align: top;
    width: 100%;
}

form table td {
    color: #1f1f1f;
    display: inline-block;
    padding-bottom: 20px;
    height: 50px;
    text-align: left;
    line-height: 30px;
    width: 100%;
}

.required {
    color: #1f1f1f;
    font-size: 10px;
    border: 1px solid #1f1f1f;
    border-radius: 20px;
    padding: 4px 12px;
    letter-spacing: 0.06em;
    margin-left: 10px;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
    font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
    /*	width: 520px; */
    height: 50px;
    border: 1px solid #b3b3b3;
    font-size: 9px;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 0.2em;
    width: 88%;
    /* IE8以下とAndroid4.3以下用フォールバック */
    width: calc(100% - 40px);
}

:placeholder-shown {
    color: #b3b3b3;
    font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
    font-weight: normal;
    letter-spacing: 0.2em;
    font-size: 9px;
    line-height: 19px;
    position: relative;
}

::-webkit-input-placeholder {
    color: #b3b3b3;
    font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
    font-weight: normal;
    letter-spacing: 0.2em;
    font-size: 9px;
    line-height: 19px;
    position: relative;
}

:-ms-input-placeholder {
    color: #b3b3b3;
    font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
    font-weight: normal;
    letter-spacing: 0.2em;
    font-size: 9px;
    line-height: 19px;
    position: relative;
}

:-moz-placeholder {
    color: #b3b3b3;
    font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
    font-weight: normal;
    letter-spacing: 0.2em;
    font-size: 9px;
    line-height: 19px;
    position: relative;
}

input[type="radio"] {
    display: none;
    vertical-arign: middle;
}

input[type="radio"]+span {
    padding-left: 30px;
    position: relative;
    margin-right: 50px;
    color: #1f1f1f;
    font-weight: normal;
}

input[type="radio"]+span::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    border: 3px solid #1f1f1f;
    border-radius: 50%;
}

input[type="radio"]:checked+span::after {
    content: "";
    display: block;
    position: absolute;
    top: 7px;
    left: 7px;
    width: 7px;
    height: 7px;
    background: #1f1f1f;
    border-radius: 50%;
}

span.wpcf7-list-item {
    margin: 0 !important;
}

.wpcf7-radio .wpcf7-list-item {
    display: block;
}

select {
    background: #FFF;
    border: 1px solid #1f1f1f;
    height: 50px;
    color: #1f1f1f;
    font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
    font-weight: normal;
    letter-spacing: 0.15em;
    font-size: 13px;
    line-height: 150%;
    padding-left: 20px;
    padding-right: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("img/select_icon.png");
    background-repeat: no-repeat;
    background-position: right 50%;
    background-position: right 16px center;
}

select option {
    color: #1f1f1f;
}

textarea {
    border: 1px solid #b3b3b3;
    color: #1f1f1f;
    font-family: 'Noto Sans Japanese', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "游ゴシック", "游ゴシック体", "Yu Gothic", YuGothic, verdana, "メイリオ", "Meiryo", "Osaka", sans-serif;
    font-size: 12px;
    height: 160px;
    letter-spacing: 0.2em;
    line-height: 28px;
    padding: 20px;
    width: 88%;
    /* IE8以下とAndroid4.3以下用フォールバック */
    width: calc(100% - 40px);
}

span.wpcf7-not-valid-tip {
    /* 未入力アラート */
    font-size: 13px !important;
    font-family: 'Noto Sans Japanese', sans-serif;
    padding-bottom: 10px;
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    /* アラート */
    border: none !important;
    color: #F00;
}

div.wpcf7-response-output {
    /* 送信ボタン下メッセージ */
    text-align: center;
    padding: 20px auto;
    line-height: 150%;
}

input[type="submit"] {
    display: block;
    width: 350px;
    max-width: 90%;
    height: 60px;
    margin: 0 auto;
    background: #000;
    border: none;
    color: #FFF;
    font-size: 14px;
    font-family: 'Noto Sans Japanese', sans-serif;
    font-weight: 700;
    letter-spacing: 0.15em;
    border-radius: 6px;
    border: 3px solid #000;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    outline: 0;
}

div.wpcf7-mail-sent-ok {
    /* 送信後メッセージ */
    border: none !important;
}

form.sent table,
form.sent p {
    /* 送信後フォームを非表示 */
    display: none;
}

/* iPad縦(768px以上)*/
@media screen and (min-width:768px) {
    form table {
        margin: 52px auto 10px;
        width: 800px;
    }

    form table th {
        display: table-cell;
        width: 200px;
        padding-top: 10px;
        padding-bottom: 0;
    }

    form table td {
        display: table-cell;
        vertical-align: middle;
        width: 600px;
    }

    .required {
        font-size: 11px;
        letter-spacing: 0;
        padding: 2px 12px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        font-size: 12px;
        padding-left: 40px;
        padding-right: 40px;
        width: 520px;
    }

    :placeholder-shown {
        font-size: 12px;
        line-height: 28px;
    }

    ::-webkit-input-placeholder {
        font-size: 12px;
        line-height: 28px;
    }

    :-ms-input-placeholder {
        font-size: 12px;
        line-height: 28px;
    }

    :-moz-placeholder {
        font-size: 12px;
        line-height: 28px;
    }

    .wpcf7-radio .wpcf7-list-item {
        display: inline-block;
    }

    textarea {
        padding-left: 40px;
        padding-right: 40px;
        height: 260px;
        width: 520px;
    }
}
