@charset "utf-8";

/* google-fontを使いたい時には有効化 */
/* @import url('https://fonts.googleapis.com/*'); */



/*******************************************************************
 *                ↓ リセットcss:デフォルトcss設定を削除 ↓              *
*******************************************************************/
h1,
h2,
h3,
p,
ul,
li,
figure,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* リンクの下線を消して文字の色を変えてる */
a {
    text-decoration: none;
    color: #000;
}

/* リンクの上にマウスが来た時の動作 */
a:hover {}

/*頭の黒ちょぼとるやつ*/
ul {
    list-style-type: none;
}

/*clearfixでfloatによる回り込みを解除*/
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/*******************************************************************
 *                ↑ リセットcss:デフォルトcss設定を削除 ↑              *
*******************************************************************/

/*******************************************************************
 *                ↓ ヘッダーナビゲーションの設定等 ↓        　　　      *
*******************************************************************/


/* bodyが基準となる様にしてる */
body {
    position: relative;
}

/*
 headerがposition: fixedでスクロールしても位置が固定される。上のラインの太さと色、背景色等を設定
 z-indexはボックスの重なりの優先順位(スタックレベル)を指定するプロパティです。
値は整数で入力し、大きい数値のものほど手前に表示されます。
*/
header {
    border-top: 10px solid #ff44bd;
    position: fixed;
    background: #fff;
    top: 0;
    z-index: 1000;
}

#wrap,
header {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
}


/* headerの水平実線の色、太さを指定 */
.up-header,
.do-header {
    border-bottom: 1px solid #999;
}

/* headerの高さとフロートレフト */
.up-header li,
.do-header li {
    height: 65px;
    float: left;
}

/* header会社名の文字の大きさ位置調整 */
.up-header #logo {
    height: 100%;
    font-size: 40px;
    margin-left: 50px;
    margin-right: 23px;
    padding: 3px 0 8px 0;
}

/* header画像の大きさ位置調整 */
.up-header #logo img {
    width: 35px;
    vertical-align: -10px;
    margin-right: 20px;
}

/* header歌い文句の文字の大きさ位置調整＋左のライン */
.up-header #en {
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 0 23px;
    margin: 24px auto;
    border-left: 2px solid #999;
}

/* header営業案内の文字の大きさ位置調整＋左のライン */
.up-header #business {
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 2px 23px;
    margin: 10px auto;
    background-color: #ffb600;
    /* 面取り */
    border-radius: 10px;
    box-shadow: 1px 1px 7px #aaa;
}


/* headerの左右のライン等 */
.do-header li {
    font-weight: bold;
    text-align: center;
    border-left: 1px solid #999;
    border-right: 1px solid #999;
}

/* headerの幅や文字の位置等 */
.do-header li a {
    display: block;
    padding: 21px 30px;
}

/* headerの上にマウスポインターが来た時の色の変更 */
.do-header li a:hover {
    color: #fff;
    background-color: #999;
}

.do-header li:first-child {
    border-left: none;
}

/* headerの選ばれてるページの色付け */
#menu-color {
    background-color: #fff4bd;
}


/* 001:headerのfixedで空いたスペースに潜り込ませないために空白作成 */
.header-Separated {
    height: 140px;
}

/*******************************************************************
 *                ↑ ヘッダーナビゲーションの設定等 ↑        　　　      *
*******************************************************************/
/*******************************************************************
 *     　　           ↓ スライドショーの設定等 ↓   　　     　　　      *
*******************************************************************/

/* 外側のボックスの装飾 */
#slideshow {
    position: relative;
    width: 1100px;
    /* ボックスの横幅 */
    height: 560px;
    /* ボックスの高さ */
}

#slideshow p {
    position: absolute;
    top: 70;
    left: 0;
    z-index: 8;
    opacity: 0.0;
    margin: 0;
    background-color: white;
    /* ボックスの背景色(必須) */
    height: 427px;
    /* ボックスの高さ */

}

#slideshow p.active {
    z-index: 10;
    opacity: 1.0;
}

#slideshow p.last-active {
    z-index: 9;
}

/* スライドショーの大きさを設定 */
#slideshow p img {
    width: 1100px;
    /* 画像の横幅 */
    height: 560px;
    /* 画像の高さ */
    display: block;
    border: 0;
    margin-bottom: 20px;
    /* 画像下部の余白 */
}

h4 {
    height: 60px;
    text-align: center;
    margin: 0;
    width: 100%;
    font-size: 18px;
    max-width: 1100px;

}

/*******************************************************************
 *     　　           ↑ スライドショーの設定等 ↑   　　     　　　      *
*******************************************************************/
/*******************************************************************
 *                        ↓ フッターの設定等 ↓        　　　          *
*******************************************************************/

.copyright {
    background-color: #ff44bd;
    text-align: center;
    margin: 0 auto;
    padding: 15px 0 20px;
    width: 1100px;
}

.copyright small {
    font-weight: bold;
    color: #fff;
}

.copyright a {
    font-size: 10px;
    padding: 1px 8px;
    margin: 5px;
    color: #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

/*******************************************************************
 *                        ↑ フッターの設定等 ↑        　　　          *
*******************************************************************/

/*******************************************************************
 *                     ↓ よくある質問の設定等 ↓                       *
*******************************************************************/
/*h1の設定*/
.question {
    background color: #ff93d7;
    margin-top: 40px;
    padding: 10px;
    color: brown;
}


/*ボックス全体の最大幅を決めてる*/
.accbox {
    margin: 2em 0;
    padding: 0;
    max-width: 800px;
    /*最大幅*/
}

/*ラベル1つ1つのデザインを変えてる*/
.accbox label {
    display: block;
    margin: 1.5px 0;
    padding: 13px 12px;
    color: #f74e00;
    font-weight: bold;
    background: #fff2cc;
    cursor: pointer;
    transition: all 0.5s;
}

/*アイコンを表示*/
.accbox label::before {
    content: '\025b7';
    padding-right: 8px;
}

/*ラベルホバー時*/
.accbox label:hover {
    background: #ffe9a9;
}

/*答えのチェックボックスを隠してる*/
.accbox input {
    display: none;
}

/*中身を非表示にしておく*/
.accbox .accshow {
    height: 0;
    /*高さを0に*/
    padding: 0;
    /*余白を0に*/
    overflow: hidden;
    /*非表示に*/
    opacity: 0;
    /*中身を透明に*/
    transition: 0.8s;
    /*クリック時の動きを滑らかに*/
}

/*クリックで中身表示*/
.cssacc:checked + label + .accshow {
    height: auto;
    padding: 5px;
    background: #b9faff;
    opacity: 1;
}

.accbox .accshow p {
    margin: 15px 10px
}

/*アイコンを入れ替える*/
.cssacc:checked + label::before {
    content: '\025bd';
}

/*******************************************************************
 *                     ↑ よくある質問の設定等 ↑                       *
*******************************************************************/
/*******************************************************************
 *                     ↓ 会社概要 - corp-prof ↓                     *
*******************************************************************/
.corp-prof-ses {
    width: 900px;
    text-align: center;
    margin: 0 auto;
}

.corp-prof-ses theader {
    display: block;
    text-align: right;
    padding: 1.5rem 0;
}

.corp-prof-tab {
    border-collapse: collapse;
}

.corp-prof-tab,
.corp-prof-tab th,
.corp-prof-tab td {
    border: 1px solid #999;
}


.corp-prof-tab th,
.corp-prof-tab td {
    padding: 14px 15px 16px;
    text-align: left;
}

.corp-prof-tab {
    width: 100%;
}

.corp-prof-tab th {
    width: 25%;
    background-color: #ffe7ef;
}

.corp-prof-tab td {
    width: 75%;
}

/* 会社概要のマップの設定 */
.map {
    height: 0;
    overflow: hidden;
    position: relative;
    padding-top: 56.25%;
}

.map iframe {
    position: absolute;
    top: 50px;
    left: 100px;
    width: 80% !important;
    height: 80% !important;
}

/*******************************************************************
 *                     ↑ 会社概要 - corp-prof ↑                     *
*******************************************************************/
/*******************************************************************
 *                     ↓ お問い合わせ ↓                              *
*******************************************************************/
.contact {
    text-align: center;
    margin: auto;
}

.contact h1 {
    padding: 80px 0 0 0;
}

.contactbotton {
    padding: 20px 130px;
}
.contactbotton #botton {
    width: 100%;
    max-width: 300px;
    float: left;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    padding: 2px 20px;
    margin: 30px;
    background-color: #ffb600;
    /* 面取り */
    border-radius: 100px;
    box-shadow: 1px 1px 7px #aaa;
}

/* の幅や文字の位置等 */
#botton a {
    display: block;
}

.emphasis {
    font-size: 20px;
}

/*******************************************************************
 *                     ↑ お問い合わせ ↑                              *
*******************************************************************/
/*******************************************************************
 *                     ↓ 社長メッセージ ↓                            *
*******************************************************************/
.messagebody article {
    padding: 20px;
}

.message {
    float: left;
}

.messagebody h1 {
    font-size: 2.5vw;
}

.messagebody h2 {
    font-size: 2vw;
}

/* 空いたスペースに潜り込ませないために空白作成 */
.message-Separated {
    height: 50px;
}

/*******************************************************************
 *                     ↑ 社長メッセージ ↑                            *
*******************************************************************/
/*******************************************************************
 *                     ↓ プライバシー ↓                            *
*******************************************************************/

.policy {
    padding: 20px;
    background-color: azure;
}

#privacy h3 {
    padding: 15px;
    background-color: beige;
}

#privacy p {
    padding: 0 8px;
    background-color: blanchedalmond;
}

#privacy ul {
    padding: 20px 8px;
    background-color: #fff0aa;
}

/*******************************************************************
 *                     ↑ プライバシー ↑                            *
*******************************************************************/