/*
top.css
TOPページに適用するCSS
*/

/* ―――――――――――――― 共通 ―――――――――――――― */

/* 各コンテンツを格納するdiv要素 */
.con_box {
    margin: 0 auto;
    padding: 80px 0;
    width: 900px;
}

/* ―――――――――――――― TOP ―――――――――――――― */

/* ヘッダー背景 */
.header_base {
    height: 10px;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .35), rgba(0, 0, 0, .0));
}

/* ヘッダー */
.header_1 {
    position: fixed;
    top: 0; 
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    transition: 0.3s ease-in-out;
    background-color: transparent;
    z-index: 999;
}

/* ヘッダー（ゴースト） */
.ghostheader {
    height: 50px;
    background-color: rgb(255, 255, 255);
    transition: 0.3s ease-in-out;
}

/* ヘッダーメニューボタン */
.header_1 .menu .menubutton {
    margin: 0 0 0 20px;
    cursor: pointer;
    width: auto;
    height: 40px;
    padding: 0 16px;
    text-align: center;
    line-height: 40px;
      -moz-border-radius: 4px;
      -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: transparent;
    transition: 0.3s ease-in-out;
}
.header_1 .menu .menu.spmenu { display: none; }

/* TOPのイメージ */
.top_image {
    position:relative;
    height: 560px;
    min-height: 100%;
    background: transparent;
    background: dimgray url("../images/top.jpg") no-repeat;
    background-blend-mode: multiply;
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
}

/* TOPのキャッチコピー */
.top_image div.catch_copy {
    margin: 110px auto;
    width: 860px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    font-family: 'Noto Sans JP';
    letter-spacing: 4px;
    text-align: center;
    text-shadow: 0px 0px 6px black;
    line-height: 400%;
}

/* キャッチコピーのサイズ（SS） */
.top_image div.catch_copy .ss {
    font-size: 16px;
    font-weight: 300;
    line-height: 300%;
}

/* キャッチコピーのサイズ（S） */
.top_image div.catch_copy .s {
    font-size: 21px;
    font-weight: 500;
    line-height: 300%;
}

/* キャッチコピーのサイズ（M） */
.top_image div.catch_copy .m {
    font-size: 24px;
    font-weight: 600;
}

/* キャッチコピーのサイズ（L） */
.top_image div.catch_copy .l {
    font-size: 26px;
    font-weight: 700;
}

/* キャッチコピーのサイズ（LL） */
.top_image div.catch_copy .ll {
    font-size: 30px;
    font-weight: 900;
}

/* ―――――――――――――― Information ―――――――――――――― */

/* インフォボックス */
.info_box {
    height: 70px;
    width: 600px;
    margin: 0 auto;
    padding: 20px 30px;
    border: solid 1px;
    border-color: lightgray;
    border-radius: 3px;
    overflow: auto;
}

/* インフォボックス内のコンテンツ */
.info_list {
    float: left;
    width: 600px;
    font-size: 14px;
    font-weight: normal;
}

/* インフォボックス内のお知らせページへのリンク */
.info_page_link {
    float: right;
    font-size: 14px;
    font-weight: normal;
}

/* 各お知らせ行 */
.info_list div {
    line-height: 200%;
}

/* 最新のお知らせの前にアイコン */
.info_list div:first-child:before {
    font-family: "Font Awesome 5 Free";
    content: "\f069";
    font-size: 12px;
    font-weight: 900;
    color: firebrick;
}

/* お知らせの前にアイコン */
.info_list div:before {
    font-family: "Font Awesome 5 Free";
    content: " \f105  ";
    font-size: 12px;
    font-weight: 900;
    white-space: pre;
}

/* リンク付きのお知らせの後にアイコン */
a.info_title:after {
    font-family: "Font Awesome 5 Free";
    content: " \f2d2";
    font-size: 12px;
}

/* インフォボックス内の日付 */
.info_date {
    font-size: 12px;
    color: gray;
}

/* ―――――――――――――― Service ―――――――――――――― */

/* サービスのBOX */
.service_box {
    display: flex;
    height: 210px;
    margin-top: 40px;
    position: relative;
    z-index: -3;
}

.service_box2 {
    display: flex;
    flex-direction: row-reverse;
    height: 210px;
    margin-top: 40px;
    position: relative;
    z-index: -4;
}

/* サービスの棒 */
.service_bar {
    width: 4px;
    height: 100%;
}
.service_bar.sv1 { background-color: #ff6666; }
.service_bar.sv2 { background-color: #4da6ff; }
.service_bar.sv3 { background-color: #aa80ff; }
.service_bar.sv4 { background-color: #66cc88; }
.service_bar.sv5 { background-color: #e69545; }

/* サービステキストのBOX */
.service_text_box {
    width: 446px;
    margin: 10px 30px 0 30px;
}

/* サービスのタイトル */
.service_title {
    font-size: 28px;
    font-weight: bold;
    line-height: 32px;
    color: dimgray;
}

/* サービスのサブタイトル */
.service_sub_title {
    font-family: 'Noto Sans JP';
    font-size: 17px;
    color: lightgray;
}

/* サービスの概要 */
.service_info {
    margin: 12px 0;
    font-size: 13px;
    line-height: 18px;
}

/* サービスのボタン */
.button.service {
    text-decoration: none;
    width: 120px;
    height: 42px;
}

/* サービスのイメージ画像 */
.service_img {
    flex:none;
    width: 450px;
    height: 100%;
    overflow: hidden;
    position: relative;
}
.service_img img {
    width: 100%;
    height: auto;
}

/* 画像トリミング */
/* .img_sv1 {}
.img_sv2 {}
.img_sv4 {}
.img_sv5 {} */

/* ―――――――――――――― Philosophy ―――――――――――――― */

/* アコーディオン本体 */
.accordion {
    width: 600px;
    margin: 0 auto;
}

/* アコーディオンタイトル */
.accordion_title_box {
    display: flex;
    height: 60px;
}

/* アコーディオンタイトル内アイコン */
.accordion_icon {
    width: 50px;
    height: 50px;
    margin: auto 6px auto 40px;
    text-align: center;
}
.accordion_icon.heart     { background: url("../images/philosophy_1.png") no-repeat; background-position: center center; background-size: contain; }
.accordion_icon.leaf      { background: url("../images/philosophy_2.png") no-repeat; background-position: center center; background-size: contain; }
.accordion_icon.customer  { background: url("../images/philosophy_3.png") no-repeat; background-position: center center; background-size: contain; }
.accordion_icon.fire      { background: url("../images/philosophy_4.png") no-repeat; background-position: center center; background-size: contain; }
.accordion_icon.handshake { background: url("../images/philosophy_5.png") no-repeat; background-position: center center; background-size: contain; }
.accordion_icon.fireheart { background: url("../images/philosophy_6.png") no-repeat; background-position: center center; background-size: contain; }

/* アコーディオンタイトル内タイトル */
.accordion_title {
    margin: auto 0 auto 20px;
    height: 22px;
    font-size: 20px;
    font-weight: 600;
    color: gray;
}
.accordion_p {
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    margin: 0 0 30px 116px;
}
.accordion_line {
  border-top: 1px dashed #bbb;
  border-bottom: 1px dashed #fff;
}

/* ―――――――――――――― Profile ―――――――――――――― */

/* プロフィールのボックス（1行ごと） */
.profile_detail_box {
    display: flex;
    margin: 12px 0;
    position: relative;
    z-index: -6;
}

/* プロフィールの標題部分 */
.profile_index {
    width: 140px;
    height: 24px;
    font-size:12px;
    line-height:26px;
    text-align: center;
    background-color: gainsboro;
}

/* プロフィールのテキスト */
.profile_text {
    font-size: 14px;
    margin-left: 40px;
}

/* マップや住所を格納するBOX */
.access_box {
    display: flex;
    margin-top: 70px;
}

/* GoogleMapのBOX */
.access_map_box {
    width: 500px;
    height: 375px;
    display: block;
}

/* map_tokyoの画像サイズ設定 */
.img_tokyo {
    width: 90%;
    height: auto;
    position: relative;
}

/* map_osakaの画像サイズ設定 */
.img_osaka {
    width: 90%;
    height: auto;
    position: relative;
}

/* GoogleMap */
.map {
    width: 100%;
    height: 100%;
    position: relative;  
    z-index: -999;
}

/* 住所のBOX */
.access_info_box {
    width: 350px;
    margin-left: 20px;
}

/* 住所タイトルのBOX */
.access_info_title_box {
    display: flex;
    align-items: center;
    width: 200px;
    height: 40px;
}

/* タイトル横の棒 */
.access_info_title_bar {
    width: 4px;
    height: 100%;
    position: relative;
    z-index: -99;
}
.access_info_title_bar.tokyo { background-color: salmon; }
.access_info_title_bar.osaka { background-color: #59b9c6; }

/* タイトル */
.access_info_title {
    font-size: 20px;
    margin-left: 14px;
    font-weight: bold;
    letter-spacing: 3px;
}

/* 住所など */
.access_address {
    margin-top: 19px;
    
    font-size: 15px;
}

/* GoogleMapボタン（東京） */
.access_button_tokyo {
    border: solid 1px salmon;
    background-color:salmon;
    margin-top:16px;
}
.access_button_tokyo:hover { color:salmon; }

/* GoogleMapボタン（大阪） */
.access_button_osaka {
    border: solid 1px #59b9c6;
    background-color:#59b9c6;
    margin-top:16px;
}
.access_button_osaka:hover { color:#59b9c6; }

/* ―――――――――――――― Contact ―――――――――――――― */

/* Contactのcon_box調整 */
.con_box.contact {
    width: 750px;
}

/* コンタクトの説明文 */
.contact_info {
    padding: 20px;
}

/* お問い合わせボタン */
.button.contact {
    font-size: 17px;
    margin: 0 auto;
    width: 200px;
    height: 48px;
    justify-content: center;
}
