@charset "UTF-8";
/*==========================
共通
===========================*/
* {
    box-sizing: border-box;
}
body {
    font-family: 'Noto Sans SC', sans-serif;
    background-color: #fff;
    color: #555;
    line-height: 2.1;
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size: 15px;
}
.en {
    font-family: 'Raleway', sans-serif;
}
a:link {
    color: #000;
    transition: 0.6s;
    text-decoration: none;
}
a:visited {
    color: #000;
}
a:hover {
    color: #1C8AC7;
    transition: 0.3s;
}
a:active {
    color: #000;
}
img {
    display: block;
}
.small {
    font-size: 0.8em;
}
.pc_only {
    display: block;
}
.sp_only {
    display: none;
}
.xsp_only {
    display: none;
}
.t_r {
    text-align: right;
}
.t_l {
    text-align: left;
}
.bold {
    font-weight: 600;
}
.t_c {
    text-align: center;
}
.pd2 {
    padding: 2em 0;
}
.pb1 {
    padding-bottom: 1em;
}
.pb2 {
    padding-bottom: 2em;
}
.pb3 {
    padding-bottom: 3em;
}
.od1 {
    order: 1;
}
.od2 {
    order: 2;
}
.white {
    color: #fff;
}
.black {
    color: #000;
}
.size_up {
    font-size: 1.4em;
}
.size_down {
    font-size: 0.7em;
    font-weight: 400;
}
h2 {
    font-size: 24px;
    font-weight: 600;
}
h3 {
    font-size: 18px;
    font-weight: 600;
}
.w75 {
    width: 75%;
    margin: 0 auto;
    padding-bottom: 3em;
}

@media screen and (max-width: 960px) {
.pc_only {
    display: none;
}
.sp_only {
    display: block;
}
.xsp_only {
    display: none;
}
img {
    max-width: 100%;
}
}

@media screen and (max-width: 768px) {
.t_r {
    text-align: center;
}
.t_l {
    text-align: center;
}
h2 {
    font-size: 20px;
}
}

@media screen and (max-width: 480px) {
body {
    font-weight: 500;
}
.xsp_only {
    display: block;
}
.sp_only_i {
    display: none;
}
.size_up {
    font-size: 1.3em;
}
.w75 {
    width: 85%;
    margin: 0 auto;
    padding-bottom: 2em;
}
}
/*==========================
レイアウト
===========================*/
.container {
    max-width: 1280px;
    margin: 0 auto;
}

@media screen and (max-width: 960px) {
.container {
    width: 100%;
    padding: 0 3%;
}
}
/*==========================
ヘッダー
===========================*/
#header_group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav {
    display: block;
}
.logo img {
    height: 100px;
    padding: 5% 0 5% 10%;
}
header nav ul {
    display: flex;
    align-items: center;
    -webkit-align-items: center;
    font-size: 16px;
    font-weight: 600;
    margin-left: auto;
    margin-top: 8px;
	margin-bottom: 0;
}
header nav ul li {
    padding: 0 1.8em;
}
header nav .lang a {
    color: #1C8AC7;
    border: 2px solid #1C8AC7;
    border-radius: 4px;
    padding: 0.4em 1em;
    margin: 3% auto;
    line-height: 1;
}
header nav .lang a:hover {
    color: #fff;
    background-color: #1C8AC7;
}

@media screen and (max-width: 1100px) {
header nav ul li {
    font-size: 0.9em;
    padding: 1.4em;
}
}

@media screen and (max-width: 960px) {
.logo img {
    height: 20vw;
    max-height: 100px;
}
}

/*ハンバーガーメニュー*/
@media screen and (max-width: 960px) {
/*メニュー部分*/ nav {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.95);
    left: 0;
    z-index: 10;
}
header nav ul {
    display: block;
    width: 75%;
    height: 80%;
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
}
header nav ul li {
    margin: 0 auto;
    text-align: center;
    padding: 1em;
    font-size: 1em;
}
header nav ul li:last-child {
    border: none;
}
header nav ul li a {
    display: block;
    color: #006598;
}
}

@media screen and (max-width: 960px) {
/*開閉ボタン*/ #nav_toggle {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    top: 4px;
    z-index: 100;
    margin: 1% 6% 0;
}
#nav_toggle div {
    position: relative;
}
#nav_toggle span {
    display: block;
    height: 3px;
    background: #1C8AC7;
    position: absolute;
    width: 100%;
    left: 0;
    transition: 0.5s ease-in-out;
}
#nav_toggle span:nth-child(1) {
    top: 0px;
}
#nav_toggle span:nth-child(2) {
    top: 12px;
}
#nav_toggle span:nth-child(3) {
    top: 24px;
}
/*開閉ボタンopen時*/
.open #nav_toggle span:nth-child(1) {
    top: 12px;
    transform: rotate(135deg);
}
.open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}
.open #nav_toggle span:nth-child(3) {
    top: 12px;
    transform: rotate(-135deg);
}
}
/*==========================
タイトル
===========================*/
#mainVisual .fv {
    background: url("img/fv_contact.jpg") no-repeat;
    background-position: 50% 25%;
    background-size: cover;
    height: 400px;
    position: relative;
}
#mainVisual .fv .key {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(-45deg, #fff 25%, transparent 25%, transparent 50%, #fff 50%, #fff 75%, transparent 75%, transparent), rgba(255,255,255,0.5);
    background-size: 3px 3px;
}
#mainVisual .fv .key img {
    margin: 2em auto;
    height: 40px;
}
#mainVisual .title {
    margin: 3em auto;
    text-align: center;
}
#mainVisual .title h1 {
    font-size: 28px;
    color: #000;
    font-weight: 600;
}

@media screen and (max-width: 480px) {
#mainVisual .fv {
    height: 250px;
}
#mainVisual .fv .key img {
    margin: 1em auto;
    width: 40%;
}
#mainVisual .title {
    margin: 2em auto;
}
#mainVisual .title h1 {
    font-size: 24px;
}
}
/*==========================
切り替えボタン

.btn-group {
    width: 100%;
    text-align: center;
}

.select {
    background-color: transparent;
    border: 5px solid #0ABC77;
    cursor: pointer;
    outline: none;
    padding: 7%;
    font-size: 24px;
    font-weight: 500;
    color: #0ABC77;
    margin: 1% 5% 3em;
    transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
}

.select:hover {
    background-color: #0ABC77;
    color: #fff;
}

@media screen and (max-width: 480px) {
    .select {
        border: 3px solid #0ABC77;
        padding: 7%;
        font-size: 18px;
        font-weight: 600;
    }
}
===========================*/

/*==========================
フォーム関連
===========================*/
#contact, #contact2 {
    color: #000;
    font-weight: 500;
}
#contact h2 img, #contact2 h2 img {
    margin: 1em auto;
    height: 100px;
}
#contact .thank, #contact2 .thank {
    text-align: center;
    font-size: 16px;
    color: #000;
    margin: 1em 0 3em;
}
#contact .form, #contact2 .form {
    padding: 5% 5% 3%;
    background-color: #fff;
    margin-bottom: 5em;
    filter: drop-shadow(3px 3px 20px rgba(0, 0, 0, 0.1));
}
.form-horizontal .control-label {
    font-size: 16px;
}
#contact .mailform .control-label, #contact2 .mailform .control-label {
    line-height: 2.8em;
    padding-top: 0;
}
.radio, .checkbox {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
}
.radio label, .checkbox label {
    min-height: 20px;
    padding-left: 3em;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}
.mailform .control-label span {
    color: #e6358d;
    display: inline-block;
    position: relative;
    top: 0.2em;
}
.has-error .message {
    display: block!important;
}
.form-control {
    width: 100%;
    border: 1px solid #CDD6DD;
    padding: 0.6em 0.8em;
    height: auto;
    font-size: inherit;
    line-height: inherit;
    cursor: default;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 400;
    color: #000;
}
.label-danger {
    background-color: #1C8AC7;
    text-align: center;
    padding: 3px 10px;
    margin-left: 2em;
}
.label-primary {
    background-color: #ccc;
    text-align: center;
    padding: 3px 10px;
    margin-left: 2em;
}
p.offer {
    margin-top: 20px;
}
.btn-lg, .btn-group-lg>.btn {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.33;
    display: inherit;
    padding: 1em 5em;
    margin: 2em auto 1em;
    text-decoration: none;
    background: #1C8AC7;
    color: #FFF;
    border: none;
    transition: filter 0.4s ease-in-out;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary {
    color: #fff;
    background: #1C8AC7;
    filter: brightness(115%);
}
textarea.form-control {
    height: 15vw;
    min-height: 150px;
}
.agree {
    text-align: center;
    margin: 0;
    font-size: 0.8em;
    color: #555;
}
/* 確認画面 */
.modal .mailform {
    max-width: none;
}
.form-control[readonly] {
    border: none;
    padding: 0.5em;
    width: 100%!important;
    cursor: default;
    outline: none;
    font-size: 1em;
}
.form-control[readonly]:focus {
    box-shadow: none;
}
.modal-header {
    min-height: 16.43px;
    padding: 20px 0 3px;
    margin: 0 15px 10px;
    border-bottom: 3px solid #1C8AC7;
}
.modal-footer {
    text-align: center;
    border: none;
    padding: 3px 5px 15px;
}
.modal-footer .btn {
    width: 45%;
    display: inline-block;
}
.modal-title {
    line-height: 2em;
    text-align: center;
    font-size: 1.5em;
}
.modal-body {
    position: relative;
    padding: 15px;
}
.form-group {
    margin-bottom: 20px;
}
.modal-body .form-group {
    margin-bottom: 10px;
}
.modal-footer .btn {
    padding: 1.8% 0;
    font-size: 1.2em;
    transition: 0.3s;
}
.btn-primary {
    color: #fff;
    background-color: #1C8AC7;
    border: none;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.modal-footer .btn+.btn {
    margin-bottom: 0;
    margin: 0 2%;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
#contact h2 img, #contact2 h2 img {
    height: 15vw;
    max-height: 100px;
}
#contact .form, #contact2 .form {
    padding: 5%;
    margin-bottom: 2em;
    font-size: 16px;
}
#contact .container, #contact2 .container {
    padding: 0%;
}
.modal-header {
    margin: 0 15px;
    border-bottom: 2px solid #1C8AC7;
}
.modal-footer .btn {
    padding: 3% 0;
    font-size: 1.1em;
}
.modal-title {
    text-align: left;
}
.modal-body {
    position: relative;
    padding: 10px 15px;
}
}
/*==========================
個人情報保護方針
===========================*/
#privacy {
    padding: 1em 0 5em;
    line-height: 2.4;
    font-weight: 400;
}
#privacy h2 {
    text-align: center;
    padding-bottom: 1em;
}
#privacy dt {
    display: list-item;
    list-style-position: inside;
    list-style-type: square;
    line-height: 2.4;
}
#privacy dd {
    padding-bottom: 1em;
    line-height: 2.4;
}
#privacy ul {
    list-style-position: inside;
    list-style-type: disc;
}
/*==========================
フッター
===========================*/
footer {
    color: #fff;
    font-size: 13px;
    background: url("../common/img/logo_w.svg") no-repeat bottom 60px right 20px, #3B4043;
    background-size: 100px auto;
}
footer a:link {
    color: #fff;
}
footer a:visited {
    color: #fff;
}
footer a:hover {
    color: #1C8AC7;
    transition: 0.3s;
}
footer a:active {
    color: #fff;
}
footer .footer_group {
    display: flex;
    padding: 4em 5em 9em;
    margin-right: 2em;
    margin: 0 auto;
}
footer .company {
    padding-right: 7%;
}
footer .company .comp {
    font-size: 13px;
    font-weight: 600;
    line-height: 3;
}
footer .company p {
    line-height: 2;
}
footer .footer_nav {
    margin: 0 auto;
}
footer .footer_nav li span {
    line-height: 3;
    font-weight: 600;
}
footer .copy p {
    text-align: center;
    border-top: 1px solid #707070;
    padding: 1em;
    margin: 0;
    vertical-align: bottom;
    font-size: 10px;
}
footer .fa {
    width: 36px;
    font-size: 22px;
    padding-top: 0.8em;
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
footer .footer_group {
    display: block;
    padding: 2em 2em;
}
footer .company {
    padding: 0 0 2em 0;
}
footer .footer_nav {
    float: left;
    width: 38%;
    margin-bottom: 2em;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
}

@media screen and (max-width: 480px) {
footer .footer_group {
    display: block;
    padding: 2em 2em;
}
footer .company {
    padding: 0 0 2em 0;
}
footer .footer_nav {
    float: none;
    width: auto;
    margin-bottom: 1em;
}
footer .fa {
    padding-top: 1em;
}
}
